body {
  font-family: 'Space Grotesk', sans-serif;
}
.display-1 {
  font-family: 'Kaisei Tokumin', serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Kaisei Tokumin', serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 2rem;
}
.display-5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #702bee !important;
}
.bg-success {
  background-color: #006b54 !important;
}
.bg-info {
  background-color: #cbb6f2 !important;
}
.bg-warning {
  background-color: #ffcc1a !important;
}
.bg-danger {
  background-color: #dac5b1 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #702bee !important;
  border-color: #702bee !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #702bee !important;
  border-color: #490eb4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #490eb4 !important;
  border-color: #490eb4 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffa4bc !important;
  border-color: #ffa4bc !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ffa4bc !important;
  border-color: #ff4d7c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff4d7c !important;
  border-color: #ff4d7c !important;
}
.btn-info,
.btn-info:active {
  background-color: #cbb6f2 !important;
  border-color: #cbb6f2 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #cbb6f2 !important;
  border-color: #976ce5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #976ce5 !important;
  border-color: #976ce5 !important;
}
.btn-success,
.btn-success:active {
  background-color: #006b54 !important;
  border-color: #006b54 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #006b54 !important;
  border-color: #001410 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #001410 !important;
  border-color: #001410 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffcc1a !important;
  border-color: #ffcc1a !important;
  color: #1a1400 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #ffcc1a !important;
  border-color: #c29700 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #1a1400 !important;
  background-color: #c29700 !important;
  border-color: #c29700 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #dac5b1 !important;
  border-color: #dac5b1 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #dac5b1 !important;
  border-color: #be9976 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #be9976 !important;
  border-color: #be9976 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #fafafa !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #702bee;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #490eb4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #702bee !important;
  border-color: #702bee !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffa4bc;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff4d7c !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffa4bc !important;
  border-color: #ffa4bc !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #cbb6f2;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #976ce5 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #cbb6f2 !important;
  border-color: #cbb6f2 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #006b54;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #001410 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #006b54 !important;
  border-color: #006b54 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffcc1a;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #c29700 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #1a1400 !important;
  background-color: #ffcc1a !important;
  border-color: #ffcc1a !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #dac5b1;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #be9976 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #dac5b1 !important;
  border-color: #dac5b1 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #702bee !important;
}
.text-secondary {
  color: #ffa4bc !important;
}
.text-success {
  color: #006b54 !important;
}
.text-info {
  color: #cbb6f2 !important;
}
.text-warning {
  color: #ffcc1a !important;
}
.text-danger {
  color: #dac5b1 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #430da6 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff3e71 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000504 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #8d5fe3 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #b38b00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #b9926c !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #702bee;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #cbb6f2;
}
.alert-warning {
  background-color: #ffcc1a;
}
.alert-danger {
  background-color: #dac5b1;
}
.mbr-gallery-filter li.active .btn {
  background-color: #702bee;
  border-color: #702bee;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #702bee;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #efe8fd;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #00ebb8;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fff9e6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 2rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #702bee !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 2rem;
}
blockquote {
  border-color: #702bee;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #702bee;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #702bee;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #702bee;
  border-bottom-color: #702bee;
}
.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: #702bee !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffa4bc !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23702bee' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tX6yQ4ZzBo {
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-bottom: 3px solid #000000;
  background-image: url("../../../assets/images/fresno-party-rentals6-1301x1052.jpg");
}
.cid-tX6yQ4ZzBo .card-wrapper {
  padding-left: 32px;
}
@media (max-width: 991px) {
  .cid-tX6yQ4ZzBo .card-wrapper {
    margin-top: 2rem !important;
    padding: 0;
  }
}
.cid-tX6yQ4ZzBo .image-wrapper img {
  border-radius: 75px;
  width: 100%;
  object-fit: cover;
  border: 3px solid;
  border-color: #000000;
}
@media (min-width: 992px) {
  .cid-tX6yQ4ZzBo .image-wrapper img {
    min-height: 840px;
    max-width: 550px;
  }
}
.cid-tX6yQ4ZzBo .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-tX6yQ4ZzBo .mbr-section-btn {
    margin-left: .5rem;
    margin-right: .5rem;
  }
}
@media (min-width: 991px) {
  .cid-tX6yQ4ZzBo .mbr-section-btn {
    margin-right: 1.5rem;
  }
}
.cid-tX6yQ4ZzBo .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tX6yQ4ZzBo .btn:hover,
.cid-tX6yQ4ZzBo .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-tX6yQ4ZzBo .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-tX6yQ4ZzBo .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tX6yQ4ZzBo .btn:hover:before,
.cid-tX6yQ4ZzBo .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-tX6yQ4ZzBo .btn-secondary {
  color: #000000 !important;
}
.cid-tX6yQ4ZzBo .btn-secondary:hover {
  color: #000000 !important;
}
.cid-tX6yQ4ZzBo .card-title,
.cid-tX6yQ4ZzBo .mbr-section-btn {
  color: #ffffff;
}
.cid-tX6yH8j5hQ {
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tX6yH8j5hQ .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-tX6yH8j5hQ .mbr-section-btn {
    margin-left: 0;
    margin-right: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-tX6yH8j5hQ .mbr-section-btn {
    margin-left: .5rem;
    margin-right: .5rem;
  }
}
.cid-tX6yH8j5hQ .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tX6yH8j5hQ .btn:hover,
.cid-tX6yH8j5hQ .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-tX6yH8j5hQ .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-tX6yH8j5hQ .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tX6yH8j5hQ .btn:hover:before,
.cid-tX6yH8j5hQ .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-tX6yH8j5hQ .btn-secondary {
  color: #000000 !important;
}
.cid-tX6yH8j5hQ .btn-secondary:hover {
  color: #000000 !important;
}
.cid-tX6yH8j5hQ .mbr-section-subtitle {
  color: #000000;
}
.cid-um9APtJit0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #becdc2;
  flex-direction: column;
  justify-content: center;
}
.cid-um9APtJit0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9APtJit0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-um9APtJit0 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-um9APtJit0 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-um9APtJit0 .container {
    padding: 0 16px;
  }
}
.cid-um9APtJit0 .google-map iframe {
  border-radius: 0 !important;
  height: 600px;
}
@media (max-width: 992px) {
  .cid-um9APtJit0 .google-map iframe {
    height: 350px;
  }
}
.cid-tXfPG8UwpO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
  background-color: #ffffff;
}
.cid-tXfPG8UwpO .media-wrap {
  padding: 0;
}
.cid-tXfPG8UwpO .media-wrap img {
  background-color: #000000;
  padding: 0;
  border-radius: 50%;
}
.cid-tXfPG8UwpO .media-wrap img:hover {
  background-color: #1B66CE;
}
@media (max-width: 767px) {
  .cid-tXfPG8UwpO .row {
    text-align: center;
  }
  .cid-tXfPG8UwpO .social-row {
    justify-content: center;
  }
  .cid-tXfPG8UwpO .logo {
    margin: 0 auto;
  }
}
.cid-tXfPG8UwpO .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tXfPG8UwpO .content {
    padding: 1px 12px 5px;
  }
}
.cid-tXfPG8UwpO .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tXfPG8UwpO .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tXfPG8UwpO .list {
    margin-bottom: 0rem;
  }
}
.cid-tXfPG8UwpO .list .item-wrap {
  margin-top: 3.9px;
  margin-bottom: 3.9px;
}
@media (min-width: 992px) {
  .cid-tXfPG8UwpO .bd {
    border-left: 3px solid #000;
  }
}
.cid-tXfPG8UwpO .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tXfPG8UwpO .mbr-iconfont {
  color: black;
  transition: all .5s;
}
.cid-tXfPG8UwpO .mbr-iconfont:hover {
  color: #1B66CE;
}
.cid-tXfPG8UwpO .margin {
  margin-top: 80px;
}
@media (max-width: 991px) {
  .cid-tXfPG8UwpO .margin {
    margin-top: 20px;
  }
}
.cid-tXfPG8UwpO .link {
  color: #000000;
}
.cid-tXfPG8UwpO .link a:hover {
  color: #1B66CE !important;
}
.cid-tXfPG8UwpO .mbr-form-container {
  margin-top: 12px;
}
.cid-tXfPG8UwpO .form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  max-width: 600px;
}
.cid-tXfPG8UwpO .link a {
  color: #fcf9f2;
}
.cid-tXfPG8UwpO .dragArea {
  justify-content: center;
}
.cid-tXfPG8UwpO form .row {
  margin: 0;
}
.cid-tXfPG8UwpO form .form-group {
  padding: 0;
  flex-grow: 1;
}
.cid-tXfPG8UwpO form .form-group .form-control,
.cid-tXfPG8UwpO form .form-group textarea {
  height: 40px;
  padding: 0;
  padding-left: 34px;
  padding-right: 34px;
  border-radius: 10px 0 0 10px;
  border: 3px solid #000 !important;
  background: transparent;
  box-shadow: none;
  min-height: auto;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .cid-tXfPG8UwpO form .form-group .form-control,
  .cid-tXfPG8UwpO form .form-group textarea {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-tXfPG8UwpO form .form-group .form-control:active,
.cid-tXfPG8UwpO form .form-group textarea:active,
.cid-tXfPG8UwpO form .form-group .form-control:focus,
.cid-tXfPG8UwpO form .form-group textarea:focus {
  border: 2px solid #1B66CE !important;
  border-right: none !important;
  background: transparent !important;
  box-shadow: none !important;
}
.cid-tXfPG8UwpO form .form-control::placeholder {
  color: #000;
}
.cid-tXfPG8UwpO form .form-control::-webkit-input-placeholder {
  color: #000;
}
.cid-tXfPG8UwpO form .form-control::-moz-placeholder {
  color: #000;
}
.cid-tXfPG8UwpO form .form-control-label,
.cid-tXfPG8UwpO form .form-check-label {
  color: #000;
}
.cid-tXfPG8UwpO form input::-webkit-clear-button {
  display: none;
}
.cid-tXfPG8UwpO form input::-webkit-inner-spin-button {
  display: none;
}
.cid-tXfPG8UwpO form input::-webkit-outer-spin-button {
  display: none;
}
.cid-tXfPG8UwpO form input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tXfPG8UwpO form .mbr-section-btn {
  border: 3px solid #000 !important;
  border-radius: 0 10px 10px 0;
  margin-left: -3px;
  width: auto;
  height: 40px;
  overflow: hidden;
  padding: 0;
  margin-bottom: 1.2rem;
}
.cid-tXfPG8UwpO form .mbr-section-btn .btn {
  color: #01152f !important;
  padding: 3px 30px 0;
}
@media (max-width: 767px) {
  .cid-tXfPG8UwpO form .mbr-section-btn .btn {
    padding: 0 1em;
  }
}
.cid-tXfPG8UwpO form .mbr-section-btn .btn:hover {
  background-color: #FFA4BC !important;
}
.cid-tXfPG8UwpO form .form-group .form-control,
.cid-tXfPG8UwpO .cid-sSq48MmVPJ form .form-group textarea {
  min-height: 40px;
}
.cid-tXfPG8UwpO input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  overflow: hidden;
  height: 7px;
}
.cid-tXfPG8UwpO input[type="range"]::-webkit-slider-runnable-track {
  height: 7px;
  background-color: #ffffff;
}
.cid-tXfPG8UwpO input[type="range"]::-webkit-slider-thumb {
  background: #FFCC1A;
  cursor: pointer;
  width: 15px;
  height: 15px;
  -webkit-appearance: none;
  margin-top: -4px;
  box-shadow: -500px 0 0 500px #1b66ce;
}
.cid-tXfPG8UwpO input[type="range"]::-moz-range-track {
  height: 7px;
  background-color: #ffffff;
}
.cid-tXfPG8UwpO input[type="range"]::-moz-range-thumb {
  background: #1B66CE;
  cursor: pointer;
  height: 7px;
  border-radius: 0px;
  box-shadow: -200px 0px 0px 200px #1b66ce;
  padding: 0px;
  margin: 0px;
}
.cid-tXfPG8UwpO .form-check-input:checked {
  background-color: #1B66CE;
  border-color: #1B66CE;
}
.cid-tXfPG8UwpO .mbr-text {
  color: #000000;
}
.cid-tXfPG8UwpO .mbr-section-title,
.cid-tXfPG8UwpO .mbr-section-btn {
  color: #000000;
}
.cid-tXgLWivyp1 {
  background-color: transparent;
}
.cid-tXgLWivyp1 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tXgLWivyp1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tXgLWivyp1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXgLWivyp1 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tXgLWivyp1 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tXgLWivyp1 .menu_box .navbar.opened,
  .cid-tXgLWivyp1 .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tXgLWivyp1 .navbar-dropdown {
  position: relative !important;
}
.cid-tXgLWivyp1 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tXgLWivyp1 .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tXgLWivyp1 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tXgLWivyp1 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tXgLWivyp1 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tXgLWivyp1 .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #232b45;
  }
  .cid-tXgLWivyp1 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tXgLWivyp1 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tXgLWivyp1 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tXgLWivyp1 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tXgLWivyp1 .offcanvas-body .mbr-text,
  .cid-tXgLWivyp1 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tXgLWivyp1 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tXgLWivyp1 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tXgLWivyp1 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #f2ac2b;
  }
  .cid-tXgLWivyp1 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tXgLWivyp1 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tXgLWivyp1 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tXgLWivyp1 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tXgLWivyp1 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tXgLWivyp1 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tXgLWivyp1 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tXgLWivyp1 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tXgLWivyp1 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tXgLWivyp1 .lg_brand {
    margin: 0 1rem;
  }
  .cid-tXgLWivyp1 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-tXgLWivyp1 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tXgLWivyp1 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tXgLWivyp1 .nav-item {
    margin: 0 !important;
  }
}
.cid-tXgLWivyp1 .nav-item .nav-link {
  transition: all 0.3s ease-out;
}
.cid-tXgLWivyp1 .nav-item .nav-link:hover,
.cid-tXgLWivyp1 .nav-item .nav-link:focus {
  color: #702bee !important;
  text-shadow: 2px 2px 4px #702bee;
}
.cid-tXgLWivyp1 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tXgLWivyp1 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tXgLWivyp1 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tXgLWivyp1 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tXgLWivyp1 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tXgLWivyp1 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tXgLWivyp1 .offcanvas_box {
    display: none;
  }
}
.cid-tXgLWivyp1 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tXgLWivyp1 .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tXgLWivyp1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tXgLWivyp1 .container {
  display: flex;
  margin: auto;
}
.cid-tXgLWivyp1 .iconfont-wrapper {
  color: #f2ac2b;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tXgLWivyp1 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tXgLWivyp1 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tXgLWivyp1 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tXgLWivyp1 .navbar-nav {
    margin: 0;
  }
}
.cid-tXgLWivyp1 .dropdown-menu,
.cid-tXgLWivyp1 .navbar.opened {
  background-color: false !important;
}
.cid-tXgLWivyp1 .nav-item:focus,
.cid-tXgLWivyp1 .nav-link:focus {
  outline: none;
}
.cid-tXgLWivyp1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXgLWivyp1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXgLWivyp1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXgLWivyp1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXgLWivyp1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXgLWivyp1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXgLWivyp1 .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tXgLWivyp1 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tXgLWivyp1 .navbar.opened {
  transition: all 0.3s;
}
.cid-tXgLWivyp1 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tXgLWivyp1 .navbar .navbar-logo img {
  max-width: 54px;
  min-height: 54px;
  object-fit: contain;
  border-radius: 100% !important;
}
.cid-tXgLWivyp1 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tXgLWivyp1 .navbar.collapsed {
  justify-content: center;
}
.cid-tXgLWivyp1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXgLWivyp1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tXgLWivyp1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXgLWivyp1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXgLWivyp1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXgLWivyp1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tXgLWivyp1 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tXgLWivyp1 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tXgLWivyp1 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-tXgLWivyp1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXgLWivyp1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXgLWivyp1 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tXgLWivyp1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXgLWivyp1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tXgLWivyp1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXgLWivyp1 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tXgLWivyp1 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tXgLWivyp1 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tXgLWivyp1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tXgLWivyp1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXgLWivyp1 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tXgLWivyp1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXgLWivyp1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXgLWivyp1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXgLWivyp1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXgLWivyp1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600;
}
.cid-tXgLWivyp1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXgLWivyp1 .dropdown-item.active,
.cid-tXgLWivyp1 .dropdown-item:active {
  background-color: transparent;
}
.cid-tXgLWivyp1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 2px 10px !important;
}
.cid-tXgLWivyp1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXgLWivyp1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXgLWivyp1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXgLWivyp1 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tXgLWivyp1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tXgLWivyp1 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #232b45;
}
.cid-tXgLWivyp1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #f2ac2b;
}
.cid-tXgLWivyp1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXgLWivyp1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXgLWivyp1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXgLWivyp1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXgLWivyp1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXgLWivyp1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXgLWivyp1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXgLWivyp1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXgLWivyp1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tXgLWivyp1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXgLWivyp1 .navbar {
    height: 70px;
  }
  .cid-tXgLWivyp1 .navbar.opened {
    height: auto;
  }
  .cid-tXgLWivyp1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXgLWivyp1 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tXgLWivyp1 .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-tXgLWivyp1 .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tXgLWivyp1 .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tXgLWivyp1 .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 180px;
}
.cid-tXgLWivyp1 .navbar-caption:hover {
  color: #702bee;
}
@media (min-width: 992px) {
  .cid-tXgLWivyp1 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tXgLWivyp1 .text_widget {
  margin-bottom: 32px;
}
.cid-tXgLWivyp1 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tXgLWivyp1 .text_widget a:hover,
.cid-tXgLWivyp1 .text_widget a:focus {
  opacity: .6;
}
.cid-tXgLWivyp1 .mbr-section-subtitle {
  color: #f2ac2b;
  text-align: center;
}
.cid-tXgLWivyp1 .navbar-caption {
  color: #f2ac2b;
}
.cid-tXgLWivyp1 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tXgLWivyp1 .mbr-section-subtitle,
.cid-tXgLWivyp1 .text_widget,
.cid-tXgLWivyp1 .mbr-section-btn {
  text-align: center;
}
.cid-tXgLWivyp1 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tX6zxsZH7n {
  padding-top: 4rem;
  padding-bottom: 5rem;
  border-bottom: 3px solid #000000;
  background-image: url("../../../assets/images/fresno-party-rentals7-1290x830.jpg");
}
.cid-tX6zxsZH7n .card-wrapper {
  padding-left: 32px;
}
@media (max-width: 991px) {
  .cid-tX6zxsZH7n .card-wrapper {
    margin-top: 2rem !important;
    padding: 0;
  }
}
.cid-tX6zxsZH7n .image-wrapper img {
  border-radius: 75px;
  width: 100%;
  object-fit: cover;
  border: 3px solid;
  border-color: #000000;
}
@media (min-width: 992px) {
  .cid-tX6zxsZH7n .image-wrapper img {
    min-height: 840px;
    max-width: 550px;
  }
}
.cid-tX6zxsZH7n .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-tX6zxsZH7n .mbr-section-btn {
    margin-left: .5rem;
    margin-right: .5rem;
  }
}
@media (min-width: 991px) {
  .cid-tX6zxsZH7n .mbr-section-btn {
    margin-right: 1.5rem;
  }
}
.cid-tX6zxsZH7n .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tX6zxsZH7n .btn:hover,
.cid-tX6zxsZH7n .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-tX6zxsZH7n .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-tX6zxsZH7n .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tX6zxsZH7n .btn:hover:before,
.cid-tX6zxsZH7n .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-tX6zxsZH7n .btn-secondary {
  color: #000000 !important;
}
.cid-tX6zxsZH7n .btn-secondary:hover {
  color: #000000 !important;
}
.cid-tX6zxsZH7n .card-title,
.cid-tX6zxsZH7n .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tX6zxtxnk0 {
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tX6zxtxnk0 .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-tX6zxtxnk0 .mbr-section-btn {
    margin-left: 0;
    margin-right: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-tX6zxtxnk0 .mbr-section-btn {
    margin-left: .5rem;
    margin-right: .5rem;
  }
}
.cid-tX6zxtxnk0 .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tX6zxtxnk0 .btn:hover,
.cid-tX6zxtxnk0 .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-tX6zxtxnk0 .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-tX6zxtxnk0 .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tX6zxtxnk0 .btn:hover:before,
.cid-tX6zxtxnk0 .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-tX6zxtxnk0 .btn-secondary {
  color: #000000 !important;
}
.cid-tX6zxtxnk0 .btn-secondary:hover {
  color: #000000 !important;
}
.cid-um9BU2XioO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #becdc2;
  flex-direction: column;
  justify-content: center;
}
.cid-um9BU2XioO .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9BU2XioO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-um9BU2XioO .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-um9BU2XioO .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-um9BU2XioO .container {
    padding: 0 16px;
  }
}
.cid-um9BU2XioO .google-map iframe {
  border-radius: 0 !important;
  height: 600px;
}
@media (max-width: 992px) {
  .cid-um9BU2XioO .google-map iframe {
    height: 350px;
  }
}
.cid-tXfPG8UwpO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
  background-color: #ffffff;
}
.cid-tXfPG8UwpO .media-wrap {
  padding: 0;
}
.cid-tXfPG8UwpO .media-wrap img {
  background-color: #000000;
  padding: 0;
  border-radius: 50%;
}
.cid-tXfPG8UwpO .media-wrap img:hover {
  background-color: #1B66CE;
}
@media (max-width: 767px) {
  .cid-tXfPG8UwpO .row {
    text-align: center;
  }
  .cid-tXfPG8UwpO .social-row {
    justify-content: center;
  }
  .cid-tXfPG8UwpO .logo {
    margin: 0 auto;
  }
}
.cid-tXfPG8UwpO .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tXfPG8UwpO .content {
    padding: 1px 12px 5px;
  }
}
.cid-tXfPG8UwpO .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tXfPG8UwpO .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tXfPG8UwpO .list {
    margin-bottom: 0rem;
  }
}
.cid-tXfPG8UwpO .list .item-wrap {
  margin-top: 3.9px;
  margin-bottom: 3.9px;
}
@media (min-width: 992px) {
  .cid-tXfPG8UwpO .bd {
    border-left: 3px solid #000;
  }
}
.cid-tXfPG8UwpO .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tXfPG8UwpO .mbr-iconfont {
  color: black;
  transition: all .5s;
}
.cid-tXfPG8UwpO .mbr-iconfont:hover {
  color: #1B66CE;
}
.cid-tXfPG8UwpO .margin {
  margin-top: 80px;
}
@media (max-width: 991px) {
  .cid-tXfPG8UwpO .margin {
    margin-top: 20px;
  }
}
.cid-tXfPG8UwpO .link {
  color: #000000;
}
.cid-tXfPG8UwpO .link a:hover {
  color: #1B66CE !important;
}
.cid-tXfPG8UwpO .mbr-form-container {
  margin-top: 12px;
}
.cid-tXfPG8UwpO .form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  max-width: 600px;
}
.cid-tXfPG8UwpO .link a {
  color: #fcf9f2;
}
.cid-tXfPG8UwpO .dragArea {
  justify-content: center;
}
.cid-tXfPG8UwpO form .row {
  margin: 0;
}
.cid-tXfPG8UwpO form .form-group {
  padding: 0;
  flex-grow: 1;
}
.cid-tXfPG8UwpO form .form-group .form-control,
.cid-tXfPG8UwpO form .form-group textarea {
  height: 40px;
  padding: 0;
  padding-left: 34px;
  padding-right: 34px;
  border-radius: 10px 0 0 10px;
  border: 3px solid #000 !important;
  background: transparent;
  box-shadow: none;
  min-height: auto;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .cid-tXfPG8UwpO form .form-group .form-control,
  .cid-tXfPG8UwpO form .form-group textarea {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-tXfPG8UwpO form .form-group .form-control:active,
.cid-tXfPG8UwpO form .form-group textarea:active,
.cid-tXfPG8UwpO form .form-group .form-control:focus,
.cid-tXfPG8UwpO form .form-group textarea:focus {
  border: 2px solid #1B66CE !important;
  border-right: none !important;
  background: transparent !important;
  box-shadow: none !important;
}
.cid-tXfPG8UwpO form .form-control::placeholder {
  color: #000;
}
.cid-tXfPG8UwpO form .form-control::-webkit-input-placeholder {
  color: #000;
}
.cid-tXfPG8UwpO form .form-control::-moz-placeholder {
  color: #000;
}
.cid-tXfPG8UwpO form .form-control-label,
.cid-tXfPG8UwpO form .form-check-label {
  color: #000;
}
.cid-tXfPG8UwpO form input::-webkit-clear-button {
  display: none;
}
.cid-tXfPG8UwpO form input::-webkit-inner-spin-button {
  display: none;
}
.cid-tXfPG8UwpO form input::-webkit-outer-spin-button {
  display: none;
}
.cid-tXfPG8UwpO form input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tXfPG8UwpO form .mbr-section-btn {
  border: 3px solid #000 !important;
  border-radius: 0 10px 10px 0;
  margin-left: -3px;
  width: auto;
  height: 40px;
  overflow: hidden;
  padding: 0;
  margin-bottom: 1.2rem;
}
.cid-tXfPG8UwpO form .mbr-section-btn .btn {
  color: #01152f !important;
  padding: 3px 30px 0;
}
@media (max-width: 767px) {
  .cid-tXfPG8UwpO form .mbr-section-btn .btn {
    padding: 0 1em;
  }
}
.cid-tXfPG8UwpO form .mbr-section-btn .btn:hover {
  background-color: #FFA4BC !important;
}
.cid-tXfPG8UwpO form .form-group .form-control,
.cid-tXfPG8UwpO .cid-sSq48MmVPJ form .form-group textarea {
  min-height: 40px;
}
.cid-tXfPG8UwpO input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  overflow: hidden;
  height: 7px;
}
.cid-tXfPG8UwpO input[type="range"]::-webkit-slider-runnable-track {
  height: 7px;
  background-color: #ffffff;
}
.cid-tXfPG8UwpO input[type="range"]::-webkit-slider-thumb {
  background: #FFCC1A;
  cursor: pointer;
  width: 15px;
  height: 15px;
  -webkit-appearance: none;
  margin-top: -4px;
  box-shadow: -500px 0 0 500px #1b66ce;
}
.cid-tXfPG8UwpO input[type="range"]::-moz-range-track {
  height: 7px;
  background-color: #ffffff;
}
.cid-tXfPG8UwpO input[type="range"]::-moz-range-thumb {
  background: #1B66CE;
  cursor: pointer;
  height: 7px;
  border-radius: 0px;
  box-shadow: -200px 0px 0px 200px #1b66ce;
  padding: 0px;
  margin: 0px;
}
.cid-tXfPG8UwpO .form-check-input:checked {
  background-color: #1B66CE;
  border-color: #1B66CE;
}
.cid-tXfPG8UwpO .mbr-text {
  color: #000000;
}
.cid-tXfPG8UwpO .mbr-section-title,
.cid-tXfPG8UwpO .mbr-section-btn {
  color: #000000;
}
.cid-tXgLWivyp1 {
  background-color: transparent;
}
.cid-tXgLWivyp1 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tXgLWivyp1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tXgLWivyp1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXgLWivyp1 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tXgLWivyp1 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tXgLWivyp1 .menu_box .navbar.opened,
  .cid-tXgLWivyp1 .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tXgLWivyp1 .navbar-dropdown {
  position: relative !important;
}
.cid-tXgLWivyp1 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tXgLWivyp1 .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tXgLWivyp1 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tXgLWivyp1 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tXgLWivyp1 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tXgLWivyp1 .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #232b45;
  }
  .cid-tXgLWivyp1 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tXgLWivyp1 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tXgLWivyp1 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tXgLWivyp1 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tXgLWivyp1 .offcanvas-body .mbr-text,
  .cid-tXgLWivyp1 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tXgLWivyp1 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tXgLWivyp1 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tXgLWivyp1 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #f2ac2b;
  }
  .cid-tXgLWivyp1 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tXgLWivyp1 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tXgLWivyp1 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tXgLWivyp1 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tXgLWivyp1 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tXgLWivyp1 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tXgLWivyp1 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tXgLWivyp1 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tXgLWivyp1 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tXgLWivyp1 .lg_brand {
    margin: 0 1rem;
  }
  .cid-tXgLWivyp1 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-tXgLWivyp1 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tXgLWivyp1 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tXgLWivyp1 .nav-item {
    margin: 0 !important;
  }
}
.cid-tXgLWivyp1 .nav-item .nav-link {
  transition: all 0.3s ease-out;
}
.cid-tXgLWivyp1 .nav-item .nav-link:hover,
.cid-tXgLWivyp1 .nav-item .nav-link:focus {
  color: #702bee !important;
  text-shadow: 2px 2px 4px #702bee;
}
.cid-tXgLWivyp1 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tXgLWivyp1 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tXgLWivyp1 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tXgLWivyp1 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tXgLWivyp1 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tXgLWivyp1 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tXgLWivyp1 .offcanvas_box {
    display: none;
  }
}
.cid-tXgLWivyp1 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tXgLWivyp1 .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tXgLWivyp1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tXgLWivyp1 .container {
  display: flex;
  margin: auto;
}
.cid-tXgLWivyp1 .iconfont-wrapper {
  color: #f2ac2b;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tXgLWivyp1 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tXgLWivyp1 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tXgLWivyp1 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tXgLWivyp1 .navbar-nav {
    margin: 0;
  }
}
.cid-tXgLWivyp1 .dropdown-menu,
.cid-tXgLWivyp1 .navbar.opened {
  background-color: false !important;
}
.cid-tXgLWivyp1 .nav-item:focus,
.cid-tXgLWivyp1 .nav-link:focus {
  outline: none;
}
.cid-tXgLWivyp1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXgLWivyp1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXgLWivyp1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXgLWivyp1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXgLWivyp1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXgLWivyp1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXgLWivyp1 .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tXgLWivyp1 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tXgLWivyp1 .navbar.opened {
  transition: all 0.3s;
}
.cid-tXgLWivyp1 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tXgLWivyp1 .navbar .navbar-logo img {
  max-width: 54px;
  min-height: 54px;
  object-fit: contain;
  border-radius: 100% !important;
}
.cid-tXgLWivyp1 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tXgLWivyp1 .navbar.collapsed {
  justify-content: center;
}
.cid-tXgLWivyp1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXgLWivyp1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tXgLWivyp1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXgLWivyp1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXgLWivyp1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXgLWivyp1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tXgLWivyp1 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tXgLWivyp1 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tXgLWivyp1 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-tXgLWivyp1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXgLWivyp1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXgLWivyp1 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tXgLWivyp1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXgLWivyp1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tXgLWivyp1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXgLWivyp1 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tXgLWivyp1 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tXgLWivyp1 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tXgLWivyp1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tXgLWivyp1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXgLWivyp1 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tXgLWivyp1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXgLWivyp1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXgLWivyp1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXgLWivyp1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXgLWivyp1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600;
}
.cid-tXgLWivyp1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXgLWivyp1 .dropdown-item.active,
.cid-tXgLWivyp1 .dropdown-item:active {
  background-color: transparent;
}
.cid-tXgLWivyp1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 2px 10px !important;
}
.cid-tXgLWivyp1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXgLWivyp1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXgLWivyp1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXgLWivyp1 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tXgLWivyp1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tXgLWivyp1 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #232b45;
}
.cid-tXgLWivyp1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #f2ac2b;
}
.cid-tXgLWivyp1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXgLWivyp1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXgLWivyp1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXgLWivyp1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXgLWivyp1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXgLWivyp1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXgLWivyp1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXgLWivyp1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXgLWivyp1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tXgLWivyp1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXgLWivyp1 .navbar {
    height: 70px;
  }
  .cid-tXgLWivyp1 .navbar.opened {
    height: auto;
  }
  .cid-tXgLWivyp1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXgLWivyp1 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tXgLWivyp1 .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-tXgLWivyp1 .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tXgLWivyp1 .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tXgLWivyp1 .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 180px;
}
.cid-tXgLWivyp1 .navbar-caption:hover {
  color: #702bee;
}
@media (min-width: 992px) {
  .cid-tXgLWivyp1 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tXgLWivyp1 .text_widget {
  margin-bottom: 32px;
}
.cid-tXgLWivyp1 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tXgLWivyp1 .text_widget a:hover,
.cid-tXgLWivyp1 .text_widget a:focus {
  opacity: .6;
}
.cid-tXgLWivyp1 .mbr-section-subtitle {
  color: #f2ac2b;
  text-align: center;
}
.cid-tXgLWivyp1 .navbar-caption {
  color: #f2ac2b;
}
.cid-tXgLWivyp1 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tXgLWivyp1 .mbr-section-subtitle,
.cid-tXgLWivyp1 .text_widget,
.cid-tXgLWivyp1 .mbr-section-btn {
  text-align: center;
}
.cid-tXgLWivyp1 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tXgLWivyp1 {
  background-color: transparent;
}
.cid-tXgLWivyp1 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tXgLWivyp1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tXgLWivyp1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXgLWivyp1 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tXgLWivyp1 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tXgLWivyp1 .menu_box .navbar.opened,
  .cid-tXgLWivyp1 .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tXgLWivyp1 .navbar-dropdown {
  position: relative !important;
}
.cid-tXgLWivyp1 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tXgLWivyp1 .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tXgLWivyp1 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tXgLWivyp1 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tXgLWivyp1 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tXgLWivyp1 .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #232b45;
  }
  .cid-tXgLWivyp1 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tXgLWivyp1 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tXgLWivyp1 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tXgLWivyp1 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tXgLWivyp1 .offcanvas-body .mbr-text,
  .cid-tXgLWivyp1 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tXgLWivyp1 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tXgLWivyp1 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tXgLWivyp1 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #f2ac2b;
  }
  .cid-tXgLWivyp1 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tXgLWivyp1 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tXgLWivyp1 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tXgLWivyp1 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tXgLWivyp1 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tXgLWivyp1 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tXgLWivyp1 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tXgLWivyp1 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tXgLWivyp1 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tXgLWivyp1 .lg_brand {
    margin: 0 1rem;
  }
  .cid-tXgLWivyp1 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-tXgLWivyp1 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tXgLWivyp1 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tXgLWivyp1 .nav-item {
    margin: 0 !important;
  }
}
.cid-tXgLWivyp1 .nav-item .nav-link {
  transition: all 0.3s ease-out;
}
.cid-tXgLWivyp1 .nav-item .nav-link:hover,
.cid-tXgLWivyp1 .nav-item .nav-link:focus {
  color: #702bee !important;
  text-shadow: 2px 2px 4px #702bee;
}
.cid-tXgLWivyp1 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tXgLWivyp1 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tXgLWivyp1 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tXgLWivyp1 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tXgLWivyp1 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tXgLWivyp1 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tXgLWivyp1 .offcanvas_box {
    display: none;
  }
}
.cid-tXgLWivyp1 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tXgLWivyp1 .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tXgLWivyp1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tXgLWivyp1 .container {
  display: flex;
  margin: auto;
}
.cid-tXgLWivyp1 .iconfont-wrapper {
  color: #f2ac2b;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tXgLWivyp1 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tXgLWivyp1 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tXgLWivyp1 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tXgLWivyp1 .navbar-nav {
    margin: 0;
  }
}
.cid-tXgLWivyp1 .dropdown-menu,
.cid-tXgLWivyp1 .navbar.opened {
  background-color: false !important;
}
.cid-tXgLWivyp1 .nav-item:focus,
.cid-tXgLWivyp1 .nav-link:focus {
  outline: none;
}
.cid-tXgLWivyp1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXgLWivyp1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXgLWivyp1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXgLWivyp1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXgLWivyp1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXgLWivyp1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXgLWivyp1 .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tXgLWivyp1 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tXgLWivyp1 .navbar.opened {
  transition: all 0.3s;
}
.cid-tXgLWivyp1 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tXgLWivyp1 .navbar .navbar-logo img {
  max-width: 54px;
  min-height: 54px;
  object-fit: contain;
  border-radius: 100% !important;
}
.cid-tXgLWivyp1 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tXgLWivyp1 .navbar.collapsed {
  justify-content: center;
}
.cid-tXgLWivyp1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXgLWivyp1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tXgLWivyp1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXgLWivyp1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXgLWivyp1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXgLWivyp1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tXgLWivyp1 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tXgLWivyp1 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tXgLWivyp1 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-tXgLWivyp1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXgLWivyp1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXgLWivyp1 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tXgLWivyp1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXgLWivyp1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tXgLWivyp1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXgLWivyp1 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tXgLWivyp1 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tXgLWivyp1 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tXgLWivyp1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tXgLWivyp1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXgLWivyp1 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tXgLWivyp1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXgLWivyp1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXgLWivyp1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXgLWivyp1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXgLWivyp1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600;
}
.cid-tXgLWivyp1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXgLWivyp1 .dropdown-item.active,
.cid-tXgLWivyp1 .dropdown-item:active {
  background-color: transparent;
}
.cid-tXgLWivyp1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 2px 10px !important;
}
.cid-tXgLWivyp1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXgLWivyp1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXgLWivyp1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXgLWivyp1 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tXgLWivyp1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tXgLWivyp1 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #232b45;
}
.cid-tXgLWivyp1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #f2ac2b;
}
.cid-tXgLWivyp1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXgLWivyp1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXgLWivyp1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXgLWivyp1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXgLWivyp1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXgLWivyp1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXgLWivyp1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXgLWivyp1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXgLWivyp1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tXgLWivyp1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXgLWivyp1 .navbar {
    height: 70px;
  }
  .cid-tXgLWivyp1 .navbar.opened {
    height: auto;
  }
  .cid-tXgLWivyp1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXgLWivyp1 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tXgLWivyp1 .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-tXgLWivyp1 .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tXgLWivyp1 .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tXgLWivyp1 .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 180px;
}
.cid-tXgLWivyp1 .navbar-caption:hover {
  color: #702bee;
}
@media (min-width: 992px) {
  .cid-tXgLWivyp1 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tXgLWivyp1 .text_widget {
  margin-bottom: 32px;
}
.cid-tXgLWivyp1 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tXgLWivyp1 .text_widget a:hover,
.cid-tXgLWivyp1 .text_widget a:focus {
  opacity: .6;
}
.cid-tXgLWivyp1 .mbr-section-subtitle {
  color: #f2ac2b;
  text-align: center;
}
.cid-tXgLWivyp1 .navbar-caption {
  color: #f2ac2b;
}
.cid-tXgLWivyp1 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tXgLWivyp1 .mbr-section-subtitle,
.cid-tXgLWivyp1 .text_widget,
.cid-tXgLWivyp1 .mbr-section-btn {
  text-align: center;
}
.cid-tXgLWivyp1 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-t02M7Pvbo7 {
  background-image: url("../../../assets/images/fresno-party-rentals-2000x1500.jpg");
}
.cid-t02M7Pvbo7 .row {
  flex-direction: row-reverse;
}
.cid-t02M7Pvbo7 .card-wrapper {
  padding-left: 32px;
  padding-right: 32px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-t02M7Pvbo7 .card-wrapper {
    margin-top: 2rem !important;
    padding: 0;
  }
}
.cid-t02M7Pvbo7 .wrapper {
  margin-top: 120px;
}
.cid-t02M7Pvbo7 .wrapper .mbr-iconfont {
  font-size: 3rem;
}
@media (min-width: 992px) {
  .cid-t02M7Pvbo7 .wrapper .display-7 {
    font-size: 23px;
  }
}
.cid-t02M7Pvbo7 .wrap {
  min-height: 650px;
  position: relative;
}
.cid-t02M7Pvbo7 .wrap img {
  width: 144px;
  position: absolute;
}
@media (max-width: 991px) {
  .cid-t02M7Pvbo7 .wrap {
    display: none;
  }
}
.cid-t02M7Pvbo7 .wrap:hover .image-1 {
  top: -80px;
  left: -80px;
}
.cid-t02M7Pvbo7 .wrap:hover .image-2 {
  right: 20px;
}
.cid-t02M7Pvbo7 .wrap:hover .image-3 {
  left: 80px;
  top: 190px;
}
.cid-t02M7Pvbo7 .wrap:hover .image-4 {
  top: 260px;
  right: 30px;
}
.cid-t02M7Pvbo7 .wrap:hover .image-5 {
  left: -80px;
}
.cid-t02M7Pvbo7 .wrap:hover .image-6 {
  right: -30px;
}
.cid-t02M7Pvbo7 .wrap:hover .image-7 {
  bottom: 10px;
  left: 70px;
}
.cid-t02M7Pvbo7 .image-1 {
  top: -90px;
  left: -90px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-t02M7Pvbo7 .image-2 {
  right: 0;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-t02M7Pvbo7 .image-3 {
  left: 80px;
  top: 200px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-t02M7Pvbo7 .image-4 {
  top: 250px;
  right: 20px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-t02M7Pvbo7 .image-5 {
  left: -90px;
  bottom: 100px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-t02M7Pvbo7 .image-6 {
  bottom: 0;
  right: -40px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-t02M7Pvbo7 .image-7 {
  bottom: 0;
  left: 80px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-t02M7Pvbo7 .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-t02M7Pvbo7 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tXgNuZbQh6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tXgNuZbQh6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXgNuZbQh6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tXgNuZbQh6 .container {
    padding: 0 15px;
  }
}
.cid-tXgNuZbQh6 .row {
  justify-content: center;
}
.cid-tXgNuZbQh6 .content-wrapper {
  padding: 100px 60px;
  border: 1px solid #373d52;
  position: relative;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tXgNuZbQh6 .content-wrapper {
    padding: 80px 40px;
    display: block;
  }
}
@media (max-width: 768px) {
  .cid-tXgNuZbQh6 .content-wrapper {
    padding: 80px 20px;
  }
}
.cid-tXgNuZbQh6 .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tXgNuZbQh6 .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background-color: #232b45;
  opacity: .5;
  z-index: 1;
  pointer-events: none;
}
.cid-tXgNuZbQh6 .content-wrapper .title-wrapper {
  max-width: 300px;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tXgNuZbQh6 .content-wrapper .title-wrapper {
    max-width: 100%;
  }
}
.cid-tXgNuZbQh6 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tXgNuZbQh6 .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tXgNuZbQh6 .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tXgNuZbQh6 .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-tXgNuZbQh6 .content-wrapper .lists-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 60%;
}
@media (max-width: 992px) {
  .cid-tXgNuZbQh6 .content-wrapper .lists-wrapper {
    width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tXgNuZbQh6 .content-wrapper .lists-wrapper {
    display: block;
  }
}
@media (max-width: 768px) {
  .cid-tXgNuZbQh6 .content-wrapper .lists-wrapper .list-wrap {
    margin-bottom: 20px;
  }
}
.cid-tXgNuZbQh6 .content-wrapper .lists-wrapper .list-wrap .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 36px;
}
.cid-tXgNuZbQh6 .content-wrapper .lists-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-tXgNuZbQh6 .content-wrapper .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tXgNuZbQh6 .content-wrapper .lists-wrapper .list-wrap .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -36px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  color: #171827;
  font-size: 16px;
}
.cid-tXgNuZbQh6 .mbr-section-title {
  color: #ffffff;
}
.cid-tXgNuZbQh6 .mbr-text {
  color: #ffffff;
}
.cid-tXgNuZbQh6 .list {
  color: #ffffff;
}
.cid-tXgNuZbQh6 .mbr-section-title,
.cid-tXgNuZbQh6 .mbr-section-btn {
  text-align: center;
}
.cid-tXgNAwHwXZ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
}
.cid-tXgNAwHwXZ blockquote {
  margin-bottom: 0;
  border-color: #000000;
  background-color: #ffffff;
  font-style: normal;
}
.cid-tXgNAwHwXZ .inform div {
  padding: .3rem .5rem 0;
  border-left: 1px solid;
}
.cid-tXgNAwHwXZ .inform div:first-child {
  border-left: none;
}
.cid-tXgNAwHwXZ .inform .date {
  background-color: #FFA4BC;
  border-radius: 20px;
}
.cid-tXgNAwHwXZ .mbr-section-title {
  text-align: center;
}
.cid-tXgNAwHwXZ .mbr-text {
  text-align: center;
}
.cid-tXgNQO97ZU {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tXgNQO97ZU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXgNQO97ZU .item-wrapper {
  margin-bottom: 2rem;
  padding: 2.5rem 2rem;
  margin-top: 2rem;
  background: #000000;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .cid-tXgNQO97ZU .item-wrapper {
    margin-bottom: 2rem;
    padding: 1rem;
  }
}
.cid-tXgNQO97ZU .item-wrapper:hover {
  background: #232323;
  transform: translateY(-5px);
}
.cid-tXgNQO97ZU .item-wrapper:hover .card-title,
.cid-tXgNQO97ZU .item-wrapper:hover .card-text,
.cid-tXgNQO97ZU .item-wrapper:hover .card-link,
.cid-tXgNQO97ZU .item-wrapper:hover .card-link a {
  color: white !important;
}
.cid-tXgNQO97ZU .item-wrapper:hover span {
  color: #702bee;
}
.cid-tXgNQO97ZU .card-title,
.cid-tXgNQO97ZU .card-text,
.cid-tXgNQO97ZU .card-link,
.cid-tXgNQO97ZU .card-link a {
  transition: all 0.3s;
}
.cid-tXgNQO97ZU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXgNQO97ZU .link-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-tXgNQO97ZU .link-wrapper .link-icon {
  color: currentColor;
  font-size: 1rem;
  padding-left: .5rem;
  padding-bottom: 4px;
  transition: all 0.3s;
}
.cid-tXgNQO97ZU .link-wrapper:hover {
  cursor: pointer;
}
.cid-tXgNQO97ZU .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 5rem;
  color: #232323;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cid-tXgNQO97ZU .iconfont-wrapper .mbr-iconfont {
    font-size: 4rem;
  }
}
.cid-tXgNQO97ZU .card-title,
.cid-tXgNQO97ZU .iconfont-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-tXgNQO97ZU .card-text {
  color: #232323;
}
.cid-tXgNQO97ZU .content-head {
  max-width: 800px;
}
.cid-tXgNQO97ZU .mbr-section-title {
  color: #000000;
}
.cid-tXgNQO97ZU .card-link,
.cid-tXgNQO97ZU .link-icon,
.cid-tXgNQO97ZU .link-align {
  color: #232323;
}
.cid-tX5pItsCZy {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
}
.cid-tX5pItsCZy blockquote {
  margin-bottom: 0;
  border-color: #000000;
  background-color: #ffffff;
  font-style: normal;
}
.cid-tX5pItsCZy .inform div {
  padding: .3rem .5rem 0;
  border-left: 1px solid;
}
.cid-tX5pItsCZy .inform div:first-child {
  border-left: none;
}
.cid-tX5pItsCZy .inform .date {
  background-color: #FFA4BC;
  border-radius: 20px;
}
.cid-tX5pItsCZy .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tX5pItsCZy .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-tX5qbRwjel {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(to bottom, #ffffff, #ffffff);
}
.cid-tX5qbRwjel .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5qbRwjel .card-link {
  position: relative;
  width: fit-content;
}
.cid-tX5qbRwjel .card-link:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-tX5qbRwjel .item-wrapper {
  margin-bottom: 0rem;
  padding: 2.5rem 2rem;
  margin-top: 2rem;
  background: #000000;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .cid-tX5qbRwjel .item-wrapper {
    margin-bottom: 0rem;
    padding: 1rem;
  }
}
.cid-tX5qbRwjel .item-wrapper:hover {
  background: #232323;
  transform: translateY(-5px);
}
.cid-tX5qbRwjel .item-wrapper:hover .card-title,
.cid-tX5qbRwjel .item-wrapper:hover .card-text {
  color: white !important;
}
.cid-tX5qbRwjel .item-wrapper:hover span,
.cid-tX5qbRwjel .item-wrapper:hover .card-link,
.cid-tX5qbRwjel .item-wrapper:hover .card-link a {
  color: #702bee !important;
}
.cid-tX5qbRwjel .item-wrapper:hover .card-link:before {
  width: 0%;
}
.cid-tX5qbRwjel .card-title,
.cid-tX5qbRwjel .card-text,
.cid-tX5qbRwjel .card-link,
.cid-tX5qbRwjel .card-link a {
  transition: all 0.3s;
}
.cid-tX5qbRwjel .link-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-tX5qbRwjel .link-wrapper .link-icon {
  color: currentColor;
  font-size: 1rem;
  padding-left: .5rem;
  padding-bottom: 4px;
  transition: all 0.3s;
}
.cid-tX5qbRwjel .link-wrapper:hover {
  cursor: pointer;
}
.cid-tX5qbRwjel .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 5rem;
  color: #232323;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cid-tX5qbRwjel .iconfont-wrapper .mbr-iconfont {
    font-size: 4rem;
  }
}
.cid-tX5qbRwjel .card-title,
.cid-tX5qbRwjel .iconfont-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-tX5qbRwjel .card-text {
  color: #232323;
}
.cid-tX5qbRwjel .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tX5qbRwjel .card-link,
.cid-tX5qbRwjel .link-icon,
.cid-tX5qbRwjel .link-align {
  color: #232323;
}
.cid-tX5qbRwjel .mbr-section-subtitle {
  text-align: left;
}
.cid-tX5ujrRWeS {
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-bottom: 3px solid #000000;
  background-color: #000000;
}
.cid-tX5ujrRWeS .row {
  flex-direction: row-reverse;
}
.cid-tX5ujrRWeS .card-wrapper {
  padding-left: 32px;
  padding-right: 32px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-tX5ujrRWeS .card-wrapper {
    margin-top: 2rem !important;
    padding: 0;
  }
}
.cid-tX5ujrRWeS .wrapper {
  margin-top: 120px;
}
.cid-tX5ujrRWeS .wrapper .mbr-iconfont {
  font-size: 3rem;
}
@media (min-width: 992px) {
  .cid-tX5ujrRWeS .wrapper .display-7 {
    font-size: 23px;
  }
}
.cid-tX5ujrRWeS .wrap {
  min-height: 650px;
  position: relative;
}
.cid-tX5ujrRWeS .wrap img {
  width: 144px;
  position: absolute;
}
@media (max-width: 991px) {
  .cid-tX5ujrRWeS .wrap {
    display: none;
  }
}
.cid-tX5ujrRWeS .wrap:hover .image-1 {
  top: -80px;
  left: -80px;
}
.cid-tX5ujrRWeS .wrap:hover .image-2 {
  right: 20px;
}
.cid-tX5ujrRWeS .wrap:hover .image-3 {
  left: 80px;
  top: 190px;
}
.cid-tX5ujrRWeS .wrap:hover .image-4 {
  top: 260px;
  right: 30px;
}
.cid-tX5ujrRWeS .wrap:hover .image-5 {
  left: -80px;
}
.cid-tX5ujrRWeS .wrap:hover .image-6 {
  right: -30px;
}
.cid-tX5ujrRWeS .wrap:hover .image-7 {
  bottom: 10px;
  left: 70px;
}
.cid-tX5ujrRWeS .image-1 {
  top: -90px;
  left: -90px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-tX5ujrRWeS .image-2 {
  right: 0;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-tX5ujrRWeS .image-3 {
  left: 80px;
  top: 200px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-tX5ujrRWeS .image-4 {
  top: 250px;
  right: 20px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-tX5ujrRWeS .image-5 {
  left: -90px;
  bottom: 100px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-tX5ujrRWeS .image-6 {
  bottom: 0;
  right: -40px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-tX5ujrRWeS .image-7 {
  bottom: 0;
  left: 80px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-tX5ujrRWeS .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-tX5ujrRWeS .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tXgOPivwxO {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-tXgOPivwxO .container-fluid {
  padding: 0 3rem;
}
.cid-tXgOPivwxO .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tXgOPivwxO .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #702bee, #ffa4bc);
  display: inline-block;
}
.cid-tXgOPivwxO .title-wrap {
  padding-left: 0;
  padding-right: 0;
}
.cid-tXgOPivwxO .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-tXgOPivwxO .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-tXgOPivwxO .image-wrap img:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-tXgOPivwxO .content-section {
  padding: 3rem;
}
.cid-tXgOPivwxO .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-tXgOPivwxO .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #000000;
  padding: 0rem;
  z-index: 10;
  border-radius: 15px;
  margin-bottom: 3rem;
}
@media (max-width: 1200px) {
  .cid-tXgOPivwxO .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tXgOPivwxO .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-tXgOPivwxO .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-tXgOPivwxO .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-tXgOPivwxO .mbr-section-subtitle,
.cid-tXgOPivwxO .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tXgOPivwxO .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tX5rO8dfSz {
  margin-top: -3px;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tX5rO8dfSz .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.cid-tX5rO8dfSz .row {
  border-top: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
}
.cid-tX5rO8dfSz .top-line {
  border-bottom: 3px solid #ffffff;
}
.cid-tX5rO8dfSz .bottom-line {
  padding: 30px 0;
}
.cid-tX5rO8dfSz .card-title {
  text-decoration: underline;
}
.cid-tX5rO8dfSz .title {
  padding: 30px 1rem 40px;
}
.cid-tX5rO8dfSz .title:hover {
  background-color: #FFA4BC;
  color: #ff403d;
}
.cid-tX5rO8dfSz .title1 {
  padding: 30px 1rem 40px;
}
.cid-tX5rO8dfSz .title1:hover {
  background-color: #006b54;
  color: #ffcc1a;
}
.cid-tX5rO8dfSz .title2 {
  padding: 30px 1rem 40px;
}
.cid-tX5rO8dfSz .title2:hover {
  background-color: #cbb6f2;
  color: #1b66ce;
}
@media (max-width: 991px) {
  .cid-tX5rO8dfSz .card {
    margin-bottom: 2rem !important;
  }
  .cid-tX5rO8dfSz .card-title,
  .cid-tX5rO8dfSz .mbr-text {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tX5rO8dfSz .link-wrap {
    align-items: center;
  }
}
@media (min-width: 992px) {
  .cid-tX5rO8dfSz .card-title,
  .cid-tX5rO8dfSz .mbr-text {
    padding: 0 70px 0 70px;
  }
}
.cid-tX5rO8dfSz .image-wrapper img {
  border-radius: 72px;
  width: 100%;
  max-width: 400px;
  max-height: 520px;
  object-fit: cover;
  border: 3px solid;
  border-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tX5rO8dfSz .image-wrapper img {
    max-width: 320px;
    max-height: 425px;
  }
}
.cid-tX5rO8dfSz .img {
  padding-top: 72px;
  padding-bottom: 66px;
}
@media (max-width: 767px) {
  .cid-tX5rO8dfSz .img {
    border-top: 3px solid #ffffff;
  }
}
@media (min-width: 768px) {
  .cid-tX5rO8dfSz .img {
    border-left: 3px solid #ffffff;
  }
}
.cid-tX5rO8dfSz .mbr-section-btn {
  margin-top: 65px;
  position: relative;
}
@media (max-width: 991px) {
  .cid-tX5rO8dfSz .mbr-section-btn {
    margin-left: 0;
    margin-right: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-tX5rO8dfSz .mbr-section-btn {
    margin-left: 0;
    margin-right: 0;
  }
}
.cid-tX5rO8dfSz .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tX5rO8dfSz .btn:hover,
.cid-tX5rO8dfSz .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-tX5rO8dfSz .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-tX5rO8dfSz .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tX5rO8dfSz .btn:hover:before,
.cid-tX5rO8dfSz .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-tX5rO8dfSz .btn-secondary {
  color: #000000 !important;
}
.cid-tX5rO8dfSz .btn-secondary:hover {
  color: #000000 !important;
}
.cid-tX5rO8dfSz .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tX5rO8dfSz .card-title,
.cid-tX5rO8dfSz .card-box {
  text-align: center;
}
.cid-tX5rO8dfSz .mbr-text,
.cid-tX5rO8dfSz .link-wrap,
.cid-tX5rO8dfSz .mbr-section-btn {
  text-align: center;
}
.cid-tX5rO8dfSz .mbr-text,
.cid-tX5rO8dfSz .link-wrap {
  color: #ffffff;
}
.cid-tX5q0czRdk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tX5q0czRdk .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-tX5q0czRdk .mbr-section-btn {
    margin-left: 0;
    margin-right: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-tX5q0czRdk .mbr-section-btn {
    margin-left: .5rem;
    margin-right: .5rem;
  }
}
.cid-tX5q0czRdk .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tX5q0czRdk .btn:hover,
.cid-tX5q0czRdk .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-tX5q0czRdk .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-tX5q0czRdk .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tX5q0czRdk .btn:hover:before,
.cid-tX5q0czRdk .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-tX5q0czRdk .btn-secondary {
  color: #000000 !important;
}
.cid-tX5q0czRdk .btn-secondary:hover {
  color: #000000 !important;
}
.cid-tX5q0czRdk .mbr-section-title,
.cid-tX5q0czRdk .mbr-section-btn {
  color: #000000;
}
.cid-tX5q0czRdk .mbr-section-subtitle {
  color: #000000;
}
.cid-um9qyPJ4C5 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-um9qyPJ4C5 .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-um9qyPJ4C5 .mbr-section-btn {
    margin-left: 0;
    margin-right: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-um9qyPJ4C5 .mbr-section-btn {
    margin-left: .5rem;
    margin-right: .5rem;
  }
}
.cid-um9qyPJ4C5 .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-um9qyPJ4C5 .btn:hover,
.cid-um9qyPJ4C5 .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-um9qyPJ4C5 .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-um9qyPJ4C5 .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-um9qyPJ4C5 .btn:hover:before,
.cid-um9qyPJ4C5 .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-um9qyPJ4C5 .btn-secondary {
  color: #000000 !important;
}
.cid-um9qyPJ4C5 .btn-secondary:hover {
  color: #000000 !important;
}
.cid-um9qyPJ4C5 .mbr-section-title,
.cid-um9qyPJ4C5 .mbr-section-btn {
  color: #ffffff;
}
.cid-um9pXousbN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-um9pXousbN .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9pXousbN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-um9pXousbN .container {
    padding: 0 15px;
  }
}
.cid-um9pXousbN .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-um9pXousbN .panel-group {
    padding-left: 0;
    margin-bottom: 60px;
  }
}
.cid-um9pXousbN .panel-group .card {
  border-radius: 0 !important;
  padding: 0;
  margin-top: 40px;
}
.cid-um9pXousbN .panel-group .card:first-child {
  margin-top: 0;
}
.cid-um9pXousbN .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0 0 20px 0;
}
.cid-um9pXousbN .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-um9pXousbN .panel-group .card .card-header .panel-title .panel-title-edit {
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  position: relative;
}
.cid-um9pXousbN .panel-group .card .card-header .panel-title .panel-title-edit::before {
  content: '/';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 30px;
  color: #ec111a;
  font-weight: 700;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.cid-um9pXousbN .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  width: 10px;
  height: 10px;
  min-width: 10px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-left: 20px;
  transform: rotate(90deg);
  opacity: .5;
}
.cid-um9pXousbN .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(270deg);
}
.cid-um9pXousbN .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #ec111a;
}
.cid-um9pXousbN .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit::before {
  left: -30px;
  opacity: 1;
}
.cid-um9pXousbN .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 20px;
  border-bottom: 1px solid #ffffff;
}
.cid-um9pXousbN .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 25px;
}
.cid-um9pXousbN .panel-group .card .panel-collapse .panel-body .panel-desc {
  margin-bottom: 0;
}
.cid-um9pXousbN .image-wrapper {
  position: relative;
  padding: 0 0 0 30px;
}
@media (max-width: 992px) {
  .cid-um9pXousbN .image-wrapper {
    padding: 0;
    margin-bottom: 60px;
  }
}
.cid-um9pXousbN .image-wrapper .decor-wrap {
  position: absolute;
  top: -5%;
  left: 5%;
  height: 230px;
  width: 312px;
  background-color: #ec111a;
  transform: skewX(-20deg);
}
.cid-um9pXousbN .image-wrapper img {
  position: relative;
  z-index: 1;
  height: 730px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-um9pXousbN .image-wrapper img {
    height: 350px;
  }
}
.cid-um9pXousbN .panel-title-edit {
  color: #ffffff;
}
.cid-um9pXousbN .panel-text {
  color: #ffffff;
}
.cid-um9pXousbN .panel-desc {
  color: #ec111a;
}
.cid-tXgR4ue5gh {
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tXgR4ue5gh .wrapper {
  min-height: 385px;
  position: relative;
  background-color: #000000;
  border: 3px solid #000000;
}
@media (max-width: 991px) {
  .cid-tXgR4ue5gh .wrapper {
    padding: 5rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tXgR4ue5gh .wrapper {
    padding: 84px 110px 90px;
  }
}
.cid-tXgR4ue5gh .wrapper .info {
  position: absolute;
  border-radius: 20px;
  background-color: #000000;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  font-size: 1.7em;
  font-family: "Josefin Sans";
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.cid-tXgR4ue5gh .image-wrapper {
  position: relative;
  border-radius: 50%;
  justify-content: end;
}
@media (max-width: 991px) {
  .cid-tXgR4ue5gh .image-wrapper {
    justify-content: center;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tXgR4ue5gh .image-wrapper {
    justify-content: end;
  }
}
.cid-tXgR4ue5gh .image-wrapper img {
  object-fit: cover;
  max-width: 630px;
  max-height: 640;
  border-radius: 50%;
  border: 4px solid #000000;
  z-index: 3;
  transition: all 300ms ease;
  will-change: transform;
}
@media (max-width: 991px) {
  .cid-tXgR4ue5gh .image-wrapper img {
    max-width: 370px;
    max-height: 370px;
  }
}
.cid-tXgR4ue5gh .image-wrapper .hover {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: -20px;
  width: 100%;
  max-width: 630px;
  height: 100%;
  will-change: transform;
  border: 4px solid #000000 !important;
  border-radius: 50% !important;
  transition: all 300ms ease;
}
@media (max-width: 992px) {
  .cid-tXgR4ue5gh .image-wrapper .hover {
    max-width: 370px;
    left: 110px;
  }
}
@media (max-width: 767px) {
  .cid-tXgR4ue5gh .image-wrapper .hover {
    left: -10px;
    top: 10px;
  }
}
.cid-tXgR4ue5gh .image-wrapper:hover img,
.cid-tXgR4ue5gh .image-wrapper:focus img {
  transform: translate(-5px, 10px);
}
@media (max-width: 767px) {
  .cid-tXgR4ue5gh .image-wrapper:hover img,
  .cid-tXgR4ue5gh .image-wrapper:focus img {
    transform: translate(-2px, 10px);
  }
}
.cid-tXgR4ue5gh .image-wrapper:hover .hover,
.cid-tXgR4ue5gh .image-wrapper:focus .hover {
  left: -15px;
  top: 15px;
}
@media (max-width: 992px) {
  .cid-tXgR4ue5gh .image-wrapper:hover .hover,
  .cid-tXgR4ue5gh .image-wrapper:focus .hover {
    left: 120px;
  }
}
@media (max-width: 767px) {
  .cid-tXgR4ue5gh .image-wrapper:hover .hover,
  .cid-tXgR4ue5gh .image-wrapper:focus .hover {
    left: -7px;
  }
}
.cid-tXgR4ue5gh .hover0 {
  background-color: #1B66CE;
}
.cid-tXgR4ue5gh .hover1 {
  background-color: #CBB6F2;
}
.cid-tXgR4ue5gh .hover2 {
  background-color: #FFA4BC;
}
@media (min-width: 992px) {
  .cid-tXgR4ue5gh .text-wrapper img {
    margin: 0 auto;
  }
}
.cid-tXgR4ue5gh .mbr-title,
.cid-tXgR4ue5gh .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tXgR4ue5gh .mbr-title,
  .cid-tXgR4ue5gh .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tXgR4ue5gh .mbr-text {
    text-align: center;
  }
}
.cid-tXgR4ue5gh .mbr-info {
  text-align: right;
}
.cid-tX5xcA2myF {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
}
.cid-tX5xcA2myF blockquote {
  margin-bottom: 0;
  border-color: #000000;
  background-color: #ffffff;
  font-style: normal;
}
.cid-tX5xcA2myF .inform div {
  padding: .3rem .5rem 0;
  border-left: 1px solid;
}
.cid-tX5xcA2myF .inform div:first-child {
  border-left: none;
}
.cid-tX5xcA2myF .inform .date {
  background-color: #FFA4BC;
  border-radius: 20px;
}
.cid-tX5xcA2myF .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tX5xcA2myF .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-um9rWk06lo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #becdc2;
  flex-direction: column;
  justify-content: center;
}
.cid-um9rWk06lo .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9rWk06lo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-um9rWk06lo .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-um9rWk06lo .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-um9rWk06lo .container {
    padding: 0 16px;
  }
}
.cid-um9rWk06lo .google-map iframe {
  border-radius: 0 !important;
  height: 600px;
}
@media (max-width: 992px) {
  .cid-um9rWk06lo .google-map iframe {
    height: 350px;
  }
}
.cid-tXfPG8UwpO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
  background-color: #ffffff;
}
.cid-tXfPG8UwpO .media-wrap {
  padding: 0;
}
.cid-tXfPG8UwpO .media-wrap img {
  background-color: #000000;
  padding: 0;
  border-radius: 50%;
}
.cid-tXfPG8UwpO .media-wrap img:hover {
  background-color: #1B66CE;
}
@media (max-width: 767px) {
  .cid-tXfPG8UwpO .row {
    text-align: center;
  }
  .cid-tXfPG8UwpO .social-row {
    justify-content: center;
  }
  .cid-tXfPG8UwpO .logo {
    margin: 0 auto;
  }
}
.cid-tXfPG8UwpO .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tXfPG8UwpO .content {
    padding: 1px 12px 5px;
  }
}
.cid-tXfPG8UwpO .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tXfPG8UwpO .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tXfPG8UwpO .list {
    margin-bottom: 0rem;
  }
}
.cid-tXfPG8UwpO .list .item-wrap {
  margin-top: 3.9px;
  margin-bottom: 3.9px;
}
@media (min-width: 992px) {
  .cid-tXfPG8UwpO .bd {
    border-left: 3px solid #000;
  }
}
.cid-tXfPG8UwpO .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tXfPG8UwpO .mbr-iconfont {
  color: black;
  transition: all .5s;
}
.cid-tXfPG8UwpO .mbr-iconfont:hover {
  color: #1B66CE;
}
.cid-tXfPG8UwpO .margin {
  margin-top: 80px;
}
@media (max-width: 991px) {
  .cid-tXfPG8UwpO .margin {
    margin-top: 20px;
  }
}
.cid-tXfPG8UwpO .link {
  color: #000000;
}
.cid-tXfPG8UwpO .link a:hover {
  color: #1B66CE !important;
}
.cid-tXfPG8UwpO .mbr-form-container {
  margin-top: 12px;
}
.cid-tXfPG8UwpO .form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  max-width: 600px;
}
.cid-tXfPG8UwpO .link a {
  color: #fcf9f2;
}
.cid-tXfPG8UwpO .dragArea {
  justify-content: center;
}
.cid-tXfPG8UwpO form .row {
  margin: 0;
}
.cid-tXfPG8UwpO form .form-group {
  padding: 0;
  flex-grow: 1;
}
.cid-tXfPG8UwpO form .form-group .form-control,
.cid-tXfPG8UwpO form .form-group textarea {
  height: 40px;
  padding: 0;
  padding-left: 34px;
  padding-right: 34px;
  border-radius: 10px 0 0 10px;
  border: 3px solid #000 !important;
  background: transparent;
  box-shadow: none;
  min-height: auto;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .cid-tXfPG8UwpO form .form-group .form-control,
  .cid-tXfPG8UwpO form .form-group textarea {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-tXfPG8UwpO form .form-group .form-control:active,
.cid-tXfPG8UwpO form .form-group textarea:active,
.cid-tXfPG8UwpO form .form-group .form-control:focus,
.cid-tXfPG8UwpO form .form-group textarea:focus {
  border: 2px solid #1B66CE !important;
  border-right: none !important;
  background: transparent !important;
  box-shadow: none !important;
}
.cid-tXfPG8UwpO form .form-control::placeholder {
  color: #000;
}
.cid-tXfPG8UwpO form .form-control::-webkit-input-placeholder {
  color: #000;
}
.cid-tXfPG8UwpO form .form-control::-moz-placeholder {
  color: #000;
}
.cid-tXfPG8UwpO form .form-control-label,
.cid-tXfPG8UwpO form .form-check-label {
  color: #000;
}
.cid-tXfPG8UwpO form input::-webkit-clear-button {
  display: none;
}
.cid-tXfPG8UwpO form input::-webkit-inner-spin-button {
  display: none;
}
.cid-tXfPG8UwpO form input::-webkit-outer-spin-button {
  display: none;
}
.cid-tXfPG8UwpO form input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tXfPG8UwpO form .mbr-section-btn {
  border: 3px solid #000 !important;
  border-radius: 0 10px 10px 0;
  margin-left: -3px;
  width: auto;
  height: 40px;
  overflow: hidden;
  padding: 0;
  margin-bottom: 1.2rem;
}
.cid-tXfPG8UwpO form .mbr-section-btn .btn {
  color: #01152f !important;
  padding: 3px 30px 0;
}
@media (max-width: 767px) {
  .cid-tXfPG8UwpO form .mbr-section-btn .btn {
    padding: 0 1em;
  }
}
.cid-tXfPG8UwpO form .mbr-section-btn .btn:hover {
  background-color: #FFA4BC !important;
}
.cid-tXfPG8UwpO form .form-group .form-control,
.cid-tXfPG8UwpO .cid-sSq48MmVPJ form .form-group textarea {
  min-height: 40px;
}
.cid-tXfPG8UwpO input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  overflow: hidden;
  height: 7px;
}
.cid-tXfPG8UwpO input[type="range"]::-webkit-slider-runnable-track {
  height: 7px;
  background-color: #ffffff;
}
.cid-tXfPG8UwpO input[type="range"]::-webkit-slider-thumb {
  background: #FFCC1A;
  cursor: pointer;
  width: 15px;
  height: 15px;
  -webkit-appearance: none;
  margin-top: -4px;
  box-shadow: -500px 0 0 500px #1b66ce;
}
.cid-tXfPG8UwpO input[type="range"]::-moz-range-track {
  height: 7px;
  background-color: #ffffff;
}
.cid-tXfPG8UwpO input[type="range"]::-moz-range-thumb {
  background: #1B66CE;
  cursor: pointer;
  height: 7px;
  border-radius: 0px;
  box-shadow: -200px 0px 0px 200px #1b66ce;
  padding: 0px;
  margin: 0px;
}
.cid-tXfPG8UwpO .form-check-input:checked {
  background-color: #1B66CE;
  border-color: #1B66CE;
}
.cid-tXfPG8UwpO .mbr-text {
  color: #000000;
}
.cid-tXfPG8UwpO .mbr-section-title,
.cid-tXfPG8UwpO .mbr-section-btn {
  color: #000000;
}
.cid-um9CxSpUy3 {
  background-color: transparent;
}
.cid-um9CxSpUy3 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-um9CxSpUy3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-um9CxSpUy3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-um9CxSpUy3 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-um9CxSpUy3 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-um9CxSpUy3 .menu_box .navbar.opened,
  .cid-um9CxSpUy3 .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-um9CxSpUy3 .navbar-dropdown {
  position: relative !important;
}
.cid-um9CxSpUy3 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-um9CxSpUy3 .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-um9CxSpUy3 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-um9CxSpUy3 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-um9CxSpUy3 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-um9CxSpUy3 .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #232b45;
  }
  .cid-um9CxSpUy3 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-um9CxSpUy3 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-um9CxSpUy3 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-um9CxSpUy3 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-um9CxSpUy3 .offcanvas-body .mbr-text,
  .cid-um9CxSpUy3 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-um9CxSpUy3 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-um9CxSpUy3 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-um9CxSpUy3 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #f2ac2b;
  }
  .cid-um9CxSpUy3 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-um9CxSpUy3 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-um9CxSpUy3 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-um9CxSpUy3 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-um9CxSpUy3 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-um9CxSpUy3 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-um9CxSpUy3 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-um9CxSpUy3 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-um9CxSpUy3 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-um9CxSpUy3 .lg_brand {
    margin: 0 1rem;
  }
  .cid-um9CxSpUy3 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-um9CxSpUy3 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-um9CxSpUy3 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-um9CxSpUy3 .nav-item {
    margin: 0 !important;
  }
}
.cid-um9CxSpUy3 .nav-item .nav-link {
  transition: all 0.3s ease-out;
}
.cid-um9CxSpUy3 .nav-item .nav-link:hover,
.cid-um9CxSpUy3 .nav-item .nav-link:focus {
  color: #702bee !important;
  text-shadow: 2px 2px 4px #702bee;
}
.cid-um9CxSpUy3 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-um9CxSpUy3 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-um9CxSpUy3 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-um9CxSpUy3 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-um9CxSpUy3 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-um9CxSpUy3 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-um9CxSpUy3 .offcanvas_box {
    display: none;
  }
}
.cid-um9CxSpUy3 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-um9CxSpUy3 .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-um9CxSpUy3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-um9CxSpUy3 .container {
  display: flex;
  margin: auto;
}
.cid-um9CxSpUy3 .iconfont-wrapper {
  color: #f2ac2b;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-um9CxSpUy3 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-um9CxSpUy3 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-um9CxSpUy3 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-um9CxSpUy3 .navbar-nav {
    margin: 0;
  }
}
.cid-um9CxSpUy3 .dropdown-menu,
.cid-um9CxSpUy3 .navbar.opened {
  background-color: false !important;
}
.cid-um9CxSpUy3 .nav-item:focus,
.cid-um9CxSpUy3 .nav-link:focus {
  outline: none;
}
.cid-um9CxSpUy3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-um9CxSpUy3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-um9CxSpUy3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-um9CxSpUy3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-um9CxSpUy3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-um9CxSpUy3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-um9CxSpUy3 .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-um9CxSpUy3 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-um9CxSpUy3 .navbar.opened {
  transition: all 0.3s;
}
.cid-um9CxSpUy3 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-um9CxSpUy3 .navbar .navbar-logo img {
  max-width: 54px;
  min-height: 54px;
  object-fit: contain;
  border-radius: 100% !important;
}
.cid-um9CxSpUy3 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-um9CxSpUy3 .navbar.collapsed {
  justify-content: center;
}
.cid-um9CxSpUy3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-um9CxSpUy3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-um9CxSpUy3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-um9CxSpUy3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-um9CxSpUy3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-um9CxSpUy3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-um9CxSpUy3 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-um9CxSpUy3 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-um9CxSpUy3 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-um9CxSpUy3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-um9CxSpUy3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-um9CxSpUy3 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-um9CxSpUy3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-um9CxSpUy3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-um9CxSpUy3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-um9CxSpUy3 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-um9CxSpUy3 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-um9CxSpUy3 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-um9CxSpUy3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-um9CxSpUy3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-um9CxSpUy3 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-um9CxSpUy3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-um9CxSpUy3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-um9CxSpUy3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-um9CxSpUy3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-um9CxSpUy3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600;
}
.cid-um9CxSpUy3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-um9CxSpUy3 .dropdown-item.active,
.cid-um9CxSpUy3 .dropdown-item:active {
  background-color: transparent;
}
.cid-um9CxSpUy3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 2px 10px !important;
}
.cid-um9CxSpUy3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-um9CxSpUy3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-um9CxSpUy3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-um9CxSpUy3 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-um9CxSpUy3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-um9CxSpUy3 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #232b45;
}
.cid-um9CxSpUy3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #f2ac2b;
}
.cid-um9CxSpUy3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-um9CxSpUy3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-um9CxSpUy3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-um9CxSpUy3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-um9CxSpUy3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-um9CxSpUy3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-um9CxSpUy3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-um9CxSpUy3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-um9CxSpUy3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-um9CxSpUy3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-um9CxSpUy3 .navbar {
    height: 70px;
  }
  .cid-um9CxSpUy3 .navbar.opened {
    height: auto;
  }
  .cid-um9CxSpUy3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-um9CxSpUy3 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-um9CxSpUy3 .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-um9CxSpUy3 .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-um9CxSpUy3 .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-um9CxSpUy3 .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 180px;
}
.cid-um9CxSpUy3 .navbar-caption:hover {
  color: #702bee;
}
@media (min-width: 992px) {
  .cid-um9CxSpUy3 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-um9CxSpUy3 .text_widget {
  margin-bottom: 32px;
}
.cid-um9CxSpUy3 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-um9CxSpUy3 .text_widget a:hover,
.cid-um9CxSpUy3 .text_widget a:focus {
  opacity: .6;
}
.cid-um9CxSpUy3 .mbr-section-subtitle {
  color: #f2ac2b;
  text-align: center;
}
.cid-um9CxSpUy3 .navbar-caption {
  color: #f2ac2b;
}
.cid-um9CxSpUy3 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-um9CxSpUy3 .mbr-section-subtitle,
.cid-um9CxSpUy3 .text_widget,
.cid-um9CxSpUy3 .mbr-section-btn {
  text-align: center;
}
.cid-um9CxSpUy3 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-um9CxTGjoW {
  background-image: url("../../../assets/images/fresno-party-rentals9-1098x743.jpg");
}
.cid-um9CxTGjoW .row {
  flex-direction: row-reverse;
}
.cid-um9CxTGjoW .card-wrapper {
  padding-left: 32px;
  padding-right: 32px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-um9CxTGjoW .card-wrapper {
    margin-top: 2rem !important;
    padding: 0;
  }
}
.cid-um9CxTGjoW .wrapper {
  margin-top: 120px;
}
.cid-um9CxTGjoW .wrapper .mbr-iconfont {
  font-size: 3rem;
}
@media (min-width: 992px) {
  .cid-um9CxTGjoW .wrapper .display-7 {
    font-size: 23px;
  }
}
.cid-um9CxTGjoW .wrap {
  min-height: 650px;
  position: relative;
}
.cid-um9CxTGjoW .wrap img {
  width: 144px;
  position: absolute;
}
@media (max-width: 991px) {
  .cid-um9CxTGjoW .wrap {
    display: none;
  }
}
.cid-um9CxTGjoW .wrap:hover .image-1 {
  top: -80px;
  left: -80px;
}
.cid-um9CxTGjoW .wrap:hover .image-2 {
  right: 20px;
}
.cid-um9CxTGjoW .wrap:hover .image-3 {
  left: 80px;
  top: 190px;
}
.cid-um9CxTGjoW .wrap:hover .image-4 {
  top: 260px;
  right: 30px;
}
.cid-um9CxTGjoW .wrap:hover .image-5 {
  left: -80px;
}
.cid-um9CxTGjoW .wrap:hover .image-6 {
  right: -30px;
}
.cid-um9CxTGjoW .wrap:hover .image-7 {
  bottom: 10px;
  left: 70px;
}
.cid-um9CxTGjoW .image-1 {
  top: -90px;
  left: -90px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9CxTGjoW .image-2 {
  right: 0;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9CxTGjoW .image-3 {
  left: 80px;
  top: 200px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9CxTGjoW .image-4 {
  top: 250px;
  right: 20px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9CxTGjoW .image-5 {
  left: -90px;
  bottom: 100px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9CxTGjoW .image-6 {
  bottom: 0;
  right: -40px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9CxTGjoW .image-7 {
  bottom: 0;
  left: 80px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9CxTGjoW .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-um9CxTGjoW .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-um9CxUGBnR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-um9CxUGBnR .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9CxUGBnR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-um9CxUGBnR .container {
    padding: 0 15px;
  }
}
.cid-um9CxUGBnR .row {
  justify-content: center;
}
.cid-um9CxUGBnR .content-wrapper {
  padding: 100px 60px;
  border: 1px solid #373d52;
  position: relative;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-um9CxUGBnR .content-wrapper {
    padding: 80px 40px;
    display: block;
  }
}
@media (max-width: 768px) {
  .cid-um9CxUGBnR .content-wrapper {
    padding: 80px 20px;
  }
}
.cid-um9CxUGBnR .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-um9CxUGBnR .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background-color: #232b45;
  opacity: .5;
  z-index: 1;
  pointer-events: none;
}
.cid-um9CxUGBnR .content-wrapper .title-wrapper {
  max-width: 300px;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-um9CxUGBnR .content-wrapper .title-wrapper {
    max-width: 100%;
  }
}
.cid-um9CxUGBnR .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-um9CxUGBnR .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-um9CxUGBnR .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-um9CxUGBnR .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-um9CxUGBnR .content-wrapper .lists-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 60%;
}
@media (max-width: 992px) {
  .cid-um9CxUGBnR .content-wrapper .lists-wrapper {
    width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .cid-um9CxUGBnR .content-wrapper .lists-wrapper {
    display: block;
  }
}
@media (max-width: 768px) {
  .cid-um9CxUGBnR .content-wrapper .lists-wrapper .list-wrap {
    margin-bottom: 20px;
  }
}
.cid-um9CxUGBnR .content-wrapper .lists-wrapper .list-wrap .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 36px;
}
.cid-um9CxUGBnR .content-wrapper .lists-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-um9CxUGBnR .content-wrapper .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-um9CxUGBnR .content-wrapper .lists-wrapper .list-wrap .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -36px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  color: #171827;
  font-size: 16px;
}
.cid-um9CxUGBnR .mbr-section-title {
  color: #ffffff;
}
.cid-um9CxUGBnR .mbr-text {
  color: #ffffff;
}
.cid-um9CxUGBnR .list {
  color: #ffffff;
}
.cid-um9CxUGBnR .mbr-section-title,
.cid-um9CxUGBnR .mbr-section-btn {
  text-align: center;
}
.cid-um9CxV6LTC {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
}
.cid-um9CxV6LTC blockquote {
  margin-bottom: 0;
  border-color: #000000;
  background-color: #ffffff;
  font-style: normal;
}
.cid-um9CxV6LTC .inform div {
  padding: .3rem .5rem 0;
  border-left: 1px solid;
}
.cid-um9CxV6LTC .inform div:first-child {
  border-left: none;
}
.cid-um9CxV6LTC .inform .date {
  background-color: #FFA4BC;
  border-radius: 20px;
}
.cid-um9CxV6LTC .mbr-section-title {
  text-align: center;
}
.cid-um9CxV6LTC .mbr-text {
  text-align: center;
}
.cid-um9CxVBXuQ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-um9CxVBXuQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9CxVBXuQ .item-wrapper {
  margin-bottom: 2rem;
  padding: 2.5rem 2rem;
  margin-top: 2rem;
  background: #000000;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .cid-um9CxVBXuQ .item-wrapper {
    margin-bottom: 2rem;
    padding: 1rem;
  }
}
.cid-um9CxVBXuQ .item-wrapper:hover {
  background: #232323;
  transform: translateY(-5px);
}
.cid-um9CxVBXuQ .item-wrapper:hover .card-title,
.cid-um9CxVBXuQ .item-wrapper:hover .card-text,
.cid-um9CxVBXuQ .item-wrapper:hover .card-link,
.cid-um9CxVBXuQ .item-wrapper:hover .card-link a {
  color: white !important;
}
.cid-um9CxVBXuQ .item-wrapper:hover span {
  color: #702bee;
}
.cid-um9CxVBXuQ .card-title,
.cid-um9CxVBXuQ .card-text,
.cid-um9CxVBXuQ .card-link,
.cid-um9CxVBXuQ .card-link a {
  transition: all 0.3s;
}
.cid-um9CxVBXuQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-um9CxVBXuQ .link-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-um9CxVBXuQ .link-wrapper .link-icon {
  color: currentColor;
  font-size: 1rem;
  padding-left: .5rem;
  padding-bottom: 4px;
  transition: all 0.3s;
}
.cid-um9CxVBXuQ .link-wrapper:hover {
  cursor: pointer;
}
.cid-um9CxVBXuQ .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 5rem;
  color: #232323;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cid-um9CxVBXuQ .iconfont-wrapper .mbr-iconfont {
    font-size: 4rem;
  }
}
.cid-um9CxVBXuQ .card-title,
.cid-um9CxVBXuQ .iconfont-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-um9CxVBXuQ .card-text {
  color: #232323;
}
.cid-um9CxVBXuQ .content-head {
  max-width: 800px;
}
.cid-um9CxVBXuQ .mbr-section-title {
  color: #000000;
}
.cid-um9CxVBXuQ .card-link,
.cid-um9CxVBXuQ .link-icon,
.cid-um9CxVBXuQ .link-align {
  color: #232323;
}
.cid-um9CxWizuC {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
}
.cid-um9CxWizuC blockquote {
  margin-bottom: 0;
  border-color: #000000;
  background-color: #ffffff;
  font-style: normal;
}
.cid-um9CxWizuC .inform div {
  padding: .3rem .5rem 0;
  border-left: 1px solid;
}
.cid-um9CxWizuC .inform div:first-child {
  border-left: none;
}
.cid-um9CxWizuC .inform .date {
  background-color: #FFA4BC;
  border-radius: 20px;
}
.cid-um9CxWizuC .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-um9CxWizuC .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-um9CxWFaTd {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(to bottom, #ffffff, #ffffff);
}
.cid-um9CxWFaTd .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9CxWFaTd .card-link {
  position: relative;
  width: fit-content;
}
.cid-um9CxWFaTd .card-link:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-um9CxWFaTd .item-wrapper {
  margin-bottom: 0rem;
  padding: 2.5rem 2rem;
  margin-top: 2rem;
  background: #000000;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .cid-um9CxWFaTd .item-wrapper {
    margin-bottom: 0rem;
    padding: 1rem;
  }
}
.cid-um9CxWFaTd .item-wrapper:hover {
  background: #232323;
  transform: translateY(-5px);
}
.cid-um9CxWFaTd .item-wrapper:hover .card-title,
.cid-um9CxWFaTd .item-wrapper:hover .card-text {
  color: white !important;
}
.cid-um9CxWFaTd .item-wrapper:hover span,
.cid-um9CxWFaTd .item-wrapper:hover .card-link,
.cid-um9CxWFaTd .item-wrapper:hover .card-link a {
  color: #702bee !important;
}
.cid-um9CxWFaTd .item-wrapper:hover .card-link:before {
  width: 0%;
}
.cid-um9CxWFaTd .card-title,
.cid-um9CxWFaTd .card-text,
.cid-um9CxWFaTd .card-link,
.cid-um9CxWFaTd .card-link a {
  transition: all 0.3s;
}
.cid-um9CxWFaTd .link-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-um9CxWFaTd .link-wrapper .link-icon {
  color: currentColor;
  font-size: 1rem;
  padding-left: .5rem;
  padding-bottom: 4px;
  transition: all 0.3s;
}
.cid-um9CxWFaTd .link-wrapper:hover {
  cursor: pointer;
}
.cid-um9CxWFaTd .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 5rem;
  color: #232323;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cid-um9CxWFaTd .iconfont-wrapper .mbr-iconfont {
    font-size: 4rem;
  }
}
.cid-um9CxWFaTd .card-title,
.cid-um9CxWFaTd .iconfont-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-um9CxWFaTd .card-text {
  color: #232323;
}
.cid-um9CxWFaTd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-um9CxWFaTd .card-link,
.cid-um9CxWFaTd .link-icon,
.cid-um9CxWFaTd .link-align {
  color: #232323;
}
.cid-um9CxWFaTd .mbr-section-subtitle {
  text-align: left;
}
.cid-um9CxXlTEt {
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-bottom: 3px solid #000000;
  background-color: #000000;
}
.cid-um9CxXlTEt .row {
  flex-direction: row-reverse;
}
.cid-um9CxXlTEt .card-wrapper {
  padding-left: 32px;
  padding-right: 32px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-um9CxXlTEt .card-wrapper {
    margin-top: 2rem !important;
    padding: 0;
  }
}
.cid-um9CxXlTEt .wrapper {
  margin-top: 120px;
}
.cid-um9CxXlTEt .wrapper .mbr-iconfont {
  font-size: 3rem;
}
@media (min-width: 992px) {
  .cid-um9CxXlTEt .wrapper .display-7 {
    font-size: 23px;
  }
}
.cid-um9CxXlTEt .wrap {
  min-height: 650px;
  position: relative;
}
.cid-um9CxXlTEt .wrap img {
  width: 144px;
  position: absolute;
}
@media (max-width: 991px) {
  .cid-um9CxXlTEt .wrap {
    display: none;
  }
}
.cid-um9CxXlTEt .wrap:hover .image-1 {
  top: -80px;
  left: -80px;
}
.cid-um9CxXlTEt .wrap:hover .image-2 {
  right: 20px;
}
.cid-um9CxXlTEt .wrap:hover .image-3 {
  left: 80px;
  top: 190px;
}
.cid-um9CxXlTEt .wrap:hover .image-4 {
  top: 260px;
  right: 30px;
}
.cid-um9CxXlTEt .wrap:hover .image-5 {
  left: -80px;
}
.cid-um9CxXlTEt .wrap:hover .image-6 {
  right: -30px;
}
.cid-um9CxXlTEt .wrap:hover .image-7 {
  bottom: 10px;
  left: 70px;
}
.cid-um9CxXlTEt .image-1 {
  top: -90px;
  left: -90px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9CxXlTEt .image-2 {
  right: 0;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9CxXlTEt .image-3 {
  left: 80px;
  top: 200px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9CxXlTEt .image-4 {
  top: 250px;
  right: 20px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9CxXlTEt .image-5 {
  left: -90px;
  bottom: 100px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9CxXlTEt .image-6 {
  bottom: 0;
  right: -40px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9CxXlTEt .image-7 {
  bottom: 0;
  left: 80px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9CxXlTEt .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-um9CxXlTEt .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-um9CxXLKsS {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-um9CxXLKsS .container-fluid {
  padding: 0 3rem;
}
.cid-um9CxXLKsS .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-um9CxXLKsS .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #702bee, #ffa4bc);
  display: inline-block;
}
.cid-um9CxXLKsS .title-wrap {
  padding-left: 0;
  padding-right: 0;
}
.cid-um9CxXLKsS .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-um9CxXLKsS .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-um9CxXLKsS .image-wrap img:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-um9CxXLKsS .content-section {
  padding: 3rem;
}
.cid-um9CxXLKsS .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-um9CxXLKsS .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #000000;
  padding: 0rem;
  z-index: 10;
  border-radius: 15px;
  margin-bottom: 3rem;
}
@media (max-width: 1200px) {
  .cid-um9CxXLKsS .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-um9CxXLKsS .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-um9CxXLKsS .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-um9CxXLKsS .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-um9CxXLKsS .mbr-section-subtitle,
.cid-um9CxXLKsS .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-um9CxXLKsS .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-um9CxYh5Dx {
  margin-top: -3px;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-um9CxYh5Dx .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.cid-um9CxYh5Dx .row {
  border-top: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
}
.cid-um9CxYh5Dx .top-line {
  border-bottom: 3px solid #ffffff;
}
.cid-um9CxYh5Dx .bottom-line {
  padding: 30px 0;
}
.cid-um9CxYh5Dx .card-title {
  text-decoration: underline;
}
.cid-um9CxYh5Dx .title {
  padding: 30px 1rem 40px;
}
.cid-um9CxYh5Dx .title:hover {
  background-color: #FFA4BC;
  color: #ff403d;
}
.cid-um9CxYh5Dx .title1 {
  padding: 30px 1rem 40px;
}
.cid-um9CxYh5Dx .title1:hover {
  background-color: #006b54;
  color: #ffcc1a;
}
.cid-um9CxYh5Dx .title2 {
  padding: 30px 1rem 40px;
}
.cid-um9CxYh5Dx .title2:hover {
  background-color: #cbb6f2;
  color: #1b66ce;
}
@media (max-width: 991px) {
  .cid-um9CxYh5Dx .card {
    margin-bottom: 2rem !important;
  }
  .cid-um9CxYh5Dx .card-title,
  .cid-um9CxYh5Dx .mbr-text {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-um9CxYh5Dx .link-wrap {
    align-items: center;
  }
}
@media (min-width: 992px) {
  .cid-um9CxYh5Dx .card-title,
  .cid-um9CxYh5Dx .mbr-text {
    padding: 0 70px 0 70px;
  }
}
.cid-um9CxYh5Dx .image-wrapper img {
  border-radius: 72px;
  width: 100%;
  max-width: 400px;
  max-height: 520px;
  object-fit: cover;
  border: 3px solid;
  border-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-um9CxYh5Dx .image-wrapper img {
    max-width: 320px;
    max-height: 425px;
  }
}
.cid-um9CxYh5Dx .img {
  padding-top: 72px;
  padding-bottom: 66px;
}
@media (max-width: 767px) {
  .cid-um9CxYh5Dx .img {
    border-top: 3px solid #ffffff;
  }
}
@media (min-width: 768px) {
  .cid-um9CxYh5Dx .img {
    border-left: 3px solid #ffffff;
  }
}
.cid-um9CxYh5Dx .mbr-section-btn {
  margin-top: 65px;
  position: relative;
}
@media (max-width: 991px) {
  .cid-um9CxYh5Dx .mbr-section-btn {
    margin-left: 0;
    margin-right: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-um9CxYh5Dx .mbr-section-btn {
    margin-left: 0;
    margin-right: 0;
  }
}
.cid-um9CxYh5Dx .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-um9CxYh5Dx .btn:hover,
.cid-um9CxYh5Dx .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-um9CxYh5Dx .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-um9CxYh5Dx .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-um9CxYh5Dx .btn:hover:before,
.cid-um9CxYh5Dx .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-um9CxYh5Dx .btn-secondary {
  color: #000000 !important;
}
.cid-um9CxYh5Dx .btn-secondary:hover {
  color: #000000 !important;
}
.cid-um9CxYh5Dx .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-um9CxYh5Dx .card-title,
.cid-um9CxYh5Dx .card-box {
  text-align: center;
}
.cid-um9CxYh5Dx .mbr-text,
.cid-um9CxYh5Dx .link-wrap,
.cid-um9CxYh5Dx .mbr-section-btn {
  text-align: center;
}
.cid-um9CxYh5Dx .mbr-text,
.cid-um9CxYh5Dx .link-wrap {
  color: #ffffff;
}
.cid-um9CxYND6P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-um9CxYND6P .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-um9CxYND6P .mbr-section-btn {
    margin-left: 0;
    margin-right: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-um9CxYND6P .mbr-section-btn {
    margin-left: .5rem;
    margin-right: .5rem;
  }
}
.cid-um9CxYND6P .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-um9CxYND6P .btn:hover,
.cid-um9CxYND6P .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-um9CxYND6P .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-um9CxYND6P .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-um9CxYND6P .btn:hover:before,
.cid-um9CxYND6P .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-um9CxYND6P .btn-secondary {
  color: #000000 !important;
}
.cid-um9CxYND6P .btn-secondary:hover {
  color: #000000 !important;
}
.cid-um9CxYND6P .mbr-section-title,
.cid-um9CxYND6P .mbr-section-btn {
  color: #000000;
}
.cid-um9CxYND6P .mbr-section-subtitle {
  color: #000000;
}
.cid-um9CxZbVx1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-um9CxZbVx1 .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-um9CxZbVx1 .mbr-section-btn {
    margin-left: 0;
    margin-right: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-um9CxZbVx1 .mbr-section-btn {
    margin-left: .5rem;
    margin-right: .5rem;
  }
}
.cid-um9CxZbVx1 .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-um9CxZbVx1 .btn:hover,
.cid-um9CxZbVx1 .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-um9CxZbVx1 .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-um9CxZbVx1 .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-um9CxZbVx1 .btn:hover:before,
.cid-um9CxZbVx1 .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-um9CxZbVx1 .btn-secondary {
  color: #000000 !important;
}
.cid-um9CxZbVx1 .btn-secondary:hover {
  color: #000000 !important;
}
.cid-um9CxZbVx1 .mbr-section-title,
.cid-um9CxZbVx1 .mbr-section-btn {
  color: #ffffff;
}
.cid-um9CxZxbTx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-um9CxZxbTx .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9CxZxbTx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-um9CxZxbTx .container {
    padding: 0 15px;
  }
}
.cid-um9CxZxbTx .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-um9CxZxbTx .panel-group {
    padding-left: 0;
    margin-bottom: 60px;
  }
}
.cid-um9CxZxbTx .panel-group .card {
  border-radius: 0 !important;
  padding: 0;
  margin-top: 40px;
}
.cid-um9CxZxbTx .panel-group .card:first-child {
  margin-top: 0;
}
.cid-um9CxZxbTx .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0 0 20px 0;
}
.cid-um9CxZxbTx .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-um9CxZxbTx .panel-group .card .card-header .panel-title .panel-title-edit {
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  position: relative;
}
.cid-um9CxZxbTx .panel-group .card .card-header .panel-title .panel-title-edit::before {
  content: '/';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 30px;
  color: #ec111a;
  font-weight: 700;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.cid-um9CxZxbTx .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  width: 10px;
  height: 10px;
  min-width: 10px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-left: 20px;
  transform: rotate(90deg);
  opacity: .5;
}
.cid-um9CxZxbTx .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(270deg);
}
.cid-um9CxZxbTx .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #ec111a;
}
.cid-um9CxZxbTx .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit::before {
  left: -30px;
  opacity: 1;
}
.cid-um9CxZxbTx .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 20px;
  border-bottom: 1px solid #ffffff;
}
.cid-um9CxZxbTx .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 25px;
}
.cid-um9CxZxbTx .panel-group .card .panel-collapse .panel-body .panel-desc {
  margin-bottom: 0;
}
.cid-um9CxZxbTx .image-wrapper {
  position: relative;
  padding: 0 0 0 30px;
}
@media (max-width: 992px) {
  .cid-um9CxZxbTx .image-wrapper {
    padding: 0;
    margin-bottom: 60px;
  }
}
.cid-um9CxZxbTx .image-wrapper .decor-wrap {
  position: absolute;
  top: -5%;
  left: 5%;
  height: 230px;
  width: 312px;
  background-color: #ec111a;
  transform: skewX(-20deg);
}
.cid-um9CxZxbTx .image-wrapper img {
  position: relative;
  z-index: 1;
  height: 730px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-um9CxZxbTx .image-wrapper img {
    height: 350px;
  }
}
.cid-um9CxZxbTx .panel-title-edit {
  color: #ffffff;
}
.cid-um9CxZxbTx .panel-text {
  color: #ffffff;
}
.cid-um9CxZxbTx .panel-desc {
  color: #ec111a;
}
.cid-um9Cy0dCdT {
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-um9Cy0dCdT .wrapper {
  min-height: 385px;
  position: relative;
  background-color: #000000;
  border: 3px solid #000000;
}
@media (max-width: 991px) {
  .cid-um9Cy0dCdT .wrapper {
    padding: 5rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-um9Cy0dCdT .wrapper {
    padding: 84px 110px 90px;
  }
}
.cid-um9Cy0dCdT .wrapper .info {
  position: absolute;
  border-radius: 20px;
  background-color: #000000;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  font-size: 1.7em;
  font-family: "Josefin Sans";
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.cid-um9Cy0dCdT .image-wrapper {
  position: relative;
  border-radius: 50%;
  justify-content: end;
}
@media (max-width: 991px) {
  .cid-um9Cy0dCdT .image-wrapper {
    justify-content: center;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-um9Cy0dCdT .image-wrapper {
    justify-content: end;
  }
}
.cid-um9Cy0dCdT .image-wrapper img {
  object-fit: cover;
  max-width: 630px;
  max-height: 640;
  border-radius: 50%;
  border: 4px solid #000000;
  z-index: 3;
  transition: all 300ms ease;
  will-change: transform;
}
@media (max-width: 991px) {
  .cid-um9Cy0dCdT .image-wrapper img {
    max-width: 370px;
    max-height: 370px;
  }
}
.cid-um9Cy0dCdT .image-wrapper .hover {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: -20px;
  width: 100%;
  max-width: 630px;
  height: 100%;
  will-change: transform;
  border: 4px solid #000000 !important;
  border-radius: 50% !important;
  transition: all 300ms ease;
}
@media (max-width: 992px) {
  .cid-um9Cy0dCdT .image-wrapper .hover {
    max-width: 370px;
    left: 110px;
  }
}
@media (max-width: 767px) {
  .cid-um9Cy0dCdT .image-wrapper .hover {
    left: -10px;
    top: 10px;
  }
}
.cid-um9Cy0dCdT .image-wrapper:hover img,
.cid-um9Cy0dCdT .image-wrapper:focus img {
  transform: translate(-5px, 10px);
}
@media (max-width: 767px) {
  .cid-um9Cy0dCdT .image-wrapper:hover img,
  .cid-um9Cy0dCdT .image-wrapper:focus img {
    transform: translate(-2px, 10px);
  }
}
.cid-um9Cy0dCdT .image-wrapper:hover .hover,
.cid-um9Cy0dCdT .image-wrapper:focus .hover {
  left: -15px;
  top: 15px;
}
@media (max-width: 992px) {
  .cid-um9Cy0dCdT .image-wrapper:hover .hover,
  .cid-um9Cy0dCdT .image-wrapper:focus .hover {
    left: 120px;
  }
}
@media (max-width: 767px) {
  .cid-um9Cy0dCdT .image-wrapper:hover .hover,
  .cid-um9Cy0dCdT .image-wrapper:focus .hover {
    left: -7px;
  }
}
.cid-um9Cy0dCdT .hover0 {
  background-color: #1B66CE;
}
.cid-um9Cy0dCdT .hover1 {
  background-color: #CBB6F2;
}
.cid-um9Cy0dCdT .hover2 {
  background-color: #FFA4BC;
}
@media (min-width: 992px) {
  .cid-um9Cy0dCdT .text-wrapper img {
    margin: 0 auto;
  }
}
.cid-um9Cy0dCdT .mbr-title,
.cid-um9Cy0dCdT .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-um9Cy0dCdT .mbr-title,
  .cid-um9Cy0dCdT .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-um9Cy0dCdT .mbr-text {
    text-align: center;
  }
}
.cid-um9Cy0dCdT .mbr-info {
  text-align: right;
}
.cid-um9Cy0ML8q {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
}
.cid-um9Cy0ML8q blockquote {
  margin-bottom: 0;
  border-color: #000000;
  background-color: #ffffff;
  font-style: normal;
}
.cid-um9Cy0ML8q .inform div {
  padding: .3rem .5rem 0;
  border-left: 1px solid;
}
.cid-um9Cy0ML8q .inform div:first-child {
  border-left: none;
}
.cid-um9Cy0ML8q .inform .date {
  background-color: #FFA4BC;
  border-radius: 20px;
}
.cid-um9Cy0ML8q .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-um9Cy0ML8q .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-um9FyqvQTs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-um9FyqvQTs .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9FyqvQTs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-um9FyqvQTs .content-wrapper {
  padding: 80px 90px;
  background-color: #000000;
  display: flex;
}
@media (max-width: 1199px) {
  .cid-um9FyqvQTs .content-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-um9FyqvQTs .content-wrapper {
    padding: 32px 16px;
  }
}
.cid-um9FyqvQTs .content-wrapper .content-wrap {
  width: 45%;
  padding-right: 48px;
}
@media (max-width: 1199px) {
  .cid-um9FyqvQTs .content-wrapper .content-wrap {
    margin-bottom: 32px;
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-um9FyqvQTs .content-wrapper .content-wrap {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-um9FyqvQTs .content-wrapper .content-wrap .text-wrapper {
    position: static;
    padding: 0;
  }
}
.cid-um9FyqvQTs .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.cid-um9FyqvQTs .content-wrapper .content-wrap .text-wrapper .mbr-section-title span {
  padding: 0 10px;
  border-radius: 8rem;
  background-color: #ffe66d;
}
@media (max-width: 992px) {
  .cid-um9FyqvQTs .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-um9FyqvQTs .content-wrapper .content-wrap .text-wrapper .mbr-text {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-um9FyqvQTs .content-wrapper .panel-group {
  width: 55%;
}
@media (max-width: 1199px) {
  .cid-um9FyqvQTs .content-wrapper .panel-group {
    width: 100%;
  }
}
.cid-um9FyqvQTs .content-wrapper .panel-group .card {
  position: relative;
  padding: 24px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  margin-top: 16px;
  border: 3px solid #702bee;
  box-shadow: 4px 4px 0 0 #702bee;
  background-color: #f7fff7;
}
@media (max-width: 992px) {
  .cid-um9FyqvQTs .content-wrapper .panel-group .card {
    padding: 16px;
  }
}
.cid-um9FyqvQTs .content-wrapper .panel-group .card:first-child {
  margin-top: 0;
}
.cid-um9FyqvQTs .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-um9FyqvQTs .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-um9FyqvQTs .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-um9FyqvQTs .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 45px;
  height: 45px;
  min-width: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.cid-um9FyqvQTs .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 26px;
  color: #702bee;
}
.cid-um9FyqvQTs .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-um9FyqvQTs .content-wrapper .panel-group .card .panel-collapse .panel-body {
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-um9FyqvQTs .content-wrapper .panel-group .card .panel-collapse .panel-body {
    margin-top: 16px;
  }
}
.cid-um9FyqvQTs .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-um9FyqvQTs .mbr-section-title {
  color: #050f0f;
}
.cid-um9FyqvQTs .mbr-text {
  color: #050f0f;
}
.cid-um9FyqvQTs .panel-title-edit {
  color: #050f0f;
}
.cid-um9FyqvQTs .panel-text {
  color: #050f0f;
}
.cid-um9FyqvQTs .mbr-section-title,
.cid-um9FyqvQTs .icon-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-um9Cy1aaa8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #becdc2;
  flex-direction: column;
  justify-content: center;
}
.cid-um9Cy1aaa8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9Cy1aaa8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-um9Cy1aaa8 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-um9Cy1aaa8 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-um9Cy1aaa8 .container {
    padding: 0 16px;
  }
}
.cid-um9Cy1aaa8 .google-map iframe {
  border-radius: 0 !important;
  height: 600px;
}
@media (max-width: 992px) {
  .cid-um9Cy1aaa8 .google-map iframe {
    height: 350px;
  }
}
.cid-um9Cy1BNpQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
  background-color: #b6f2f2;
}
.cid-um9Cy1BNpQ .media-wrap {
  padding: 0;
}
.cid-um9Cy1BNpQ .media-wrap img {
  background-color: #000000;
  padding: 0;
  border-radius: 50%;
}
.cid-um9Cy1BNpQ .media-wrap img:hover {
  background-color: #1B66CE;
}
@media (max-width: 767px) {
  .cid-um9Cy1BNpQ .row {
    text-align: center;
  }
  .cid-um9Cy1BNpQ .social-row {
    justify-content: center;
  }
  .cid-um9Cy1BNpQ .logo {
    margin: 0 auto;
  }
}
.cid-um9Cy1BNpQ .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-um9Cy1BNpQ .content {
    padding: 1px 12px 5px;
  }
}
.cid-um9Cy1BNpQ .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-um9Cy1BNpQ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-um9Cy1BNpQ .list {
    margin-bottom: 0rem;
  }
}
.cid-um9Cy1BNpQ .list .item-wrap {
  margin-top: 3.9px;
  margin-bottom: 3.9px;
}
@media (min-width: 992px) {
  .cid-um9Cy1BNpQ .bd {
    border-left: 3px solid #000;
  }
}
.cid-um9Cy1BNpQ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-um9Cy1BNpQ .mbr-iconfont {
  color: black;
  transition: all .5s;
}
.cid-um9Cy1BNpQ .mbr-iconfont:hover {
  color: #1B66CE;
}
.cid-um9Cy1BNpQ .margin {
  margin-top: 80px;
}
@media (max-width: 991px) {
  .cid-um9Cy1BNpQ .margin {
    margin-top: 20px;
  }
}
.cid-um9Cy1BNpQ .link {
  color: #000000;
}
.cid-um9Cy1BNpQ .link a:hover {
  color: #1B66CE !important;
}
.cid-um9Cy1BNpQ .mbr-form-container {
  margin-top: 12px;
}
.cid-um9Cy1BNpQ .form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  max-width: 600px;
}
.cid-um9Cy1BNpQ .link a {
  color: #fcf9f2;
}
.cid-um9Cy1BNpQ .dragArea {
  justify-content: center;
}
.cid-um9Cy1BNpQ form .row {
  margin: 0;
}
.cid-um9Cy1BNpQ form .form-group {
  padding: 0;
  flex-grow: 1;
}
.cid-um9Cy1BNpQ form .form-group .form-control,
.cid-um9Cy1BNpQ form .form-group textarea {
  height: 40px;
  padding: 0;
  padding-left: 34px;
  padding-right: 34px;
  border-radius: 10px 0 0 10px;
  border: 3px solid #000 !important;
  background: transparent;
  box-shadow: none;
  min-height: auto;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .cid-um9Cy1BNpQ form .form-group .form-control,
  .cid-um9Cy1BNpQ form .form-group textarea {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-um9Cy1BNpQ form .form-group .form-control:active,
.cid-um9Cy1BNpQ form .form-group textarea:active,
.cid-um9Cy1BNpQ form .form-group .form-control:focus,
.cid-um9Cy1BNpQ form .form-group textarea:focus {
  border: 2px solid #1B66CE !important;
  border-right: none !important;
  background: transparent !important;
  box-shadow: none !important;
}
.cid-um9Cy1BNpQ form .form-control::placeholder {
  color: #000;
}
.cid-um9Cy1BNpQ form .form-control::-webkit-input-placeholder {
  color: #000;
}
.cid-um9Cy1BNpQ form .form-control::-moz-placeholder {
  color: #000;
}
.cid-um9Cy1BNpQ form .form-control-label,
.cid-um9Cy1BNpQ form .form-check-label {
  color: #000;
}
.cid-um9Cy1BNpQ form input::-webkit-clear-button {
  display: none;
}
.cid-um9Cy1BNpQ form input::-webkit-inner-spin-button {
  display: none;
}
.cid-um9Cy1BNpQ form input::-webkit-outer-spin-button {
  display: none;
}
.cid-um9Cy1BNpQ form input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-um9Cy1BNpQ form .mbr-section-btn {
  border: 3px solid #000 !important;
  border-radius: 0 10px 10px 0;
  margin-left: -3px;
  width: auto;
  height: 40px;
  overflow: hidden;
  padding: 0;
  margin-bottom: 1.2rem;
}
.cid-um9Cy1BNpQ form .mbr-section-btn .btn {
  color: #01152f !important;
  padding: 3px 30px 0;
}
@media (max-width: 767px) {
  .cid-um9Cy1BNpQ form .mbr-section-btn .btn {
    padding: 0 1em;
  }
}
.cid-um9Cy1BNpQ form .mbr-section-btn .btn:hover {
  background-color: #FFA4BC !important;
}
.cid-um9Cy1BNpQ form .form-group .form-control,
.cid-um9Cy1BNpQ .cid-sSq48MmVPJ form .form-group textarea {
  min-height: 40px;
}
.cid-um9Cy1BNpQ input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  overflow: hidden;
  height: 7px;
}
.cid-um9Cy1BNpQ input[type="range"]::-webkit-slider-runnable-track {
  height: 7px;
  background-color: #ffffff;
}
.cid-um9Cy1BNpQ input[type="range"]::-webkit-slider-thumb {
  background: #FFCC1A;
  cursor: pointer;
  width: 15px;
  height: 15px;
  -webkit-appearance: none;
  margin-top: -4px;
  box-shadow: -500px 0 0 500px #1b66ce;
}
.cid-um9Cy1BNpQ input[type="range"]::-moz-range-track {
  height: 7px;
  background-color: #ffffff;
}
.cid-um9Cy1BNpQ input[type="range"]::-moz-range-thumb {
  background: #1B66CE;
  cursor: pointer;
  height: 7px;
  border-radius: 0px;
  box-shadow: -200px 0px 0px 200px #1b66ce;
  padding: 0px;
  margin: 0px;
}
.cid-um9Cy1BNpQ .form-check-input:checked {
  background-color: #1B66CE;
  border-color: #1B66CE;
}
.cid-um9Cy1BNpQ .mbr-text {
  color: #000000;
}
.cid-um9Cy1BNpQ .mbr-section-title,
.cid-um9Cy1BNpQ .mbr-section-btn {
  color: #000000;
}
.cid-um9GkgxHPe {
  background-color: transparent;
}
.cid-um9GkgxHPe .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-um9GkgxHPe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-um9GkgxHPe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-um9GkgxHPe .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-um9GkgxHPe .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-um9GkgxHPe .menu_box .navbar.opened,
  .cid-um9GkgxHPe .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-um9GkgxHPe .navbar-dropdown {
  position: relative !important;
}
.cid-um9GkgxHPe .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-um9GkgxHPe .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-um9GkgxHPe .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-um9GkgxHPe .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-um9GkgxHPe .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-um9GkgxHPe .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #232b45;
  }
  .cid-um9GkgxHPe .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-um9GkgxHPe .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-um9GkgxHPe .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-um9GkgxHPe .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-um9GkgxHPe .offcanvas-body .mbr-text,
  .cid-um9GkgxHPe .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-um9GkgxHPe .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-um9GkgxHPe .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-um9GkgxHPe .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #f2ac2b;
  }
  .cid-um9GkgxHPe .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-um9GkgxHPe .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-um9GkgxHPe .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-um9GkgxHPe .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-um9GkgxHPe ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-um9GkgxHPe .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-um9GkgxHPe .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-um9GkgxHPe .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-um9GkgxHPe li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-um9GkgxHPe .lg_brand {
    margin: 0 1rem;
  }
  .cid-um9GkgxHPe .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-um9GkgxHPe .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-um9GkgxHPe .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-um9GkgxHPe .nav-item {
    margin: 0 !important;
  }
}
.cid-um9GkgxHPe .nav-item .nav-link {
  transition: all 0.3s ease-out;
}
.cid-um9GkgxHPe .nav-item .nav-link:hover,
.cid-um9GkgxHPe .nav-item .nav-link:focus {
  color: #702bee !important;
  text-shadow: 2px 2px 4px #702bee;
}
.cid-um9GkgxHPe .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-um9GkgxHPe .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-um9GkgxHPe .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-um9GkgxHPe .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-um9GkgxHPe .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-um9GkgxHPe .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-um9GkgxHPe .offcanvas_box {
    display: none;
  }
}
.cid-um9GkgxHPe .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-um9GkgxHPe .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-um9GkgxHPe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-um9GkgxHPe .container {
  display: flex;
  margin: auto;
}
.cid-um9GkgxHPe .iconfont-wrapper {
  color: #f2ac2b;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-um9GkgxHPe .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-um9GkgxHPe .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-um9GkgxHPe .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-um9GkgxHPe .navbar-nav {
    margin: 0;
  }
}
.cid-um9GkgxHPe .dropdown-menu,
.cid-um9GkgxHPe .navbar.opened {
  background-color: false !important;
}
.cid-um9GkgxHPe .nav-item:focus,
.cid-um9GkgxHPe .nav-link:focus {
  outline: none;
}
.cid-um9GkgxHPe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-um9GkgxHPe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-um9GkgxHPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-um9GkgxHPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-um9GkgxHPe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-um9GkgxHPe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-um9GkgxHPe .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-um9GkgxHPe .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-um9GkgxHPe .navbar.opened {
  transition: all 0.3s;
}
.cid-um9GkgxHPe .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-um9GkgxHPe .navbar .navbar-logo img {
  max-width: 54px;
  min-height: 54px;
  object-fit: contain;
  border-radius: 100% !important;
}
.cid-um9GkgxHPe .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-um9GkgxHPe .navbar.collapsed {
  justify-content: center;
}
.cid-um9GkgxHPe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-um9GkgxHPe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-um9GkgxHPe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-um9GkgxHPe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-um9GkgxHPe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-um9GkgxHPe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-um9GkgxHPe .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-um9GkgxHPe .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-um9GkgxHPe .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-um9GkgxHPe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-um9GkgxHPe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-um9GkgxHPe .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-um9GkgxHPe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-um9GkgxHPe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-um9GkgxHPe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-um9GkgxHPe .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-um9GkgxHPe .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-um9GkgxHPe .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-um9GkgxHPe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-um9GkgxHPe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-um9GkgxHPe .navbar .icons-menu {
    padding: 0;
  }
}
.cid-um9GkgxHPe .navbar.navbar-short {
  min-height: 60px;
}
.cid-um9GkgxHPe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-um9GkgxHPe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-um9GkgxHPe .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-um9GkgxHPe .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600;
}
.cid-um9GkgxHPe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-um9GkgxHPe .dropdown-item.active,
.cid-um9GkgxHPe .dropdown-item:active {
  background-color: transparent;
}
.cid-um9GkgxHPe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 2px 10px !important;
}
.cid-um9GkgxHPe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-um9GkgxHPe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-um9GkgxHPe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-um9GkgxHPe ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-um9GkgxHPe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-um9GkgxHPe button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #232b45;
}
.cid-um9GkgxHPe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #f2ac2b;
}
.cid-um9GkgxHPe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-um9GkgxHPe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-um9GkgxHPe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-um9GkgxHPe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-um9GkgxHPe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-um9GkgxHPe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-um9GkgxHPe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-um9GkgxHPe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-um9GkgxHPe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-um9GkgxHPe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-um9GkgxHPe .navbar {
    height: 70px;
  }
  .cid-um9GkgxHPe .navbar.opened {
    height: auto;
  }
  .cid-um9GkgxHPe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-um9GkgxHPe .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-um9GkgxHPe .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-um9GkgxHPe .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-um9GkgxHPe .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-um9GkgxHPe .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 180px;
}
.cid-um9GkgxHPe .navbar-caption:hover {
  color: #702bee;
}
@media (min-width: 992px) {
  .cid-um9GkgxHPe .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-um9GkgxHPe .text_widget {
  margin-bottom: 32px;
}
.cid-um9GkgxHPe .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-um9GkgxHPe .text_widget a:hover,
.cid-um9GkgxHPe .text_widget a:focus {
  opacity: .6;
}
.cid-um9GkgxHPe .mbr-section-subtitle {
  color: #f2ac2b;
  text-align: center;
}
.cid-um9GkgxHPe .navbar-caption {
  color: #f2ac2b;
}
.cid-um9GkgxHPe .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-um9GkgxHPe .mbr-section-subtitle,
.cid-um9GkgxHPe .text_widget,
.cid-um9GkgxHPe .mbr-section-btn {
  text-align: center;
}
.cid-um9GkgxHPe a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-um9Gki21gS {
  background-image: url("../../../assets/images/fresno-party-rentals12-2000x1330.jpg");
}
.cid-um9Gki21gS .row {
  flex-direction: row-reverse;
}
.cid-um9Gki21gS .card-wrapper {
  padding-left: 32px;
  padding-right: 32px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-um9Gki21gS .card-wrapper {
    margin-top: 2rem !important;
    padding: 0;
  }
}
.cid-um9Gki21gS .wrapper {
  margin-top: 120px;
}
.cid-um9Gki21gS .wrapper .mbr-iconfont {
  font-size: 3rem;
}
@media (min-width: 992px) {
  .cid-um9Gki21gS .wrapper .display-7 {
    font-size: 23px;
  }
}
.cid-um9Gki21gS .wrap {
  min-height: 650px;
  position: relative;
}
.cid-um9Gki21gS .wrap img {
  width: 144px;
  position: absolute;
}
@media (max-width: 991px) {
  .cid-um9Gki21gS .wrap {
    display: none;
  }
}
.cid-um9Gki21gS .wrap:hover .image-1 {
  top: -80px;
  left: -80px;
}
.cid-um9Gki21gS .wrap:hover .image-2 {
  right: 20px;
}
.cid-um9Gki21gS .wrap:hover .image-3 {
  left: 80px;
  top: 190px;
}
.cid-um9Gki21gS .wrap:hover .image-4 {
  top: 260px;
  right: 30px;
}
.cid-um9Gki21gS .wrap:hover .image-5 {
  left: -80px;
}
.cid-um9Gki21gS .wrap:hover .image-6 {
  right: -30px;
}
.cid-um9Gki21gS .wrap:hover .image-7 {
  bottom: 10px;
  left: 70px;
}
.cid-um9Gki21gS .image-1 {
  top: -90px;
  left: -90px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9Gki21gS .image-2 {
  right: 0;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9Gki21gS .image-3 {
  left: 80px;
  top: 200px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9Gki21gS .image-4 {
  top: 250px;
  right: 20px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9Gki21gS .image-5 {
  left: -90px;
  bottom: 100px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9Gki21gS .image-6 {
  bottom: 0;
  right: -40px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9Gki21gS .image-7 {
  bottom: 0;
  left: 80px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9Gki21gS .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-um9Gki21gS .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-um9GkiPnRg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-um9GkiPnRg .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9GkiPnRg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-um9GkiPnRg .container {
    padding: 0 15px;
  }
}
.cid-um9GkiPnRg .row {
  justify-content: center;
}
.cid-um9GkiPnRg .content-wrapper {
  padding: 100px 60px;
  border: 1px solid #373d52;
  position: relative;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-um9GkiPnRg .content-wrapper {
    padding: 80px 40px;
    display: block;
  }
}
@media (max-width: 768px) {
  .cid-um9GkiPnRg .content-wrapper {
    padding: 80px 20px;
  }
}
.cid-um9GkiPnRg .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-um9GkiPnRg .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background-color: #232b45;
  opacity: .5;
  z-index: 1;
  pointer-events: none;
}
.cid-um9GkiPnRg .content-wrapper .title-wrapper {
  max-width: 300px;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-um9GkiPnRg .content-wrapper .title-wrapper {
    max-width: 100%;
  }
}
.cid-um9GkiPnRg .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-um9GkiPnRg .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-um9GkiPnRg .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-um9GkiPnRg .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-um9GkiPnRg .content-wrapper .lists-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 60%;
}
@media (max-width: 992px) {
  .cid-um9GkiPnRg .content-wrapper .lists-wrapper {
    width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .cid-um9GkiPnRg .content-wrapper .lists-wrapper {
    display: block;
  }
}
@media (max-width: 768px) {
  .cid-um9GkiPnRg .content-wrapper .lists-wrapper .list-wrap {
    margin-bottom: 20px;
  }
}
.cid-um9GkiPnRg .content-wrapper .lists-wrapper .list-wrap .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 36px;
}
.cid-um9GkiPnRg .content-wrapper .lists-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-um9GkiPnRg .content-wrapper .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-um9GkiPnRg .content-wrapper .lists-wrapper .list-wrap .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -36px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  color: #171827;
  font-size: 16px;
}
.cid-um9GkiPnRg .mbr-section-title {
  color: #ffffff;
}
.cid-um9GkiPnRg .mbr-text {
  color: #ffffff;
}
.cid-um9GkiPnRg .list {
  color: #ffffff;
}
.cid-um9GkiPnRg .mbr-section-title,
.cid-um9GkiPnRg .mbr-section-btn {
  text-align: center;
}
.cid-um9Gkkawu7 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
}
.cid-um9Gkkawu7 blockquote {
  margin-bottom: 0;
  border-color: #000000;
  background-color: #ffffff;
  font-style: normal;
}
.cid-um9Gkkawu7 .inform div {
  padding: .3rem .5rem 0;
  border-left: 1px solid;
}
.cid-um9Gkkawu7 .inform div:first-child {
  border-left: none;
}
.cid-um9Gkkawu7 .inform .date {
  background-color: #FFA4BC;
  border-radius: 20px;
}
.cid-um9Gkkawu7 .mbr-section-title {
  text-align: center;
}
.cid-um9Gkkawu7 .mbr-text {
  text-align: center;
}
.cid-um9GkkvZ2c {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-um9GkkvZ2c .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9GkkvZ2c .item-wrapper {
  margin-bottom: 2rem;
  padding: 2.5rem 2rem;
  margin-top: 2rem;
  background: #000000;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .cid-um9GkkvZ2c .item-wrapper {
    margin-bottom: 2rem;
    padding: 1rem;
  }
}
.cid-um9GkkvZ2c .item-wrapper:hover {
  background: #232323;
  transform: translateY(-5px);
}
.cid-um9GkkvZ2c .item-wrapper:hover .card-title,
.cid-um9GkkvZ2c .item-wrapper:hover .card-text,
.cid-um9GkkvZ2c .item-wrapper:hover .card-link,
.cid-um9GkkvZ2c .item-wrapper:hover .card-link a {
  color: white !important;
}
.cid-um9GkkvZ2c .item-wrapper:hover span {
  color: #702bee;
}
.cid-um9GkkvZ2c .card-title,
.cid-um9GkkvZ2c .card-text,
.cid-um9GkkvZ2c .card-link,
.cid-um9GkkvZ2c .card-link a {
  transition: all 0.3s;
}
.cid-um9GkkvZ2c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-um9GkkvZ2c .link-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-um9GkkvZ2c .link-wrapper .link-icon {
  color: currentColor;
  font-size: 1rem;
  padding-left: .5rem;
  padding-bottom: 4px;
  transition: all 0.3s;
}
.cid-um9GkkvZ2c .link-wrapper:hover {
  cursor: pointer;
}
.cid-um9GkkvZ2c .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 5rem;
  color: #232323;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cid-um9GkkvZ2c .iconfont-wrapper .mbr-iconfont {
    font-size: 4rem;
  }
}
.cid-um9GkkvZ2c .card-title,
.cid-um9GkkvZ2c .iconfont-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-um9GkkvZ2c .card-text {
  color: #232323;
}
.cid-um9GkkvZ2c .content-head {
  max-width: 800px;
}
.cid-um9GkkvZ2c .mbr-section-title {
  color: #000000;
}
.cid-um9GkkvZ2c .card-link,
.cid-um9GkkvZ2c .link-icon,
.cid-um9GkkvZ2c .link-align {
  color: #232323;
}
.cid-um9GklhVix {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
}
.cid-um9GklhVix blockquote {
  margin-bottom: 0;
  border-color: #000000;
  background-color: #ffffff;
  font-style: normal;
}
.cid-um9GklhVix .inform div {
  padding: .3rem .5rem 0;
  border-left: 1px solid;
}
.cid-um9GklhVix .inform div:first-child {
  border-left: none;
}
.cid-um9GklhVix .inform .date {
  background-color: #FFA4BC;
  border-radius: 20px;
}
.cid-um9GklhVix .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-um9GklhVix .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-um9GklCp3f {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(to bottom, #ffffff, #ffffff);
}
.cid-um9GklCp3f .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9GklCp3f .card-link {
  position: relative;
  width: fit-content;
}
.cid-um9GklCp3f .card-link:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-um9GklCp3f .item-wrapper {
  margin-bottom: 0rem;
  padding: 2.5rem 2rem;
  margin-top: 2rem;
  background: #000000;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .cid-um9GklCp3f .item-wrapper {
    margin-bottom: 0rem;
    padding: 1rem;
  }
}
.cid-um9GklCp3f .item-wrapper:hover {
  background: #232323;
  transform: translateY(-5px);
}
.cid-um9GklCp3f .item-wrapper:hover .card-title,
.cid-um9GklCp3f .item-wrapper:hover .card-text {
  color: white !important;
}
.cid-um9GklCp3f .item-wrapper:hover span,
.cid-um9GklCp3f .item-wrapper:hover .card-link,
.cid-um9GklCp3f .item-wrapper:hover .card-link a {
  color: #702bee !important;
}
.cid-um9GklCp3f .item-wrapper:hover .card-link:before {
  width: 0%;
}
.cid-um9GklCp3f .card-title,
.cid-um9GklCp3f .card-text,
.cid-um9GklCp3f .card-link,
.cid-um9GklCp3f .card-link a {
  transition: all 0.3s;
}
.cid-um9GklCp3f .link-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-um9GklCp3f .link-wrapper .link-icon {
  color: currentColor;
  font-size: 1rem;
  padding-left: .5rem;
  padding-bottom: 4px;
  transition: all 0.3s;
}
.cid-um9GklCp3f .link-wrapper:hover {
  cursor: pointer;
}
.cid-um9GklCp3f .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 5rem;
  color: #232323;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cid-um9GklCp3f .iconfont-wrapper .mbr-iconfont {
    font-size: 4rem;
  }
}
.cid-um9GklCp3f .card-title,
.cid-um9GklCp3f .iconfont-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-um9GklCp3f .card-text {
  color: #232323;
}
.cid-um9GklCp3f .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-um9GklCp3f .card-link,
.cid-um9GklCp3f .link-icon,
.cid-um9GklCp3f .link-align {
  color: #232323;
}
.cid-um9GklCp3f .mbr-section-subtitle {
  text-align: left;
}
.cid-um9GkmfYxU {
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-bottom: 3px solid #000000;
  background-color: #000000;
}
.cid-um9GkmfYxU .row {
  flex-direction: row-reverse;
}
.cid-um9GkmfYxU .card-wrapper {
  padding-left: 32px;
  padding-right: 32px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-um9GkmfYxU .card-wrapper {
    margin-top: 2rem !important;
    padding: 0;
  }
}
.cid-um9GkmfYxU .wrapper {
  margin-top: 120px;
}
.cid-um9GkmfYxU .wrapper .mbr-iconfont {
  font-size: 3rem;
}
@media (min-width: 992px) {
  .cid-um9GkmfYxU .wrapper .display-7 {
    font-size: 23px;
  }
}
.cid-um9GkmfYxU .wrap {
  min-height: 650px;
  position: relative;
}
.cid-um9GkmfYxU .wrap img {
  width: 144px;
  position: absolute;
}
@media (max-width: 991px) {
  .cid-um9GkmfYxU .wrap {
    display: none;
  }
}
.cid-um9GkmfYxU .wrap:hover .image-1 {
  top: -80px;
  left: -80px;
}
.cid-um9GkmfYxU .wrap:hover .image-2 {
  right: 20px;
}
.cid-um9GkmfYxU .wrap:hover .image-3 {
  left: 80px;
  top: 190px;
}
.cid-um9GkmfYxU .wrap:hover .image-4 {
  top: 260px;
  right: 30px;
}
.cid-um9GkmfYxU .wrap:hover .image-5 {
  left: -80px;
}
.cid-um9GkmfYxU .wrap:hover .image-6 {
  right: -30px;
}
.cid-um9GkmfYxU .wrap:hover .image-7 {
  bottom: 10px;
  left: 70px;
}
.cid-um9GkmfYxU .image-1 {
  top: -90px;
  left: -90px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9GkmfYxU .image-2 {
  right: 0;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9GkmfYxU .image-3 {
  left: 80px;
  top: 200px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9GkmfYxU .image-4 {
  top: 250px;
  right: 20px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9GkmfYxU .image-5 {
  left: -90px;
  bottom: 100px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9GkmfYxU .image-6 {
  bottom: 0;
  right: -40px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9GkmfYxU .image-7 {
  bottom: 0;
  left: 80px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9GkmfYxU .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-um9GkmfYxU .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-um9GkmDB9m {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-um9GkmDB9m .container-fluid {
  padding: 0 3rem;
}
.cid-um9GkmDB9m .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-um9GkmDB9m .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #702bee, #ffa4bc);
  display: inline-block;
}
.cid-um9GkmDB9m .title-wrap {
  padding-left: 0;
  padding-right: 0;
}
.cid-um9GkmDB9m .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-um9GkmDB9m .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-um9GkmDB9m .image-wrap img:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-um9GkmDB9m .content-section {
  padding: 3rem;
}
.cid-um9GkmDB9m .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-um9GkmDB9m .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #000000;
  padding: 0rem;
  z-index: 10;
  border-radius: 15px;
  margin-bottom: 3rem;
}
@media (max-width: 1200px) {
  .cid-um9GkmDB9m .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-um9GkmDB9m .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-um9GkmDB9m .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-um9GkmDB9m .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-um9GkmDB9m .mbr-section-subtitle,
.cid-um9GkmDB9m .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-um9GkmDB9m .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-um9GknemN5 {
  margin-top: -3px;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-um9GknemN5 .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.cid-um9GknemN5 .row {
  border-top: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
}
.cid-um9GknemN5 .top-line {
  border-bottom: 3px solid #ffffff;
}
.cid-um9GknemN5 .bottom-line {
  padding: 30px 0;
}
.cid-um9GknemN5 .card-title {
  text-decoration: underline;
}
.cid-um9GknemN5 .title {
  padding: 30px 1rem 40px;
}
.cid-um9GknemN5 .title:hover {
  background-color: #FFA4BC;
  color: #ff403d;
}
.cid-um9GknemN5 .title1 {
  padding: 30px 1rem 40px;
}
.cid-um9GknemN5 .title1:hover {
  background-color: #006b54;
  color: #ffcc1a;
}
.cid-um9GknemN5 .title2 {
  padding: 30px 1rem 40px;
}
.cid-um9GknemN5 .title2:hover {
  background-color: #cbb6f2;
  color: #1b66ce;
}
@media (max-width: 991px) {
  .cid-um9GknemN5 .card {
    margin-bottom: 2rem !important;
  }
  .cid-um9GknemN5 .card-title,
  .cid-um9GknemN5 .mbr-text {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-um9GknemN5 .link-wrap {
    align-items: center;
  }
}
@media (min-width: 992px) {
  .cid-um9GknemN5 .card-title,
  .cid-um9GknemN5 .mbr-text {
    padding: 0 70px 0 70px;
  }
}
.cid-um9GknemN5 .image-wrapper img {
  border-radius: 72px;
  width: 100%;
  max-width: 400px;
  max-height: 520px;
  object-fit: cover;
  border: 3px solid;
  border-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-um9GknemN5 .image-wrapper img {
    max-width: 320px;
    max-height: 425px;
  }
}
.cid-um9GknemN5 .img {
  padding-top: 72px;
  padding-bottom: 66px;
}
@media (max-width: 767px) {
  .cid-um9GknemN5 .img {
    border-top: 3px solid #ffffff;
  }
}
@media (min-width: 768px) {
  .cid-um9GknemN5 .img {
    border-left: 3px solid #ffffff;
  }
}
.cid-um9GknemN5 .mbr-section-btn {
  margin-top: 65px;
  position: relative;
}
@media (max-width: 991px) {
  .cid-um9GknemN5 .mbr-section-btn {
    margin-left: 0;
    margin-right: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-um9GknemN5 .mbr-section-btn {
    margin-left: 0;
    margin-right: 0;
  }
}
.cid-um9GknemN5 .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-um9GknemN5 .btn:hover,
.cid-um9GknemN5 .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-um9GknemN5 .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-um9GknemN5 .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-um9GknemN5 .btn:hover:before,
.cid-um9GknemN5 .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-um9GknemN5 .btn-secondary {
  color: #000000 !important;
}
.cid-um9GknemN5 .btn-secondary:hover {
  color: #000000 !important;
}
.cid-um9GknemN5 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-um9GknemN5 .card-title,
.cid-um9GknemN5 .card-box {
  text-align: center;
}
.cid-um9GknemN5 .mbr-text,
.cid-um9GknemN5 .link-wrap,
.cid-um9GknemN5 .mbr-section-btn {
  text-align: center;
}
.cid-um9GknemN5 .mbr-text,
.cid-um9GknemN5 .link-wrap {
  color: #ffffff;
}
.cid-um9GknK9Pm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-um9GknK9Pm .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-um9GknK9Pm .mbr-section-btn {
    margin-left: 0;
    margin-right: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-um9GknK9Pm .mbr-section-btn {
    margin-left: .5rem;
    margin-right: .5rem;
  }
}
.cid-um9GknK9Pm .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-um9GknK9Pm .btn:hover,
.cid-um9GknK9Pm .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-um9GknK9Pm .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-um9GknK9Pm .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-um9GknK9Pm .btn:hover:before,
.cid-um9GknK9Pm .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-um9GknK9Pm .btn-secondary {
  color: #000000 !important;
}
.cid-um9GknK9Pm .btn-secondary:hover {
  color: #000000 !important;
}
.cid-um9GknK9Pm .mbr-section-title,
.cid-um9GknK9Pm .mbr-section-btn {
  color: #000000;
}
.cid-um9GknK9Pm .mbr-section-subtitle {
  color: #000000;
}
.cid-um9Gkofbw5 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-um9Gkofbw5 .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-um9Gkofbw5 .mbr-section-btn {
    margin-left: 0;
    margin-right: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-um9Gkofbw5 .mbr-section-btn {
    margin-left: .5rem;
    margin-right: .5rem;
  }
}
.cid-um9Gkofbw5 .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-um9Gkofbw5 .btn:hover,
.cid-um9Gkofbw5 .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-um9Gkofbw5 .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-um9Gkofbw5 .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-um9Gkofbw5 .btn:hover:before,
.cid-um9Gkofbw5 .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-um9Gkofbw5 .btn-secondary {
  color: #000000 !important;
}
.cid-um9Gkofbw5 .btn-secondary:hover {
  color: #000000 !important;
}
.cid-um9Gkofbw5 .mbr-section-title,
.cid-um9Gkofbw5 .mbr-section-btn {
  color: #ffffff;
}
.cid-um9GkoFTfB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-um9GkoFTfB .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9GkoFTfB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-um9GkoFTfB .container {
    padding: 0 15px;
  }
}
.cid-um9GkoFTfB .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-um9GkoFTfB .panel-group {
    padding-left: 0;
    margin-bottom: 60px;
  }
}
.cid-um9GkoFTfB .panel-group .card {
  border-radius: 0 !important;
  padding: 0;
  margin-top: 40px;
}
.cid-um9GkoFTfB .panel-group .card:first-child {
  margin-top: 0;
}
.cid-um9GkoFTfB .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0 0 20px 0;
}
.cid-um9GkoFTfB .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-um9GkoFTfB .panel-group .card .card-header .panel-title .panel-title-edit {
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  position: relative;
}
.cid-um9GkoFTfB .panel-group .card .card-header .panel-title .panel-title-edit::before {
  content: '/';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 30px;
  color: #ec111a;
  font-weight: 700;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.cid-um9GkoFTfB .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  width: 10px;
  height: 10px;
  min-width: 10px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-left: 20px;
  transform: rotate(90deg);
  opacity: .5;
}
.cid-um9GkoFTfB .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(270deg);
}
.cid-um9GkoFTfB .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #ec111a;
}
.cid-um9GkoFTfB .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit::before {
  left: -30px;
  opacity: 1;
}
.cid-um9GkoFTfB .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 20px;
  border-bottom: 1px solid #ffffff;
}
.cid-um9GkoFTfB .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 25px;
}
.cid-um9GkoFTfB .panel-group .card .panel-collapse .panel-body .panel-desc {
  margin-bottom: 0;
}
.cid-um9GkoFTfB .image-wrapper {
  position: relative;
  padding: 0 0 0 30px;
}
@media (max-width: 992px) {
  .cid-um9GkoFTfB .image-wrapper {
    padding: 0;
    margin-bottom: 60px;
  }
}
.cid-um9GkoFTfB .image-wrapper .decor-wrap {
  position: absolute;
  top: -5%;
  left: 5%;
  height: 230px;
  width: 312px;
  background-color: #ec111a;
  transform: skewX(-20deg);
}
.cid-um9GkoFTfB .image-wrapper img {
  position: relative;
  z-index: 1;
  height: 730px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-um9GkoFTfB .image-wrapper img {
    height: 350px;
  }
}
.cid-um9GkoFTfB .panel-title-edit {
  color: #ffffff;
}
.cid-um9GkoFTfB .panel-text {
  color: #ffffff;
}
.cid-um9GkoFTfB .panel-desc {
  color: #ec111a;
}
.cid-um9Gkpnn6V {
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-um9Gkpnn6V .wrapper {
  min-height: 385px;
  position: relative;
  background-color: #000000;
  border: 3px solid #000000;
}
@media (max-width: 991px) {
  .cid-um9Gkpnn6V .wrapper {
    padding: 5rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-um9Gkpnn6V .wrapper {
    padding: 84px 110px 90px;
  }
}
.cid-um9Gkpnn6V .wrapper .info {
  position: absolute;
  border-radius: 20px;
  background-color: #000000;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  font-size: 1.7em;
  font-family: "Josefin Sans";
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.cid-um9Gkpnn6V .image-wrapper {
  position: relative;
  border-radius: 50%;
  justify-content: end;
}
@media (max-width: 991px) {
  .cid-um9Gkpnn6V .image-wrapper {
    justify-content: center;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-um9Gkpnn6V .image-wrapper {
    justify-content: end;
  }
}
.cid-um9Gkpnn6V .image-wrapper img {
  object-fit: cover;
  max-width: 630px;
  max-height: 640;
  border-radius: 50%;
  border: 4px solid #000000;
  z-index: 3;
  transition: all 300ms ease;
  will-change: transform;
}
@media (max-width: 991px) {
  .cid-um9Gkpnn6V .image-wrapper img {
    max-width: 370px;
    max-height: 370px;
  }
}
.cid-um9Gkpnn6V .image-wrapper .hover {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: -20px;
  width: 100%;
  max-width: 630px;
  height: 100%;
  will-change: transform;
  border: 4px solid #000000 !important;
  border-radius: 50% !important;
  transition: all 300ms ease;
}
@media (max-width: 992px) {
  .cid-um9Gkpnn6V .image-wrapper .hover {
    max-width: 370px;
    left: 110px;
  }
}
@media (max-width: 767px) {
  .cid-um9Gkpnn6V .image-wrapper .hover {
    left: -10px;
    top: 10px;
  }
}
.cid-um9Gkpnn6V .image-wrapper:hover img,
.cid-um9Gkpnn6V .image-wrapper:focus img {
  transform: translate(-5px, 10px);
}
@media (max-width: 767px) {
  .cid-um9Gkpnn6V .image-wrapper:hover img,
  .cid-um9Gkpnn6V .image-wrapper:focus img {
    transform: translate(-2px, 10px);
  }
}
.cid-um9Gkpnn6V .image-wrapper:hover .hover,
.cid-um9Gkpnn6V .image-wrapper:focus .hover {
  left: -15px;
  top: 15px;
}
@media (max-width: 992px) {
  .cid-um9Gkpnn6V .image-wrapper:hover .hover,
  .cid-um9Gkpnn6V .image-wrapper:focus .hover {
    left: 120px;
  }
}
@media (max-width: 767px) {
  .cid-um9Gkpnn6V .image-wrapper:hover .hover,
  .cid-um9Gkpnn6V .image-wrapper:focus .hover {
    left: -7px;
  }
}
.cid-um9Gkpnn6V .hover0 {
  background-color: #1B66CE;
}
.cid-um9Gkpnn6V .hover1 {
  background-color: #CBB6F2;
}
.cid-um9Gkpnn6V .hover2 {
  background-color: #FFA4BC;
}
@media (min-width: 992px) {
  .cid-um9Gkpnn6V .text-wrapper img {
    margin: 0 auto;
  }
}
.cid-um9Gkpnn6V .mbr-title,
.cid-um9Gkpnn6V .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-um9Gkpnn6V .mbr-title,
  .cid-um9Gkpnn6V .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-um9Gkpnn6V .mbr-text {
    text-align: center;
  }
}
.cid-um9Gkpnn6V .mbr-info {
  text-align: right;
}
.cid-um9Gkq4GVu {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
}
.cid-um9Gkq4GVu blockquote {
  margin-bottom: 0;
  border-color: #000000;
  background-color: #ffffff;
  font-style: normal;
}
.cid-um9Gkq4GVu .inform div {
  padding: .3rem .5rem 0;
  border-left: 1px solid;
}
.cid-um9Gkq4GVu .inform div:first-child {
  border-left: none;
}
.cid-um9Gkq4GVu .inform .date {
  background-color: #FFA4BC;
  border-radius: 20px;
}
.cid-um9Gkq4GVu .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-um9Gkq4GVu .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-um9GkqKkz5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-um9GkqKkz5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9GkqKkz5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-um9GkqKkz5 .content-wrapper {
  padding: 80px 90px;
  background-color: #000000;
  display: flex;
}
@media (max-width: 1199px) {
  .cid-um9GkqKkz5 .content-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-um9GkqKkz5 .content-wrapper {
    padding: 32px 16px;
  }
}
.cid-um9GkqKkz5 .content-wrapper .content-wrap {
  width: 45%;
  padding-right: 48px;
}
@media (max-width: 1199px) {
  .cid-um9GkqKkz5 .content-wrapper .content-wrap {
    margin-bottom: 32px;
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-um9GkqKkz5 .content-wrapper .content-wrap {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-um9GkqKkz5 .content-wrapper .content-wrap .text-wrapper {
    position: static;
    padding: 0;
  }
}
.cid-um9GkqKkz5 .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.cid-um9GkqKkz5 .content-wrapper .content-wrap .text-wrapper .mbr-section-title span {
  padding: 0 10px;
  border-radius: 8rem;
  background-color: #ffe66d;
}
@media (max-width: 992px) {
  .cid-um9GkqKkz5 .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-um9GkqKkz5 .content-wrapper .content-wrap .text-wrapper .mbr-text {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-um9GkqKkz5 .content-wrapper .panel-group {
  width: 55%;
}
@media (max-width: 1199px) {
  .cid-um9GkqKkz5 .content-wrapper .panel-group {
    width: 100%;
  }
}
.cid-um9GkqKkz5 .content-wrapper .panel-group .card {
  position: relative;
  padding: 24px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  margin-top: 16px;
  border: 3px solid #702bee;
  box-shadow: 4px 4px 0 0 #702bee;
  background-color: #f7fff7;
}
@media (max-width: 992px) {
  .cid-um9GkqKkz5 .content-wrapper .panel-group .card {
    padding: 16px;
  }
}
.cid-um9GkqKkz5 .content-wrapper .panel-group .card:first-child {
  margin-top: 0;
}
.cid-um9GkqKkz5 .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-um9GkqKkz5 .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-um9GkqKkz5 .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-um9GkqKkz5 .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 45px;
  height: 45px;
  min-width: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.cid-um9GkqKkz5 .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 26px;
  color: #702bee;
}
.cid-um9GkqKkz5 .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-um9GkqKkz5 .content-wrapper .panel-group .card .panel-collapse .panel-body {
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-um9GkqKkz5 .content-wrapper .panel-group .card .panel-collapse .panel-body {
    margin-top: 16px;
  }
}
.cid-um9GkqKkz5 .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-um9GkqKkz5 .mbr-section-title {
  color: #050f0f;
}
.cid-um9GkqKkz5 .mbr-text {
  color: #050f0f;
}
.cid-um9GkqKkz5 .panel-title-edit {
  color: #050f0f;
}
.cid-um9GkqKkz5 .panel-text {
  color: #050f0f;
}
.cid-um9GkqKkz5 .mbr-section-title,
.cid-um9GkqKkz5 .icon-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-um9GkrlLcp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #becdc2;
  flex-direction: column;
  justify-content: center;
}
.cid-um9GkrlLcp .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9GkrlLcp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-um9GkrlLcp .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-um9GkrlLcp .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-um9GkrlLcp .container {
    padding: 0 16px;
  }
}
.cid-um9GkrlLcp .google-map iframe {
  border-radius: 0 !important;
  height: 600px;
}
@media (max-width: 992px) {
  .cid-um9GkrlLcp .google-map iframe {
    height: 350px;
  }
}
.cid-um9Gks0BaD {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
  background-color: #b6f2f2;
}
.cid-um9Gks0BaD .media-wrap {
  padding: 0;
}
.cid-um9Gks0BaD .media-wrap img {
  background-color: #000000;
  padding: 0;
  border-radius: 50%;
}
.cid-um9Gks0BaD .media-wrap img:hover {
  background-color: #1B66CE;
}
@media (max-width: 767px) {
  .cid-um9Gks0BaD .row {
    text-align: center;
  }
  .cid-um9Gks0BaD .social-row {
    justify-content: center;
  }
  .cid-um9Gks0BaD .logo {
    margin: 0 auto;
  }
}
.cid-um9Gks0BaD .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-um9Gks0BaD .content {
    padding: 1px 12px 5px;
  }
}
.cid-um9Gks0BaD .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-um9Gks0BaD .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-um9Gks0BaD .list {
    margin-bottom: 0rem;
  }
}
.cid-um9Gks0BaD .list .item-wrap {
  margin-top: 3.9px;
  margin-bottom: 3.9px;
}
@media (min-width: 992px) {
  .cid-um9Gks0BaD .bd {
    border-left: 3px solid #000;
  }
}
.cid-um9Gks0BaD .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-um9Gks0BaD .mbr-iconfont {
  color: black;
  transition: all .5s;
}
.cid-um9Gks0BaD .mbr-iconfont:hover {
  color: #1B66CE;
}
.cid-um9Gks0BaD .margin {
  margin-top: 80px;
}
@media (max-width: 991px) {
  .cid-um9Gks0BaD .margin {
    margin-top: 20px;
  }
}
.cid-um9Gks0BaD .link {
  color: #000000;
}
.cid-um9Gks0BaD .link a:hover {
  color: #1B66CE !important;
}
.cid-um9Gks0BaD .mbr-form-container {
  margin-top: 12px;
}
.cid-um9Gks0BaD .form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  max-width: 600px;
}
.cid-um9Gks0BaD .link a {
  color: #fcf9f2;
}
.cid-um9Gks0BaD .dragArea {
  justify-content: center;
}
.cid-um9Gks0BaD form .row {
  margin: 0;
}
.cid-um9Gks0BaD form .form-group {
  padding: 0;
  flex-grow: 1;
}
.cid-um9Gks0BaD form .form-group .form-control,
.cid-um9Gks0BaD form .form-group textarea {
  height: 40px;
  padding: 0;
  padding-left: 34px;
  padding-right: 34px;
  border-radius: 10px 0 0 10px;
  border: 3px solid #000 !important;
  background: transparent;
  box-shadow: none;
  min-height: auto;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .cid-um9Gks0BaD form .form-group .form-control,
  .cid-um9Gks0BaD form .form-group textarea {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-um9Gks0BaD form .form-group .form-control:active,
.cid-um9Gks0BaD form .form-group textarea:active,
.cid-um9Gks0BaD form .form-group .form-control:focus,
.cid-um9Gks0BaD form .form-group textarea:focus {
  border: 2px solid #1B66CE !important;
  border-right: none !important;
  background: transparent !important;
  box-shadow: none !important;
}
.cid-um9Gks0BaD form .form-control::placeholder {
  color: #000;
}
.cid-um9Gks0BaD form .form-control::-webkit-input-placeholder {
  color: #000;
}
.cid-um9Gks0BaD form .form-control::-moz-placeholder {
  color: #000;
}
.cid-um9Gks0BaD form .form-control-label,
.cid-um9Gks0BaD form .form-check-label {
  color: #000;
}
.cid-um9Gks0BaD form input::-webkit-clear-button {
  display: none;
}
.cid-um9Gks0BaD form input::-webkit-inner-spin-button {
  display: none;
}
.cid-um9Gks0BaD form input::-webkit-outer-spin-button {
  display: none;
}
.cid-um9Gks0BaD form input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-um9Gks0BaD form .mbr-section-btn {
  border: 3px solid #000 !important;
  border-radius: 0 10px 10px 0;
  margin-left: -3px;
  width: auto;
  height: 40px;
  overflow: hidden;
  padding: 0;
  margin-bottom: 1.2rem;
}
.cid-um9Gks0BaD form .mbr-section-btn .btn {
  color: #01152f !important;
  padding: 3px 30px 0;
}
@media (max-width: 767px) {
  .cid-um9Gks0BaD form .mbr-section-btn .btn {
    padding: 0 1em;
  }
}
.cid-um9Gks0BaD form .mbr-section-btn .btn:hover {
  background-color: #FFA4BC !important;
}
.cid-um9Gks0BaD form .form-group .form-control,
.cid-um9Gks0BaD .cid-sSq48MmVPJ form .form-group textarea {
  min-height: 40px;
}
.cid-um9Gks0BaD input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  overflow: hidden;
  height: 7px;
}
.cid-um9Gks0BaD input[type="range"]::-webkit-slider-runnable-track {
  height: 7px;
  background-color: #ffffff;
}
.cid-um9Gks0BaD input[type="range"]::-webkit-slider-thumb {
  background: #FFCC1A;
  cursor: pointer;
  width: 15px;
  height: 15px;
  -webkit-appearance: none;
  margin-top: -4px;
  box-shadow: -500px 0 0 500px #1b66ce;
}
.cid-um9Gks0BaD input[type="range"]::-moz-range-track {
  height: 7px;
  background-color: #ffffff;
}
.cid-um9Gks0BaD input[type="range"]::-moz-range-thumb {
  background: #1B66CE;
  cursor: pointer;
  height: 7px;
  border-radius: 0px;
  box-shadow: -200px 0px 0px 200px #1b66ce;
  padding: 0px;
  margin: 0px;
}
.cid-um9Gks0BaD .form-check-input:checked {
  background-color: #1B66CE;
  border-color: #1B66CE;
}
.cid-um9Gks0BaD .mbr-text {
  color: #000000;
}
.cid-um9Gks0BaD .mbr-section-title,
.cid-um9Gks0BaD .mbr-section-btn {
  color: #000000;
}
.cid-um9U4War7w {
  background-color: transparent;
}
.cid-um9U4War7w .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-um9U4War7w .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-um9U4War7w .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-um9U4War7w .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-um9U4War7w .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-um9U4War7w .menu_box .navbar.opened,
  .cid-um9U4War7w .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-um9U4War7w .navbar-dropdown {
  position: relative !important;
}
.cid-um9U4War7w .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-um9U4War7w .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-um9U4War7w .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-um9U4War7w .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-um9U4War7w .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-um9U4War7w .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #232b45;
  }
  .cid-um9U4War7w .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-um9U4War7w .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-um9U4War7w .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-um9U4War7w .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-um9U4War7w .offcanvas-body .mbr-text,
  .cid-um9U4War7w .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-um9U4War7w .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-um9U4War7w .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-um9U4War7w .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #f2ac2b;
  }
  .cid-um9U4War7w .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-um9U4War7w .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-um9U4War7w .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-um9U4War7w .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-um9U4War7w ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-um9U4War7w .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-um9U4War7w .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-um9U4War7w .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-um9U4War7w li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-um9U4War7w .lg_brand {
    margin: 0 1rem;
  }
  .cid-um9U4War7w .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-um9U4War7w .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-um9U4War7w .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-um9U4War7w .nav-item {
    margin: 0 !important;
  }
}
.cid-um9U4War7w .nav-item .nav-link {
  transition: all 0.3s ease-out;
}
.cid-um9U4War7w .nav-item .nav-link:hover,
.cid-um9U4War7w .nav-item .nav-link:focus {
  color: #702bee !important;
  text-shadow: 2px 2px 4px #702bee;
}
.cid-um9U4War7w .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-um9U4War7w .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-um9U4War7w .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-um9U4War7w .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-um9U4War7w .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-um9U4War7w .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-um9U4War7w .offcanvas_box {
    display: none;
  }
}
.cid-um9U4War7w .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-um9U4War7w .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-um9U4War7w .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-um9U4War7w .container {
  display: flex;
  margin: auto;
}
.cid-um9U4War7w .iconfont-wrapper {
  color: #f2ac2b;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-um9U4War7w .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-um9U4War7w .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-um9U4War7w .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-um9U4War7w .navbar-nav {
    margin: 0;
  }
}
.cid-um9U4War7w .dropdown-menu,
.cid-um9U4War7w .navbar.opened {
  background-color: false !important;
}
.cid-um9U4War7w .nav-item:focus,
.cid-um9U4War7w .nav-link:focus {
  outline: none;
}
.cid-um9U4War7w .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-um9U4War7w .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-um9U4War7w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-um9U4War7w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-um9U4War7w .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-um9U4War7w .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-um9U4War7w .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-um9U4War7w .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-um9U4War7w .navbar.opened {
  transition: all 0.3s;
}
.cid-um9U4War7w .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-um9U4War7w .navbar .navbar-logo img {
  max-width: 54px;
  min-height: 54px;
  object-fit: contain;
  border-radius: 100% !important;
}
.cid-um9U4War7w .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-um9U4War7w .navbar.collapsed {
  justify-content: center;
}
.cid-um9U4War7w .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-um9U4War7w .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-um9U4War7w .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-um9U4War7w .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-um9U4War7w .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-um9U4War7w .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-um9U4War7w .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-um9U4War7w .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-um9U4War7w .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-um9U4War7w .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-um9U4War7w .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-um9U4War7w .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-um9U4War7w .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-um9U4War7w .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-um9U4War7w .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-um9U4War7w .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-um9U4War7w .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-um9U4War7w .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-um9U4War7w .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-um9U4War7w .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-um9U4War7w .navbar .icons-menu {
    padding: 0;
  }
}
.cid-um9U4War7w .navbar.navbar-short {
  min-height: 60px;
}
.cid-um9U4War7w .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-um9U4War7w .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-um9U4War7w .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-um9U4War7w .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600;
}
.cid-um9U4War7w .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-um9U4War7w .dropdown-item.active,
.cid-um9U4War7w .dropdown-item:active {
  background-color: transparent;
}
.cid-um9U4War7w .navbar-expand-lg .navbar-nav .nav-link {
  padding: 2px 10px !important;
}
.cid-um9U4War7w .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-um9U4War7w .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-um9U4War7w .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-um9U4War7w ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-um9U4War7w .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-um9U4War7w button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #232b45;
}
.cid-um9U4War7w button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #f2ac2b;
}
.cid-um9U4War7w button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-um9U4War7w button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-um9U4War7w button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-um9U4War7w button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-um9U4War7w nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-um9U4War7w nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-um9U4War7w nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-um9U4War7w nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-um9U4War7w a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-um9U4War7w .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-um9U4War7w .navbar {
    height: 70px;
  }
  .cid-um9U4War7w .navbar.opened {
    height: auto;
  }
  .cid-um9U4War7w .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-um9U4War7w .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-um9U4War7w .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-um9U4War7w .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-um9U4War7w .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-um9U4War7w .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 180px;
}
.cid-um9U4War7w .navbar-caption:hover {
  color: #702bee;
}
@media (min-width: 992px) {
  .cid-um9U4War7w .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-um9U4War7w .text_widget {
  margin-bottom: 32px;
}
.cid-um9U4War7w .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-um9U4War7w .text_widget a:hover,
.cid-um9U4War7w .text_widget a:focus {
  opacity: .6;
}
.cid-um9U4War7w .mbr-section-subtitle {
  color: #f2ac2b;
  text-align: center;
}
.cid-um9U4War7w .navbar-caption {
  color: #f2ac2b;
}
.cid-um9U4War7w .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-um9U4War7w .mbr-section-subtitle,
.cid-um9U4War7w .text_widget,
.cid-um9U4War7w .mbr-section-btn {
  text-align: center;
}
.cid-um9U4War7w a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-um9U4XYiMn {
  background-image: url("../../../assets/images/fresno-party-rentals18-782x640.jpg");
}
.cid-um9U4XYiMn .row {
  flex-direction: row-reverse;
}
.cid-um9U4XYiMn .card-wrapper {
  padding-left: 32px;
  padding-right: 32px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-um9U4XYiMn .card-wrapper {
    margin-top: 2rem !important;
    padding: 0;
  }
}
.cid-um9U4XYiMn .wrapper {
  margin-top: 120px;
}
.cid-um9U4XYiMn .wrapper .mbr-iconfont {
  font-size: 3rem;
}
@media (min-width: 992px) {
  .cid-um9U4XYiMn .wrapper .display-7 {
    font-size: 23px;
  }
}
.cid-um9U4XYiMn .wrap {
  min-height: 650px;
  position: relative;
}
.cid-um9U4XYiMn .wrap img {
  width: 144px;
  position: absolute;
}
@media (max-width: 991px) {
  .cid-um9U4XYiMn .wrap {
    display: none;
  }
}
.cid-um9U4XYiMn .wrap:hover .image-1 {
  top: -80px;
  left: -80px;
}
.cid-um9U4XYiMn .wrap:hover .image-2 {
  right: 20px;
}
.cid-um9U4XYiMn .wrap:hover .image-3 {
  left: 80px;
  top: 190px;
}
.cid-um9U4XYiMn .wrap:hover .image-4 {
  top: 260px;
  right: 30px;
}
.cid-um9U4XYiMn .wrap:hover .image-5 {
  left: -80px;
}
.cid-um9U4XYiMn .wrap:hover .image-6 {
  right: -30px;
}
.cid-um9U4XYiMn .wrap:hover .image-7 {
  bottom: 10px;
  left: 70px;
}
.cid-um9U4XYiMn .image-1 {
  top: -90px;
  left: -90px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9U4XYiMn .image-2 {
  right: 0;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9U4XYiMn .image-3 {
  left: 80px;
  top: 200px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9U4XYiMn .image-4 {
  top: 250px;
  right: 20px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9U4XYiMn .image-5 {
  left: -90px;
  bottom: 100px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9U4XYiMn .image-6 {
  bottom: 0;
  right: -40px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9U4XYiMn .image-7 {
  bottom: 0;
  left: 80px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9U4XYiMn .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-um9U4XYiMn .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-um9U4ZiffG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-um9U4ZiffG .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9U4ZiffG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-um9U4ZiffG .container {
    padding: 0 15px;
  }
}
.cid-um9U4ZiffG .row {
  justify-content: center;
}
.cid-um9U4ZiffG .content-wrapper {
  padding: 100px 60px;
  border: 1px solid #373d52;
  position: relative;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-um9U4ZiffG .content-wrapper {
    padding: 80px 40px;
    display: block;
  }
}
@media (max-width: 768px) {
  .cid-um9U4ZiffG .content-wrapper {
    padding: 80px 20px;
  }
}
.cid-um9U4ZiffG .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-um9U4ZiffG .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background-color: #232b45;
  opacity: .5;
  z-index: 1;
  pointer-events: none;
}
.cid-um9U4ZiffG .content-wrapper .title-wrapper {
  max-width: 300px;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-um9U4ZiffG .content-wrapper .title-wrapper {
    max-width: 100%;
  }
}
.cid-um9U4ZiffG .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-um9U4ZiffG .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-um9U4ZiffG .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-um9U4ZiffG .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-um9U4ZiffG .content-wrapper .lists-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 60%;
}
@media (max-width: 992px) {
  .cid-um9U4ZiffG .content-wrapper .lists-wrapper {
    width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .cid-um9U4ZiffG .content-wrapper .lists-wrapper {
    display: block;
  }
}
@media (max-width: 768px) {
  .cid-um9U4ZiffG .content-wrapper .lists-wrapper .list-wrap {
    margin-bottom: 20px;
  }
}
.cid-um9U4ZiffG .content-wrapper .lists-wrapper .list-wrap .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 36px;
}
.cid-um9U4ZiffG .content-wrapper .lists-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-um9U4ZiffG .content-wrapper .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-um9U4ZiffG .content-wrapper .lists-wrapper .list-wrap .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -36px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  color: #171827;
  font-size: 16px;
}
.cid-um9U4ZiffG .mbr-section-title {
  color: #ffffff;
}
.cid-um9U4ZiffG .mbr-text {
  color: #ffffff;
}
.cid-um9U4ZiffG .list {
  color: #ffffff;
}
.cid-um9U4ZiffG .mbr-section-title,
.cid-um9U4ZiffG .mbr-section-btn {
  text-align: center;
}
.cid-um9U4ZOP2K {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
}
.cid-um9U4ZOP2K blockquote {
  margin-bottom: 0;
  border-color: #000000;
  background-color: #ffffff;
  font-style: normal;
}
.cid-um9U4ZOP2K .inform div {
  padding: .3rem .5rem 0;
  border-left: 1px solid;
}
.cid-um9U4ZOP2K .inform div:first-child {
  border-left: none;
}
.cid-um9U4ZOP2K .inform .date {
  background-color: #FFA4BC;
  border-radius: 20px;
}
.cid-um9U4ZOP2K .mbr-section-title {
  text-align: center;
}
.cid-um9U4ZOP2K .mbr-text {
  text-align: center;
}
.cid-um9U50viUw {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-um9U50viUw .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9U50viUw .item-wrapper {
  margin-bottom: 2rem;
  padding: 2.5rem 2rem;
  margin-top: 2rem;
  background: #000000;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .cid-um9U50viUw .item-wrapper {
    margin-bottom: 2rem;
    padding: 1rem;
  }
}
.cid-um9U50viUw .item-wrapper:hover {
  background: #232323;
  transform: translateY(-5px);
}
.cid-um9U50viUw .item-wrapper:hover .card-title,
.cid-um9U50viUw .item-wrapper:hover .card-text,
.cid-um9U50viUw .item-wrapper:hover .card-link,
.cid-um9U50viUw .item-wrapper:hover .card-link a {
  color: white !important;
}
.cid-um9U50viUw .item-wrapper:hover span {
  color: #702bee;
}
.cid-um9U50viUw .card-title,
.cid-um9U50viUw .card-text,
.cid-um9U50viUw .card-link,
.cid-um9U50viUw .card-link a {
  transition: all 0.3s;
}
.cid-um9U50viUw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-um9U50viUw .link-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-um9U50viUw .link-wrapper .link-icon {
  color: currentColor;
  font-size: 1rem;
  padding-left: .5rem;
  padding-bottom: 4px;
  transition: all 0.3s;
}
.cid-um9U50viUw .link-wrapper:hover {
  cursor: pointer;
}
.cid-um9U50viUw .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 5rem;
  color: #232323;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cid-um9U50viUw .iconfont-wrapper .mbr-iconfont {
    font-size: 4rem;
  }
}
.cid-um9U50viUw .card-title,
.cid-um9U50viUw .iconfont-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-um9U50viUw .card-text {
  color: #232323;
}
.cid-um9U50viUw .content-head {
  max-width: 800px;
}
.cid-um9U50viUw .mbr-section-title {
  color: #000000;
}
.cid-um9U50viUw .card-link,
.cid-um9U50viUw .link-icon,
.cid-um9U50viUw .link-align {
  color: #232323;
}
.cid-um9U52bGXw {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
}
.cid-um9U52bGXw blockquote {
  margin-bottom: 0;
  border-color: #000000;
  background-color: #ffffff;
  font-style: normal;
}
.cid-um9U52bGXw .inform div {
  padding: .3rem .5rem 0;
  border-left: 1px solid;
}
.cid-um9U52bGXw .inform div:first-child {
  border-left: none;
}
.cid-um9U52bGXw .inform .date {
  background-color: #FFA4BC;
  border-radius: 20px;
}
.cid-um9U52bGXw .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-um9U52bGXw .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-um9U52Mh6b {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(to bottom, #ffffff, #ffffff);
}
.cid-um9U52Mh6b .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9U52Mh6b .card-link {
  position: relative;
  width: fit-content;
}
.cid-um9U52Mh6b .card-link:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-um9U52Mh6b .item-wrapper {
  margin-bottom: 0rem;
  padding: 2.5rem 2rem;
  margin-top: 2rem;
  background: #000000;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .cid-um9U52Mh6b .item-wrapper {
    margin-bottom: 0rem;
    padding: 1rem;
  }
}
.cid-um9U52Mh6b .item-wrapper:hover {
  background: #232323;
  transform: translateY(-5px);
}
.cid-um9U52Mh6b .item-wrapper:hover .card-title,
.cid-um9U52Mh6b .item-wrapper:hover .card-text {
  color: white !important;
}
.cid-um9U52Mh6b .item-wrapper:hover span,
.cid-um9U52Mh6b .item-wrapper:hover .card-link,
.cid-um9U52Mh6b .item-wrapper:hover .card-link a {
  color: #702bee !important;
}
.cid-um9U52Mh6b .item-wrapper:hover .card-link:before {
  width: 0%;
}
.cid-um9U52Mh6b .card-title,
.cid-um9U52Mh6b .card-text,
.cid-um9U52Mh6b .card-link,
.cid-um9U52Mh6b .card-link a {
  transition: all 0.3s;
}
.cid-um9U52Mh6b .link-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-um9U52Mh6b .link-wrapper .link-icon {
  color: currentColor;
  font-size: 1rem;
  padding-left: .5rem;
  padding-bottom: 4px;
  transition: all 0.3s;
}
.cid-um9U52Mh6b .link-wrapper:hover {
  cursor: pointer;
}
.cid-um9U52Mh6b .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 5rem;
  color: #232323;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cid-um9U52Mh6b .iconfont-wrapper .mbr-iconfont {
    font-size: 4rem;
  }
}
.cid-um9U52Mh6b .card-title,
.cid-um9U52Mh6b .iconfont-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-um9U52Mh6b .card-text {
  color: #232323;
}
.cid-um9U52Mh6b .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-um9U52Mh6b .card-link,
.cid-um9U52Mh6b .link-icon,
.cid-um9U52Mh6b .link-align {
  color: #232323;
}
.cid-um9U52Mh6b .mbr-section-subtitle {
  text-align: left;
}
.cid-um9U53vRHh {
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-bottom: 3px solid #000000;
  background-color: #000000;
}
.cid-um9U53vRHh .row {
  flex-direction: row-reverse;
}
.cid-um9U53vRHh .card-wrapper {
  padding-left: 32px;
  padding-right: 32px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-um9U53vRHh .card-wrapper {
    margin-top: 2rem !important;
    padding: 0;
  }
}
.cid-um9U53vRHh .wrapper {
  margin-top: 120px;
}
.cid-um9U53vRHh .wrapper .mbr-iconfont {
  font-size: 3rem;
}
@media (min-width: 992px) {
  .cid-um9U53vRHh .wrapper .display-7 {
    font-size: 23px;
  }
}
.cid-um9U53vRHh .wrap {
  min-height: 650px;
  position: relative;
}
.cid-um9U53vRHh .wrap img {
  width: 144px;
  position: absolute;
}
@media (max-width: 991px) {
  .cid-um9U53vRHh .wrap {
    display: none;
  }
}
.cid-um9U53vRHh .wrap:hover .image-1 {
  top: -80px;
  left: -80px;
}
.cid-um9U53vRHh .wrap:hover .image-2 {
  right: 20px;
}
.cid-um9U53vRHh .wrap:hover .image-3 {
  left: 80px;
  top: 190px;
}
.cid-um9U53vRHh .wrap:hover .image-4 {
  top: 260px;
  right: 30px;
}
.cid-um9U53vRHh .wrap:hover .image-5 {
  left: -80px;
}
.cid-um9U53vRHh .wrap:hover .image-6 {
  right: -30px;
}
.cid-um9U53vRHh .wrap:hover .image-7 {
  bottom: 10px;
  left: 70px;
}
.cid-um9U53vRHh .image-1 {
  top: -90px;
  left: -90px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9U53vRHh .image-2 {
  right: 0;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9U53vRHh .image-3 {
  left: 80px;
  top: 200px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9U53vRHh .image-4 {
  top: 250px;
  right: 20px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9U53vRHh .image-5 {
  left: -90px;
  bottom: 100px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9U53vRHh .image-6 {
  bottom: 0;
  right: -40px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9U53vRHh .image-7 {
  bottom: 0;
  left: 80px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  will-change: transform;
}
.cid-um9U53vRHh .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-um9U53vRHh .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-um9U542mKD {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-um9U542mKD .container-fluid {
  padding: 0 3rem;
}
.cid-um9U542mKD .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-um9U542mKD .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #702bee, #ffa4bc);
  display: inline-block;
}
.cid-um9U542mKD .title-wrap {
  padding-left: 0;
  padding-right: 0;
}
.cid-um9U542mKD .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-um9U542mKD .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-um9U542mKD .image-wrap img:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-um9U542mKD .content-section {
  padding: 3rem;
}
.cid-um9U542mKD .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-um9U542mKD .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #000000;
  padding: 0rem;
  z-index: 10;
  border-radius: 15px;
  margin-bottom: 3rem;
}
@media (max-width: 1200px) {
  .cid-um9U542mKD .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-um9U542mKD .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-um9U542mKD .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-um9U542mKD .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-um9U542mKD .mbr-section-subtitle,
.cid-um9U542mKD .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-um9U542mKD .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-um9U54HLA1 {
  margin-top: -3px;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-um9U54HLA1 .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.cid-um9U54HLA1 .row {
  border-top: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
}
.cid-um9U54HLA1 .top-line {
  border-bottom: 3px solid #ffffff;
}
.cid-um9U54HLA1 .bottom-line {
  padding: 30px 0;
}
.cid-um9U54HLA1 .card-title {
  text-decoration: underline;
}
.cid-um9U54HLA1 .title {
  padding: 30px 1rem 40px;
}
.cid-um9U54HLA1 .title:hover {
  background-color: #FFA4BC;
  color: #ff403d;
}
.cid-um9U54HLA1 .title1 {
  padding: 30px 1rem 40px;
}
.cid-um9U54HLA1 .title1:hover {
  background-color: #006b54;
  color: #ffcc1a;
}
.cid-um9U54HLA1 .title2 {
  padding: 30px 1rem 40px;
}
.cid-um9U54HLA1 .title2:hover {
  background-color: #cbb6f2;
  color: #1b66ce;
}
@media (max-width: 991px) {
  .cid-um9U54HLA1 .card {
    margin-bottom: 2rem !important;
  }
  .cid-um9U54HLA1 .card-title,
  .cid-um9U54HLA1 .mbr-text {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-um9U54HLA1 .link-wrap {
    align-items: center;
  }
}
@media (min-width: 992px) {
  .cid-um9U54HLA1 .card-title,
  .cid-um9U54HLA1 .mbr-text {
    padding: 0 70px 0 70px;
  }
}
.cid-um9U54HLA1 .image-wrapper img {
  border-radius: 72px;
  width: 100%;
  max-width: 400px;
  max-height: 520px;
  object-fit: cover;
  border: 3px solid;
  border-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-um9U54HLA1 .image-wrapper img {
    max-width: 320px;
    max-height: 425px;
  }
}
.cid-um9U54HLA1 .img {
  padding-top: 72px;
  padding-bottom: 66px;
}
@media (max-width: 767px) {
  .cid-um9U54HLA1 .img {
    border-top: 3px solid #ffffff;
  }
}
@media (min-width: 768px) {
  .cid-um9U54HLA1 .img {
    border-left: 3px solid #ffffff;
  }
}
.cid-um9U54HLA1 .mbr-section-btn {
  margin-top: 65px;
  position: relative;
}
@media (max-width: 991px) {
  .cid-um9U54HLA1 .mbr-section-btn {
    margin-left: 0;
    margin-right: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-um9U54HLA1 .mbr-section-btn {
    margin-left: 0;
    margin-right: 0;
  }
}
.cid-um9U54HLA1 .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-um9U54HLA1 .btn:hover,
.cid-um9U54HLA1 .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-um9U54HLA1 .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-um9U54HLA1 .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-um9U54HLA1 .btn:hover:before,
.cid-um9U54HLA1 .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-um9U54HLA1 .btn-secondary {
  color: #000000 !important;
}
.cid-um9U54HLA1 .btn-secondary:hover {
  color: #000000 !important;
}
.cid-um9U54HLA1 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-um9U54HLA1 .card-title,
.cid-um9U54HLA1 .card-box {
  text-align: center;
}
.cid-um9U54HLA1 .mbr-text,
.cid-um9U54HLA1 .link-wrap,
.cid-um9U54HLA1 .mbr-section-btn {
  text-align: center;
}
.cid-um9U54HLA1 .mbr-text,
.cid-um9U54HLA1 .link-wrap {
  color: #ffffff;
}
.cid-um9U55mbMY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-um9U55mbMY .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-um9U55mbMY .mbr-section-btn {
    margin-left: 0;
    margin-right: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-um9U55mbMY .mbr-section-btn {
    margin-left: .5rem;
    margin-right: .5rem;
  }
}
.cid-um9U55mbMY .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-um9U55mbMY .btn:hover,
.cid-um9U55mbMY .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-um9U55mbMY .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-um9U55mbMY .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-um9U55mbMY .btn:hover:before,
.cid-um9U55mbMY .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-um9U55mbMY .btn-secondary {
  color: #000000 !important;
}
.cid-um9U55mbMY .btn-secondary:hover {
  color: #000000 !important;
}
.cid-um9U55mbMY .mbr-section-title,
.cid-um9U55mbMY .mbr-section-btn {
  color: #000000;
}
.cid-um9U55mbMY .mbr-section-subtitle {
  color: #000000;
}
.cid-um9U55Qtec {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-um9U55Qtec .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-um9U55Qtec .mbr-section-btn {
    margin-left: 0;
    margin-right: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-um9U55Qtec .mbr-section-btn {
    margin-left: .5rem;
    margin-right: .5rem;
  }
}
.cid-um9U55Qtec .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-um9U55Qtec .btn:hover,
.cid-um9U55Qtec .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-um9U55Qtec .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-um9U55Qtec .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-um9U55Qtec .btn:hover:before,
.cid-um9U55Qtec .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-um9U55Qtec .btn-secondary {
  color: #000000 !important;
}
.cid-um9U55Qtec .btn-secondary:hover {
  color: #000000 !important;
}
.cid-um9U55Qtec .mbr-section-title,
.cid-um9U55Qtec .mbr-section-btn {
  color: #ffffff;
}
.cid-um9U56hZNI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-um9U56hZNI .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9U56hZNI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-um9U56hZNI .container {
    padding: 0 15px;
  }
}
.cid-um9U56hZNI .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-um9U56hZNI .panel-group {
    padding-left: 0;
    margin-bottom: 60px;
  }
}
.cid-um9U56hZNI .panel-group .card {
  border-radius: 0 !important;
  padding: 0;
  margin-top: 40px;
}
.cid-um9U56hZNI .panel-group .card:first-child {
  margin-top: 0;
}
.cid-um9U56hZNI .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0 0 20px 0;
}
.cid-um9U56hZNI .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-um9U56hZNI .panel-group .card .card-header .panel-title .panel-title-edit {
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  position: relative;
}
.cid-um9U56hZNI .panel-group .card .card-header .panel-title .panel-title-edit::before {
  content: '/';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 30px;
  color: #ec111a;
  font-weight: 700;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.cid-um9U56hZNI .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  width: 10px;
  height: 10px;
  min-width: 10px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-left: 20px;
  transform: rotate(90deg);
  opacity: .5;
}
.cid-um9U56hZNI .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(270deg);
}
.cid-um9U56hZNI .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #ec111a;
}
.cid-um9U56hZNI .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit::before {
  left: -30px;
  opacity: 1;
}
.cid-um9U56hZNI .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 20px;
  border-bottom: 1px solid #ffffff;
}
.cid-um9U56hZNI .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 25px;
}
.cid-um9U56hZNI .panel-group .card .panel-collapse .panel-body .panel-desc {
  margin-bottom: 0;
}
.cid-um9U56hZNI .image-wrapper {
  position: relative;
  padding: 0 0 0 30px;
}
@media (max-width: 992px) {
  .cid-um9U56hZNI .image-wrapper {
    padding: 0;
    margin-bottom: 60px;
  }
}
.cid-um9U56hZNI .image-wrapper .decor-wrap {
  position: absolute;
  top: -5%;
  left: 5%;
  height: 230px;
  width: 312px;
  background-color: #ec111a;
  transform: skewX(-20deg);
}
.cid-um9U56hZNI .image-wrapper img {
  position: relative;
  z-index: 1;
  height: 730px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-um9U56hZNI .image-wrapper img {
    height: 350px;
  }
}
.cid-um9U56hZNI .panel-title-edit {
  color: #ffffff;
}
.cid-um9U56hZNI .panel-text {
  color: #ffffff;
}
.cid-um9U56hZNI .panel-desc {
  color: #ec111a;
}
.cid-um9U56XauC {
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-um9U56XauC .wrapper {
  min-height: 385px;
  position: relative;
  background-color: #000000;
  border: 3px solid #000000;
}
@media (max-width: 991px) {
  .cid-um9U56XauC .wrapper {
    padding: 5rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-um9U56XauC .wrapper {
    padding: 84px 110px 90px;
  }
}
.cid-um9U56XauC .wrapper .info {
  position: absolute;
  border-radius: 20px;
  background-color: #000000;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  font-size: 1.7em;
  font-family: "Josefin Sans";
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.cid-um9U56XauC .image-wrapper {
  position: relative;
  border-radius: 50%;
  justify-content: end;
}
@media (max-width: 991px) {
  .cid-um9U56XauC .image-wrapper {
    justify-content: center;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-um9U56XauC .image-wrapper {
    justify-content: end;
  }
}
.cid-um9U56XauC .image-wrapper img {
  object-fit: cover;
  max-width: 630px;
  max-height: 640;
  border-radius: 50%;
  border: 4px solid #000000;
  z-index: 3;
  transition: all 300ms ease;
  will-change: transform;
}
@media (max-width: 991px) {
  .cid-um9U56XauC .image-wrapper img {
    max-width: 370px;
    max-height: 370px;
  }
}
.cid-um9U56XauC .image-wrapper .hover {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: -20px;
  width: 100%;
  max-width: 630px;
  height: 100%;
  will-change: transform;
  border: 4px solid #000000 !important;
  border-radius: 50% !important;
  transition: all 300ms ease;
}
@media (max-width: 992px) {
  .cid-um9U56XauC .image-wrapper .hover {
    max-width: 370px;
    left: 110px;
  }
}
@media (max-width: 767px) {
  .cid-um9U56XauC .image-wrapper .hover {
    left: -10px;
    top: 10px;
  }
}
.cid-um9U56XauC .image-wrapper:hover img,
.cid-um9U56XauC .image-wrapper:focus img {
  transform: translate(-5px, 10px);
}
@media (max-width: 767px) {
  .cid-um9U56XauC .image-wrapper:hover img,
  .cid-um9U56XauC .image-wrapper:focus img {
    transform: translate(-2px, 10px);
  }
}
.cid-um9U56XauC .image-wrapper:hover .hover,
.cid-um9U56XauC .image-wrapper:focus .hover {
  left: -15px;
  top: 15px;
}
@media (max-width: 992px) {
  .cid-um9U56XauC .image-wrapper:hover .hover,
  .cid-um9U56XauC .image-wrapper:focus .hover {
    left: 120px;
  }
}
@media (max-width: 767px) {
  .cid-um9U56XauC .image-wrapper:hover .hover,
  .cid-um9U56XauC .image-wrapper:focus .hover {
    left: -7px;
  }
}
.cid-um9U56XauC .hover0 {
  background-color: #1B66CE;
}
.cid-um9U56XauC .hover1 {
  background-color: #CBB6F2;
}
.cid-um9U56XauC .hover2 {
  background-color: #FFA4BC;
}
@media (min-width: 992px) {
  .cid-um9U56XauC .text-wrapper img {
    margin: 0 auto;
  }
}
.cid-um9U56XauC .mbr-title,
.cid-um9U56XauC .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-um9U56XauC .mbr-title,
  .cid-um9U56XauC .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-um9U56XauC .mbr-text {
    text-align: center;
  }
}
.cid-um9U56XauC .mbr-info {
  text-align: right;
}
.cid-um9U57yGdh {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
}
.cid-um9U57yGdh blockquote {
  margin-bottom: 0;
  border-color: #000000;
  background-color: #ffffff;
  font-style: normal;
}
.cid-um9U57yGdh .inform div {
  padding: .3rem .5rem 0;
  border-left: 1px solid;
}
.cid-um9U57yGdh .inform div:first-child {
  border-left: none;
}
.cid-um9U57yGdh .inform .date {
  background-color: #FFA4BC;
  border-radius: 20px;
}
.cid-um9U57yGdh .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-um9U57yGdh .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-um9X1nj13S {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-um9X1nj13S .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9X1nj13S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-um9X1nj13S .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-um9X1nj13S .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-um9X1nj13S .container {
    padding: 0 20px;
  }
}
.cid-um9X1nj13S .row {
  justify-content: space-between;
}
.cid-um9X1nj13S .image-wrapper {
  padding-left: 100px;
}
@media (max-width: 1200px) {
  .cid-um9X1nj13S .image-wrapper {
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .cid-um9X1nj13S .image-wrapper {
    padding-left: 0;
    margin-bottom: 40px;
  }
}
.cid-um9X1nj13S .image-wrapper .image-wrap {
  padding: 0 0 0 116px;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-um9X1nj13S .image-wrapper .image-wrap {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-um9X1nj13S .image-wrapper .image-wrap {
    margin-bottom: 40px;
  }
}
.cid-um9X1nj13S .image-wrapper .image-wrap img {
  height: 680px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-um9X1nj13S .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-um9X1nj13S .content-wrapper {
  padding: 0 100px 0 100px;
  position: sticky;
  top: 20px;
}
@media (max-width: 1200px) {
  .cid-um9X1nj13S .content-wrapper {
    padding: 0 50px 0 0;
  }
}
@media (max-width: 992px) {
  .cid-um9X1nj13S .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-um9X1nj13S .content-wrapper .content-wrap {
  padding-right: 116px;
}
@media (max-width: 1440px) {
  .cid-um9X1nj13S .content-wrapper .content-wrap {
    padding-right: 0;
  }
}
.cid-um9X1nj13S .content-wrapper .content-wrap .mbr-text {
  font-family: "Source Serif 4", sans-serif !important;
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 0;
}
.cid-um9X1nj13S .content-wrapper .content-wrap .mbr-text::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 80%;
  background-color: #1e1d1c;
  opacity: .2;
}
.cid-um9X1nj13S .mbr-text {
  color: #1e1d1c;
}
.cid-um9X1nj13S .mbr-section-title {
  color: #1e1d1c;
}
.cid-um9U581GEM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-um9U581GEM .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9U581GEM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-um9U581GEM .content-wrapper {
  padding: 80px 90px;
  background-color: #000000;
  display: flex;
}
@media (max-width: 1199px) {
  .cid-um9U581GEM .content-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-um9U581GEM .content-wrapper {
    padding: 32px 16px;
  }
}
.cid-um9U581GEM .content-wrapper .content-wrap {
  width: 45%;
  padding-right: 48px;
}
@media (max-width: 1199px) {
  .cid-um9U581GEM .content-wrapper .content-wrap {
    margin-bottom: 32px;
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-um9U581GEM .content-wrapper .content-wrap {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-um9U581GEM .content-wrapper .content-wrap .text-wrapper {
    position: static;
    padding: 0;
  }
}
.cid-um9U581GEM .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.cid-um9U581GEM .content-wrapper .content-wrap .text-wrapper .mbr-section-title span {
  padding: 0 10px;
  border-radius: 8rem;
  background-color: #ffe66d;
}
@media (max-width: 992px) {
  .cid-um9U581GEM .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-um9U581GEM .content-wrapper .content-wrap .text-wrapper .mbr-text {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-um9U581GEM .content-wrapper .panel-group {
  width: 55%;
}
@media (max-width: 1199px) {
  .cid-um9U581GEM .content-wrapper .panel-group {
    width: 100%;
  }
}
.cid-um9U581GEM .content-wrapper .panel-group .card {
  position: relative;
  padding: 24px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  margin-top: 16px;
  border: 3px solid #702bee;
  box-shadow: 4px 4px 0 0 #702bee;
  background-color: #f7fff7;
}
@media (max-width: 992px) {
  .cid-um9U581GEM .content-wrapper .panel-group .card {
    padding: 16px;
  }
}
.cid-um9U581GEM .content-wrapper .panel-group .card:first-child {
  margin-top: 0;
}
.cid-um9U581GEM .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-um9U581GEM .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-um9U581GEM .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-um9U581GEM .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 45px;
  height: 45px;
  min-width: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.cid-um9U581GEM .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 26px;
  color: #702bee;
}
.cid-um9U581GEM .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-um9U581GEM .content-wrapper .panel-group .card .panel-collapse .panel-body {
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-um9U581GEM .content-wrapper .panel-group .card .panel-collapse .panel-body {
    margin-top: 16px;
  }
}
.cid-um9U581GEM .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-um9U581GEM .mbr-section-title {
  color: #050f0f;
}
.cid-um9U581GEM .mbr-text {
  color: #050f0f;
}
.cid-um9U581GEM .panel-title-edit {
  color: #050f0f;
}
.cid-um9U581GEM .panel-text {
  color: #050f0f;
}
.cid-um9U581GEM .mbr-section-title,
.cid-um9U581GEM .icon-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-um9U58zEvT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #becdc2;
  flex-direction: column;
  justify-content: center;
}
.cid-um9U58zEvT .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9U58zEvT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-um9U58zEvT .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-um9U58zEvT .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-um9U58zEvT .container {
    padding: 0 16px;
  }
}
.cid-um9U58zEvT .google-map iframe {
  border-radius: 0 !important;
  height: 600px;
}
@media (max-width: 992px) {
  .cid-um9U58zEvT .google-map iframe {
    height: 350px;
  }
}
.cid-um9U59c2ot {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
  background-color: #b6f2f2;
}
.cid-um9U59c2ot .media-wrap {
  padding: 0;
}
.cid-um9U59c2ot .media-wrap img {
  background-color: #000000;
  padding: 0;
  border-radius: 50%;
}
.cid-um9U59c2ot .media-wrap img:hover {
  background-color: #1B66CE;
}
@media (max-width: 767px) {
  .cid-um9U59c2ot .row {
    text-align: center;
  }
  .cid-um9U59c2ot .social-row {
    justify-content: center;
  }
  .cid-um9U59c2ot .logo {
    margin: 0 auto;
  }
}
.cid-um9U59c2ot .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-um9U59c2ot .content {
    padding: 1px 12px 5px;
  }
}
.cid-um9U59c2ot .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-um9U59c2ot .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-um9U59c2ot .list {
    margin-bottom: 0rem;
  }
}
.cid-um9U59c2ot .list .item-wrap {
  margin-top: 3.9px;
  margin-bottom: 3.9px;
}
@media (min-width: 992px) {
  .cid-um9U59c2ot .bd {
    border-left: 3px solid #000;
  }
}
.cid-um9U59c2ot .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-um9U59c2ot .mbr-iconfont {
  color: black;
  transition: all .5s;
}
.cid-um9U59c2ot .mbr-iconfont:hover {
  color: #1B66CE;
}
.cid-um9U59c2ot .margin {
  margin-top: 80px;
}
@media (max-width: 991px) {
  .cid-um9U59c2ot .margin {
    margin-top: 20px;
  }
}
.cid-um9U59c2ot .link {
  color: #000000;
}
.cid-um9U59c2ot .link a:hover {
  color: #1B66CE !important;
}
.cid-um9U59c2ot .mbr-form-container {
  margin-top: 12px;
}
.cid-um9U59c2ot .form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  max-width: 600px;
}
.cid-um9U59c2ot .link a {
  color: #fcf9f2;
}
.cid-um9U59c2ot .dragArea {
  justify-content: center;
}
.cid-um9U59c2ot form .row {
  margin: 0;
}
.cid-um9U59c2ot form .form-group {
  padding: 0;
  flex-grow: 1;
}
.cid-um9U59c2ot form .form-group .form-control,
.cid-um9U59c2ot form .form-group textarea {
  height: 40px;
  padding: 0;
  padding-left: 34px;
  padding-right: 34px;
  border-radius: 10px 0 0 10px;
  border: 3px solid #000 !important;
  background: transparent;
  box-shadow: none;
  min-height: auto;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .cid-um9U59c2ot form .form-group .form-control,
  .cid-um9U59c2ot form .form-group textarea {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-um9U59c2ot form .form-group .form-control:active,
.cid-um9U59c2ot form .form-group textarea:active,
.cid-um9U59c2ot form .form-group .form-control:focus,
.cid-um9U59c2ot form .form-group textarea:focus {
  border: 2px solid #1B66CE !important;
  border-right: none !important;
  background: transparent !important;
  box-shadow: none !important;
}
.cid-um9U59c2ot form .form-control::placeholder {
  color: #000;
}
.cid-um9U59c2ot form .form-control::-webkit-input-placeholder {
  color: #000;
}
.cid-um9U59c2ot form .form-control::-moz-placeholder {
  color: #000;
}
.cid-um9U59c2ot form .form-control-label,
.cid-um9U59c2ot form .form-check-label {
  color: #000;
}
.cid-um9U59c2ot form input::-webkit-clear-button {
  display: none;
}
.cid-um9U59c2ot form input::-webkit-inner-spin-button {
  display: none;
}
.cid-um9U59c2ot form input::-webkit-outer-spin-button {
  display: none;
}
.cid-um9U59c2ot form input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-um9U59c2ot form .mbr-section-btn {
  border: 3px solid #000 !important;
  border-radius: 0 10px 10px 0;
  margin-left: -3px;
  width: auto;
  height: 40px;
  overflow: hidden;
  padding: 0;
  margin-bottom: 1.2rem;
}
.cid-um9U59c2ot form .mbr-section-btn .btn {
  color: #01152f !important;
  padding: 3px 30px 0;
}
@media (max-width: 767px) {
  .cid-um9U59c2ot form .mbr-section-btn .btn {
    padding: 0 1em;
  }
}
.cid-um9U59c2ot form .mbr-section-btn .btn:hover {
  background-color: #FFA4BC !important;
}
.cid-um9U59c2ot form .form-group .form-control,
.cid-um9U59c2ot .cid-sSq48MmVPJ form .form-group textarea {
  min-height: 40px;
}
.cid-um9U59c2ot input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  overflow: hidden;
  height: 7px;
}
.cid-um9U59c2ot input[type="range"]::-webkit-slider-runnable-track {
  height: 7px;
  background-color: #ffffff;
}
.cid-um9U59c2ot input[type="range"]::-webkit-slider-thumb {
  background: #FFCC1A;
  cursor: pointer;
  width: 15px;
  height: 15px;
  -webkit-appearance: none;
  margin-top: -4px;
  box-shadow: -500px 0 0 500px #1b66ce;
}
.cid-um9U59c2ot input[type="range"]::-moz-range-track {
  height: 7px;
  background-color: #ffffff;
}
.cid-um9U59c2ot input[type="range"]::-moz-range-thumb {
  background: #1B66CE;
  cursor: pointer;
  height: 7px;
  border-radius: 0px;
  box-shadow: -200px 0px 0px 200px #1b66ce;
  padding: 0px;
  margin: 0px;
}
.cid-um9U59c2ot .form-check-input:checked {
  background-color: #1B66CE;
  border-color: #1B66CE;
}
.cid-um9U59c2ot .mbr-text {
  color: #000000;
}
.cid-um9U59c2ot .mbr-section-title,
.cid-um9U59c2ot .mbr-section-btn {
  color: #000000;
}
