body {
  font-family: IBM Plex Sans;
}
.display-1 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 3.8rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 6.08rem;
}
.display-2 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 3rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.5rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.04rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.98rem + (3.8 - 1.98) * ((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.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #ff8a73 !important;
}
.bg-success {
  background-color: #bfceff !important;
}
.bg-info {
  background-color: #57468b !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff8a73 !important;
  border-color: #ff8a73 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #ff4a26 !important;
  border-color: #ff4a26 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ff4a26 !important;
  border-color: #ff4a26 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #5580ff !important;
  border-color: #5580ff !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #0847ff !important;
  border-color: #0847ff !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0847ff !important;
  border-color: #0847ff !important;
}
.btn-info,
.btn-info:active {
  background-color: #57468b !important;
  border-color: #57468b !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #372c58 !important;
  border-color: #372c58 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #372c58 !important;
  border-color: #372c58 !important;
}
.btn-success,
.btn-success:active {
  background-color: #bfceff !important;
  border-color: #bfceff !important;
  color: #002dbf !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #002dbf !important;
  background-color: #7293ff !important;
  border-color: #7293ff !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #002dbf !important;
  background-color: #7293ff !important;
  border-color: #7293ff !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #ff350d;
  color: #ff350d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #ff8a73;
  border-color: #ff8a73;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff8a73 !important;
  border-color: #ff8a73 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #003cee;
  color: #003cee;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #5580ff;
  border-color: #5580ff;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #5580ff !important;
  border-color: #5580ff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #2d2447;
  color: #2d2447;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #57468b;
  border-color: #57468b;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #57468b !important;
  border-color: #57468b !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #5980ff;
  color: #5980ff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #002dbf;
  background-color: #bfceff;
  border-color: #bfceff;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #002dbf !important;
  background-color: #bfceff !important;
  border-color: #bfceff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ff8a73 !important;
}
.text-secondary {
  color: #5580ff !important;
}
.text-success {
  color: #bfceff !important;
}
.text-info {
  color: #57468b !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #ff350d !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #003cee !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #5980ff !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #2d2447 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #57468b;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff8a73;
  border-color: #ff8a73;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ff8a73;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #9a8cc5;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #ff8a73;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #ff8a73;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #ff8a73;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff8a73;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff8a73;
  border-bottom-color: #ff8a73;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ff8a73 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #5580ff !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ff8a73' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.3;
}
.cid-sGmGtflO0C {
  padding-top: 150px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/midnght-fiesta-1500x1335.jpg");
  position: relative;
  overflow: hidden;
}
.cid-sGmGtflO0C svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-sGmGtflO0C #e2_shape {
  fill: #ffffff !important;
}
.cid-sGmGtflO0C img {
  width: 80%;
  border-radius: 10px;
  margin: auto;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 576px) {
  .cid-sGmGtflO0C img {
    width: 90%!important;
  }
}
.cid-sGmGtflO0C H1 {
  color: #ffffff;
}
.cid-sGmGtflO0C .mbr-text,
.cid-sGmGtflO0C .mbr-section-btn {
  color: #232323;
}
.cid-sGmGthudGs {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sGmGthudGs img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-sGmGthudGs H1 {
  color: #465052;
  text-align: center;
}
.cid-sGmGthudGs .mbr-text,
.cid-sGmGthudGs .mbr-section-btn {
  color: #716c80;
}
.cid-sGmGthudGs H3 {
  color: #716c80;
}
.cid-sGmGthudGs .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-sGmGthudGs .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-sGmGthudGs .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-sGmGthudGs .link:hover {
  color: #ff8a73 !important;
}
.cid-sGmGthudGs .link:hover .link-ico {
  color: #ff8a73 !important;
  padding-left: 10px;
}
.cid-sGmGthudGs DIV {
  color: #57468b;
}
.cid-sGmGthudGs .mbr-text,
.cid-sGmGthudGs .media-content {
  color: #465052;
}
.cid-sGmH9kLdGA {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sGmH9kLdGA .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sGmH9kLdGA H6 {
  text-align: center;
}
.cid-sGmH9kLdGA P {
  text-align: center;
}
.cid-sGmGtiEBnA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fafafa;
}
.cid-sGmGtiEBnA .container {
  max-width: 1400px;
}
.cid-sGmGtiEBnA .mbr-text {
  color: #818181;
  text-align: center;
}
.cid-sGnq2vvuif .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-sGnq2vvuif .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-sGnq2vvuif .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sGnq2vvuif .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGnq2vvuif .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sGnq2vvuif .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sGnq2vvuif .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGnq2vvuif .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sGnq2vvuif .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sGnq2vvuif .navbar.collapsed.opened .navbar-collapse.show,
.cid-sGnq2vvuif .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sGnq2vvuif .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sGnq2vvuif .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sGnq2vvuif .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGnq2vvuif .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGnq2vvuif .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sGnq2vvuif .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGnq2vvuif .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGnq2vvuif .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sGnq2vvuif .navbar {
    flex-wrap: nowrap;
  }
  .cid-sGnq2vvuif .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sGnq2vvuif .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGnq2vvuif .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sGnq2vvuif .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sGnq2vvuif .navbar.opened .navbar-collapse.show,
  .cid-sGnq2vvuif .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sGnq2vvuif .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sGnq2vvuif .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGnq2vvuif .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGnq2vvuif .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sGnq2vvuif .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGnq2vvuif .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGnq2vvuif .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGnq2vvuif .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sGnq2vvuif .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sGnq2vvuif .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sGnq2vvuif .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGnq2vvuif .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGnq2vvuif .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGnq2vvuif .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGnq2vvuif .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGnq2vvuif .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGnq2vvuif .dropdown-item.active,
.cid-sGnq2vvuif .dropdown-item:active {
  background-color: transparent;
}
.cid-sGnq2vvuif .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sGnq2vvuif .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGnq2vvuif .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGnq2vvuif .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sGnq2vvuif .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGnq2vvuif .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGnq2vvuif ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGnq2vvuif .navbar-buttons {
  text-align: center;
}
.cid-sGnq2vvuif button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGnq2vvuif button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sGnq2vvuif button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGnq2vvuif button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGnq2vvuif button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGnq2vvuif button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGnq2vvuif nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGnq2vvuif nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGnq2vvuif nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGnq2vvuif nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGnq2vvuif .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGnq2vvuif a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sGnq2vvuif a.nav-link:focus {
  outline: none;
}
.cid-sGnq2vvuif .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sGnq2vvuif .nav-link:hover,
.cid-sGnq2vvuif .dropdown-item:hover {
  color: #ff3366 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGnq2vvuif .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sGnq2vvuif .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sGnq2vvuif .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-sGnq2vvuif .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-sGnq2vvuif .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sGnq2vvuif .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGnq2vvuif .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sGnq2vvuif .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sGnq2vvuif .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGnq2vvuif .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sGnq2vvuif .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sGnq2vvuif .navbar.collapsed.opened .navbar-collapse.show,
.cid-sGnq2vvuif .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sGnq2vvuif .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sGnq2vvuif .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sGnq2vvuif .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGnq2vvuif .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGnq2vvuif .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sGnq2vvuif .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGnq2vvuif .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGnq2vvuif .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sGnq2vvuif .navbar {
    flex-wrap: nowrap;
  }
  .cid-sGnq2vvuif .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sGnq2vvuif .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGnq2vvuif .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sGnq2vvuif .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sGnq2vvuif .navbar.opened .navbar-collapse.show,
  .cid-sGnq2vvuif .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sGnq2vvuif .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sGnq2vvuif .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGnq2vvuif .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGnq2vvuif .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sGnq2vvuif .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGnq2vvuif .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGnq2vvuif .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGnq2vvuif .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sGnq2vvuif .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sGnq2vvuif .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sGnq2vvuif .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGnq2vvuif .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGnq2vvuif .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGnq2vvuif .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGnq2vvuif .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGnq2vvuif .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGnq2vvuif .dropdown-item.active,
.cid-sGnq2vvuif .dropdown-item:active {
  background-color: transparent;
}
.cid-sGnq2vvuif .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sGnq2vvuif .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGnq2vvuif .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGnq2vvuif .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sGnq2vvuif .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGnq2vvuif .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGnq2vvuif ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGnq2vvuif .navbar-buttons {
  text-align: center;
}
.cid-sGnq2vvuif button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGnq2vvuif button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sGnq2vvuif button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGnq2vvuif button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGnq2vvuif button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGnq2vvuif button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGnq2vvuif nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGnq2vvuif nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGnq2vvuif nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGnq2vvuif nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGnq2vvuif .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGnq2vvuif a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sGnq2vvuif a.nav-link:focus {
  outline: none;
}
.cid-sGnq2vvuif .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sGnq2vvuif .nav-link:hover,
.cid-sGnq2vvuif .dropdown-item:hover {
  color: #ff3366 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGnq2vvuif .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sGnq2vvuif .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rleLuPvnKO {
  padding-top: 150px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/midnght-fiesta-1500x1335.jpg");
  position: relative;
  overflow: hidden;
}
.cid-rleLuPvnKO svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-rleLuPvnKO #e2_shape {
  fill: #ffffff !important;
}
.cid-rleLuPvnKO img {
  width: 80%;
  border-radius: 10px;
  margin: auto;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 576px) {
  .cid-rleLuPvnKO img {
    width: 90%!important;
  }
}
.cid-rleLuPvnKO H1 {
  color: #ffffff;
}
.cid-rleLuPvnKO .mbr-text,
.cid-rleLuPvnKO .mbr-section-btn {
  color: #232323;
}
.cid-sD7QV43IeU {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sD7QV43IeU .mbr-text,
.cid-sD7QV43IeU .ornament {
  color: #716c80;
}
.cid-sGm8gSM3G6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sGm8gSM3G6 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-sGm8gSM3G6 H1 {
  color: #465052;
  text-align: left;
}
.cid-sGm8gSM3G6 .mbr-text,
.cid-sGm8gSM3G6 .mbr-section-btn {
  color: #716c80;
}
.cid-sGm8gSM3G6 H3 {
  color: #716c80;
}
.cid-sGm8gSM3G6 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-sGm8gSM3G6 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-sGm8gSM3G6 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-sGm8gSM3G6 .link:hover {
  color: #ff8a73 !important;
}
.cid-sGm8gSM3G6 .link:hover .link-ico {
  color: #ff8a73 !important;
  padding-left: 10px;
}
.cid-sGm8gSM3G6 DIV {
  color: #57468b;
}
.cid-rlf4PtSi5X {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rlf4PtSi5X .mbr-text {
  color: #465052;
}
.cid-rlf4PtSi5X .card-img span {
  font-size: 96px;
  color: #149dcc;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-rlf4PtSi5X .card-img .img1 {
  background-color: #ff3366;
}
.cid-rlf4PtSi5X .card-img .img2 {
  background-color: #ff3366;
}
.cid-rlf4PtSi5X .card-img .img3 {
  background-color: #ff3366;
}
.cid-rlf4PtSi5X .card-img .img4 {
  background-color: #ff8a73;
}
.cid-rlf4PtSi5X .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1.5rem !important;
}
.cid-rlf4PtSi5X .card {
  display: flex;
  flex-direction: row;
  transition: all 0.3s;
  padding: 2rem 1.5rem !important;
}
.cid-rlf4PtSi5X .card:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  transform: translateY(-1.5rem);
}
.cid-rlf4PtSi5X .card-title,
.cid-rlf4PtSi5X .card-img {
  color: #57468b;
}
@media (max-width: 576px) {
  .cid-rlf4PtSi5X .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-rlf4PtSi5X .card .card-img {
    margin-bottom: 1rem;
  }
  .cid-rlf4PtSi5X .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-rlf4PtSi5X .card-img span {
    margin-right: 0rem;
  }
}
.cid-rlf4PtSi5X .card-title {
  color: #465052;
}
.cid-sD7PvwUERu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sD7PvwUERu .mbr-iconfont {
  font-size: 4rem;
  color: #fff;
  position: absolute;
  transition: all 0.3s;
}
.cid-sD7PvwUERu .card-wrapper {
  transition: all 1s;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  flex-direction: column;
}
.cid-sD7PvwUERu .card {
  cursor: pointer;
}
.cid-sD7PvwUERu .card:hover .card-title {
  transform: scale(0.9);
}
.cid-sD7PvwUERu .card:hover .mbr-iconfont {
  animation: icons-zoom 0.25s ease-out;
}
.cid-sD7PvwUERu .card-box {
  background: #ff3366;
  width: 155px;
  height: 155px;
  padding: 2rem;
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 50%;
  color: #868378;
  transition: all 0.1s;
}
.cid-sD7PvwUERu .mbr-section-title {
  color: #b8d94f;
}
.cid-sD7PvwUERu .mbr-section-subtitle {
  color: #47a15d;
}
.cid-sD7PvwUERu .subtitle-padding {
  padding-bottom: 3rem;
}
.cid-sD7PvwUERu .card-title {
  color: #868378;
  transition: all 0.3s;
}
.cid-sD7PvwUERu .card-title,
.cid-sD7PvwUERu .card-box {
  text-align: center;
  color: #716c80;
}
@keyframes icons-zoom {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.75, 1.75);
  }
}
.cid-sGbS0dS9lA {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sGbS0dS9lA img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-sGbS0dS9lA H1 {
  color: #465052;
  text-align: left;
}
.cid-sGbS0dS9lA .mbr-text,
.cid-sGbS0dS9lA .mbr-section-btn {
  color: #716c80;
}
.cid-sGbS0dS9lA H3 {
  color: #716c80;
}
.cid-sGbS0dS9lA .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-sGbS0dS9lA .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-sGbS0dS9lA .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-sGbS0dS9lA .link:hover {
  color: #ff8a73 !important;
}
.cid-sGbS0dS9lA .link:hover .link-ico {
  color: #ff8a73 !important;
  padding-left: 10px;
}
.cid-sGbS0dS9lA DIV {
  color: #57468b;
}
.cid-sGbS0dS9lA .mbr-text,
.cid-sGbS0dS9lA .media-content {
  color: #465052;
}
.cid-sGbV1cWu0X {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sGbV1cWu0X .mbr-iconfont {
  font-size: 4rem;
  color: #fff;
  position: absolute;
  transition: all 0.3s;
}
.cid-sGbV1cWu0X .card-wrapper {
  transition: all 1s;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  flex-direction: column;
}
.cid-sGbV1cWu0X .card {
  cursor: pointer;
}
.cid-sGbV1cWu0X .card:hover .card-title {
  transform: scale(0.9);
}
.cid-sGbV1cWu0X .card:hover .mbr-iconfont {
  animation: icons-zoom 0.25s ease-out;
}
.cid-sGbV1cWu0X .card-box {
  background: #ff3366;
  width: 155px;
  height: 155px;
  padding: 2rem;
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 50%;
  color: #868378;
  transition: all 0.1s;
}
.cid-sGbV1cWu0X .mbr-section-title {
  color: #b8d94f;
}
.cid-sGbV1cWu0X .mbr-section-subtitle {
  color: #47a15d;
}
.cid-sGbV1cWu0X .subtitle-padding {
  padding-bottom: 3rem;
}
.cid-sGbV1cWu0X .card-title {
  color: #868378;
  transition: all 0.3s;
}
.cid-sGbV1cWu0X .card-title,
.cid-sGbV1cWu0X .card-box {
  text-align: center;
  color: #716c80;
}
@keyframes icons-zoom {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.75, 1.75);
  }
}
.cid-sGr1F68BaG {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sGr1F68BaG img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-sGr1F68BaG H1 {
  color: #465052;
}
.cid-sGr1F68BaG .mbr-text,
.cid-sGr1F68BaG .mbr-section-btn {
  color: #716c80;
}
.cid-sGr1F68BaG H3 {
  color: #716c80;
}
.cid-sGr1F68BaG .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-sGr1F68BaG .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-sGr1F68BaG .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-sGr1F68BaG .link:hover {
  color: #ff8a73 !important;
}
.cid-sGr1F68BaG .link:hover .link-ico {
  color: #ff8a73 !important;
  padding-left: 10px;
}
.cid-sGr1F68BaG DIV {
  color: #57468b;
}
.cid-sGr1F68BaG .mbr-text,
.cid-sGr1F68BaG .media-content {
  color: #465052;
}
.cid-sGr1ZuYW3V {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sGr1ZuYW3V .mbr-iconfont {
  font-size: 4rem;
  color: #fff;
  position: absolute;
  transition: all 0.3s;
}
.cid-sGr1ZuYW3V .card-wrapper {
  transition: all 1s;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  flex-direction: column;
}
.cid-sGr1ZuYW3V .card {
  cursor: pointer;
}
.cid-sGr1ZuYW3V .card:hover .card-title {
  transform: scale(0.9);
}
.cid-sGr1ZuYW3V .card:hover .mbr-iconfont {
  animation: icons-zoom 0.25s ease-out;
}
.cid-sGr1ZuYW3V .card-box {
  background: #ff3366;
  width: 155px;
  height: 155px;
  padding: 2rem;
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 50%;
  color: #868378;
  transition: all 0.1s;
}
.cid-sGr1ZuYW3V .mbr-section-title {
  color: #b8d94f;
}
.cid-sGr1ZuYW3V .mbr-section-subtitle {
  color: #47a15d;
}
.cid-sGr1ZuYW3V .subtitle-padding {
  padding-bottom: 3rem;
}
.cid-sGr1ZuYW3V .card-title {
  color: #868378;
  transition: all 0.3s;
}
.cid-sGr1ZuYW3V .card-title,
.cid-sGr1ZuYW3V .card-box {
  text-align: center;
  color: #716c80;
}
@keyframes icons-zoom {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.75, 1.75);
  }
}
.cid-rlfiB5X4py {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rlfiB5X4py img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-rlfiB5X4py H1 {
  color: #465052;
  text-align: left;
}
.cid-rlfiB5X4py .mbr-text,
.cid-rlfiB5X4py .mbr-section-btn {
  color: #716c80;
}
.cid-rlfiB5X4py H3 {
  color: #716c80;
}
.cid-rlfiB5X4py .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-rlfiB5X4py .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-rlfiB5X4py .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-rlfiB5X4py .link:hover {
  color: #ff8a73 !important;
}
.cid-rlfiB5X4py .link:hover .link-ico {
  color: #ff8a73 !important;
  padding-left: 10px;
}
.cid-rlfiB5X4py DIV {
  color: #57468b;
}
.cid-rlfiB5X4py .mbr-text,
.cid-rlfiB5X4py .media-content {
  color: #465052;
}
.cid-sD7YTlJAwG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fafafa;
}
.cid-sD7YTlJAwG .container {
  max-width: 1400px;
}
.cid-sD7YTlJAwG .mbr-text {
  color: #818181;
  text-align: center;
}
.cid-sGr5JBAflZ {
  padding-top: 150px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/midnght-fiesta-1500x1335.jpg");
  position: relative;
  overflow: hidden;
}
.cid-sGr5JBAflZ svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-sGr5JBAflZ #e2_shape {
  fill: #ffffff !important;
}
.cid-sGr5JBAflZ img {
  width: 80%;
  border-radius: 10px;
  margin: auto;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 576px) {
  .cid-sGr5JBAflZ img {
    width: 90%!important;
  }
}
.cid-sGr5JBAflZ H1 {
  color: #ffffff;
}
.cid-sGr5JBAflZ .mbr-text,
.cid-sGr5JBAflZ .mbr-section-btn {
  color: #232323;
}
.cid-sGr5JBY4Vc {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sGr5JBY4Vc img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-sGr5JBY4Vc H1 {
  color: #465052;
  text-align: center;
}
.cid-sGr5JBY4Vc .mbr-text,
.cid-sGr5JBY4Vc .mbr-section-btn {
  color: #716c80;
}
.cid-sGr5JBY4Vc H3 {
  color: #716c80;
}
.cid-sGr5JBY4Vc .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-sGr5JBY4Vc .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-sGr5JBY4Vc .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-sGr5JBY4Vc .link:hover {
  color: #ff8a73 !important;
}
.cid-sGr5JBY4Vc .link:hover .link-ico {
  color: #ff8a73 !important;
  padding-left: 10px;
}
.cid-sGr5JBY4Vc DIV {
  color: #57468b;
}
.cid-sGr5JBY4Vc .mbr-text,
.cid-sGr5JBY4Vc .media-content {
  color: #465052;
}
.cid-sGr5JCgwVq {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sGr5JCgwVq .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sGr5JCgwVq H6 {
  text-align: center;
}
.cid-sGr5JCgwVq P {
  text-align: center;
}
.cid-sGr5JCN530 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fafafa;
}
.cid-sGr5JCN530 .container {
  max-width: 1400px;
}
.cid-sGr5JCN530 .mbr-text {
  color: #818181;
  text-align: center;
}
.cid-sGr5JD56qA .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-sGr5JD56qA .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-sGr5JD56qA .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sGr5JD56qA .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGr5JD56qA .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sGr5JD56qA .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sGr5JD56qA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGr5JD56qA .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sGr5JD56qA .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sGr5JD56qA .navbar.collapsed.opened .navbar-collapse.show,
.cid-sGr5JD56qA .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sGr5JD56qA .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sGr5JD56qA .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sGr5JD56qA .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGr5JD56qA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGr5JD56qA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sGr5JD56qA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGr5JD56qA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGr5JD56qA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sGr5JD56qA .navbar {
    flex-wrap: nowrap;
  }
  .cid-sGr5JD56qA .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sGr5JD56qA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGr5JD56qA .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sGr5JD56qA .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sGr5JD56qA .navbar.opened .navbar-collapse.show,
  .cid-sGr5JD56qA .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sGr5JD56qA .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sGr5JD56qA .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGr5JD56qA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGr5JD56qA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sGr5JD56qA .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGr5JD56qA .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGr5JD56qA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGr5JD56qA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sGr5JD56qA .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sGr5JD56qA .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sGr5JD56qA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGr5JD56qA .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGr5JD56qA .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGr5JD56qA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGr5JD56qA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGr5JD56qA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGr5JD56qA .dropdown-item.active,
.cid-sGr5JD56qA .dropdown-item:active {
  background-color: transparent;
}
.cid-sGr5JD56qA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sGr5JD56qA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGr5JD56qA .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGr5JD56qA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sGr5JD56qA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGr5JD56qA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGr5JD56qA ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGr5JD56qA .navbar-buttons {
  text-align: center;
}
.cid-sGr5JD56qA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGr5JD56qA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sGr5JD56qA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGr5JD56qA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGr5JD56qA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGr5JD56qA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGr5JD56qA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGr5JD56qA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGr5JD56qA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGr5JD56qA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGr5JD56qA .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGr5JD56qA a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sGr5JD56qA a.nav-link:focus {
  outline: none;
}
.cid-sGr5JD56qA .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sGr5JD56qA .nav-link:hover,
.cid-sGr5JD56qA .dropdown-item:hover {
  color: #ff3366 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGr5JD56qA .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sGr5JD56qA .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
