body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-2 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.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.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 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: #abbfc7 !important;
}
.bg-success {
  background-color: #d7ff06 !important;
}
.bg-info {
  background-color: #767676 !important;
}
.bg-warning {
  background-color: #ffa5f9 !important;
}
.bg-danger {
  background-color: #351639 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #abbfc7 !important;
  border-color: #abbfc7 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #7d9ca8 !important;
  border-color: #7d9ca8 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #7d9ca8 !important;
  border-color: #7d9ca8 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e2090d !important;
  border-color: #e2090d !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #980609 !important;
  border-color: #980609 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #980609 !important;
  border-color: #980609 !important;
}
.btn-info,
.btn-info:active {
  background-color: #767676 !important;
  border-color: #767676 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #505050 !important;
  border-color: #505050 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #505050 !important;
  border-color: #505050 !important;
}
.btn-success,
.btn-success:active {
  background-color: #d7ff06 !important;
  border-color: #d7ff06 !important;
  color: #050600 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #050600 !important;
  background-color: #9bb800 !important;
  border-color: #9bb800 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #050600 !important;
  background-color: #9bb800 !important;
  border-color: #9bb800 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffa5f9 !important;
  border-color: #ffa5f9 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #ff59f4 !important;
  border-color: #ff59f4 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ff59f4 !important;
  border-color: #ff59f4 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #351639 !important;
  border-color: #351639 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #020102 !important;
  border-color: #020102 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #020102 !important;
  border-color: #020102 !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: #6e909e;
  color: #6e909e;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #abbfc7;
  border-color: #abbfc7;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #abbfc7 !important;
  border-color: #abbfc7 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #800507;
  color: #800507;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #e2090d;
  border-color: #e2090d;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #e2090d !important;
  border-color: #e2090d !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #434343;
  color: #434343;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #767676;
  border-color: #767676;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #767676 !important;
  border-color: #767676 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #859f00;
  color: #859f00;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #050600;
  background-color: #d7ff06;
  border-color: #d7ff06;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #050600 !important;
  background-color: #d7ff06 !important;
  border-color: #d7ff06 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #ff3ff2;
  color: #ff3ff2;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #ffa5f9;
  border-color: #ffa5f9;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ffa5f9 !important;
  border-color: #ffa5f9 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #351639;
  border-color: #351639;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #351639 !important;
  border-color: #351639 !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: #abbfc7 !important;
}
.text-secondary {
  color: #e2090d !important;
}
.text-success {
  color: #d7ff06 !important;
}
.text-info {
  color: #767676 !important;
}
.text-warning {
  color: #ffa5f9 !important;
}
.text-danger {
  color: #351639 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #6e909e !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #800507 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #859f00 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #434343 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #ff3ff2 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #000000 !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: #767676;
}
.alert-warning {
  background-color: #ffa5f9;
}
.alert-danger {
  background-color: #351639;
}
.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: #abbfc7;
  border-color: #abbfc7;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #abbfc7;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f7f9fa;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #f8ffd2;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b6b6b6;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #bd6ec7;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #abbfc7;
}
/* 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: #abbfc7;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #abbfc7;
}
.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: #abbfc7;
  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: #abbfc7;
  border-bottom-color: #abbfc7;
}
.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: #abbfc7 !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: #e2090d !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='%23abbfc7' %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-rR5bkk2Hlr .navbar {
  padding: .5rem 0;
  background: #351639;
  transition: none;
  min-height: 77px;
}
.cid-rR5bkk2Hlr .navbar-dropdown.bg-color.transparent.opened {
  background: #351639;
}
.cid-rR5bkk2Hlr a {
  font-style: normal;
}
.cid-rR5bkk2Hlr .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rR5bkk2Hlr .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rR5bkk2Hlr .nav-item:focus,
.cid-rR5bkk2Hlr .nav-link:focus {
  outline: none;
}
.cid-rR5bkk2Hlr .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rR5bkk2Hlr .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rR5bkk2Hlr .menu-logo {
  margin-right: auto;
}
.cid-rR5bkk2Hlr .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rR5bkk2Hlr .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rR5bkk2Hlr .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rR5bkk2Hlr .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rR5bkk2Hlr .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rR5bkk2Hlr .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rR5bkk2Hlr .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rR5bkk2Hlr .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rR5bkk2Hlr .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rR5bkk2Hlr .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rR5bkk2Hlr .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rR5bkk2Hlr .dropdown .dropdown-menu {
  background: #351639;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rR5bkk2Hlr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rR5bkk2Hlr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rR5bkk2Hlr .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rR5bkk2Hlr .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rR5bkk2Hlr .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rR5bkk2Hlr .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rR5bkk2Hlr .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rR5bkk2Hlr .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rR5bkk2Hlr .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rR5bkk2Hlr .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rR5bkk2Hlr .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rR5bkk2Hlr button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rR5bkk2Hlr button.navbar-toggler:focus {
  outline: none;
}
.cid-rR5bkk2Hlr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rR5bkk2Hlr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rR5bkk2Hlr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rR5bkk2Hlr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rR5bkk2Hlr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rR5bkk2Hlr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rR5bkk2Hlr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rR5bkk2Hlr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rR5bkk2Hlr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rR5bkk2Hlr .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rR5bkk2Hlr .collapsed .btn {
  display: -webkit-flex;
}
.cid-rR5bkk2Hlr .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.collapsing,
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-rR5bkk2Hlr .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-rR5bkk2Hlr .collapsed button.navbar-toggler {
  display: block;
}
.cid-rR5bkk2Hlr .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rR5bkk2Hlr .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rR5bkk2Hlr .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rR5bkk2Hlr .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rR5bkk2Hlr .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rR5bkk2Hlr .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-rR5bkk2Hlr .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rR5bkk2Hlr img {
    height: 3.8rem !important;
  }
  .cid-rR5bkk2Hlr .btn {
    display: -webkit-flex;
  }
  .cid-rR5bkk2Hlr button.navbar-toggler {
    display: block;
  }
  .cid-rR5bkk2Hlr .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rR5bkk2Hlr .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rR5bkk2Hlr .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rR5bkk2Hlr .navbar-collapse.collapsing,
  .cid-rR5bkk2Hlr .navbar-collapse.show {
    display: block !important;
  }
  .cid-rR5bkk2Hlr .navbar-collapse.collapsing .navbar-nav,
  .cid-rR5bkk2Hlr .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rR5bkk2Hlr .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rR5bkk2Hlr .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rR5bkk2Hlr .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rR5bkk2Hlr .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rR5bkk2Hlr .navbar-collapse.collapsing .navbar-buttons,
  .cid-rR5bkk2Hlr .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rR5bkk2Hlr .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rR5bkk2Hlr .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rR5bkk2Hlr .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rR5bkk2Hlr .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rR5bkk2Hlr .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rR5bkk2Hlr .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rR5bkk2Hlr .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rR5bkk2Hlr .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rR5bkk2Hlr .nav-link:hover,
.cid-rR5bkk2Hlr .dropdown-item:hover {
  color: #f7ed4a !important;
}
.cid-rR5bkk2Hlr .navbar-caption {
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.6;
  font-size: 16px;
}
.cid-rR5bkk2Hlr .nav-link {
  letter-spacing: 2px;
}
.cid-s7B3RDvGX8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-s7B3RDvGX8 P {
  color: #767676;
}
.cid-s7B3RDvGX8 H1 {
  color: #ffffff;
  font-weight: 300;
  letter-spacing: 4px;
  line-height: 1.6;
}
.cid-s7B3RDvGX8 H3 {
  color: #efefef;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 4px;
  line-height: 1.6;
}
.cid-s7B3RDvGX8 .mbr-text,
.cid-s7B3RDvGX8 .mbr-section-btn {
  color: #cccccc;
  font-weight: 300;
  letter-spacing: 4px;
  line-height: 1.6;
  font-size: 25px;
}
.cid-ucVm0CBP3q {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/colombians-background.jpg");
  background-size: 700px;
  background-repeat: repeat;
}
.cid-ucVm0CBP3q .card-wrapper {
  background: #351639;
  box-shadow: 10px 10px 23px 0px rgba(0, 0, 0, 0.52);
  border: 1px solid #5b686b;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .cid-ucVm0CBP3q .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ucVm0CBP3q .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ucVm0CBP3q .card-wrapper {
    padding: 1rem;
  }
}
.cid-ucVm0CBP3q .mbr-text,
.cid-ucVm0CBP3q .mbr-section-btn {
  color: #ffffff;
  text-align: center;
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 4px;
  line-height: 1.8;
}
.cid-ucVm0CBP3q .card-title,
.cid-ucVm0CBP3q .card-box {
  text-align: center;
  color: #ffffff;
}
.cid-ucVm0CBP3q h4 {
  font-weight: 500;
  text-shadow: 3px 3px #000000;
  letter-spacing: 2px;
  line-height: 1.5;
}
.cid-ucVm0CBP3q p {
  letter-spacing: 4px;
  line-height: 1.5;
  text-shadow: 2px 2px #000000;
}
.cid-ucVm0CBP3q .btn {
  letter-spacing: 4px;
}
.cid-ucVuwkDLBr {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background-colourised.jpg");
  background-size: auto;
  background-repeat: repeat;
}
.cid-ucVuwkDLBr .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-ucVuwkDLBr .item {
    margin-bottom: 1rem;
  }
}
.cid-ucVuwkDLBr .item-wrapper {
  position: relative;
}
.cid-ucVuwkDLBr .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-ucVuwkDLBr .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-ucVuwkDLBr .carousel-control,
.cid-ucVuwkDLBr .close {
  background: #1b1b1b;
}
.cid-ucVuwkDLBr .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ucVuwkDLBr .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ucVuwkDLBr .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ucVuwkDLBr .carousel-control-next span {
  margin-left: 5px;
}
.cid-ucVuwkDLBr .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-ucVuwkDLBr .close::before {
  content: '\e91a';
}
.cid-ucVuwkDLBr .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ucVuwkDLBr .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-ucVuwkDLBr .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ucVuwkDLBr .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ucVuwkDLBr .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ucVuwkDLBr .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ucVuwkDLBr .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-ucVuwkDLBr .carousel-indicators li.active,
.cid-ucVuwkDLBr .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ucVuwkDLBr .carousel-indicators li::after,
.cid-ucVuwkDLBr .carousel-indicators li::before {
  content: none;
}
.cid-ucVuwkDLBr .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ucVuwkDLBr .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ucVuwkDLBr .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ucVuwkDLBr .carousel-indicators {
    display: none;
  }
}
.cid-ucVuwkDLBr .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ucVuwkDLBr .carousel-inner > .active {
  display: block;
}
.cid-ucVuwkDLBr .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ucVuwkDLBr .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ucVuwkDLBr .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ucVuwkDLBr .carousel-control,
  .cid-ucVuwkDLBr .carousel-indicators,
  .cid-ucVuwkDLBr .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ucVuwkDLBr .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ucVuwkDLBr .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ucVuwkDLBr .carousel-indicators .active,
.cid-ucVuwkDLBr .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ucVuwkDLBr .carousel-indicators .active {
  background: #fff;
}
.cid-ucVuwkDLBr .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ucVuwkDLBr .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ucVuwkDLBr .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ucVuwkDLBr .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ucVuwkDLBr .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ucVuwkDLBr .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ucVuwkDLBr .carousel {
  width: 100%;
}
.cid-ucVuwkDLBr .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ucVuwkDLBr .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ucVuwkDLBr .modal.fade .modal-dialog,
.cid-ucVuwkDLBr .modal.in .modal-dialog {
  transform: none;
}
.cid-ucVuwkDLBr .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ucVuwkDLBr .content-head {
  max-width: 800px;
}
.cid-ucVuwkDLBr img {
  border-radius: 20px;
  box-shadow: 0px 0px 15px 3px rgba(254, 40, 145, 0.3);
}
.cid-ucVuwkDLBr H3 {
  color: #efefef;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.5;
  text-shadow: 3px 3px #000000;
}
.cid-ucVuwkDLBr H4 {
  color: #ffffff;
  text-align: center;
  letter-spacing: 3px;
  font-weight: 300;
  line-height: 1.5;
  text-shadow: 2px 2px #000000;
}
.cid-ucVuwkDLBr H6 {
  color: #fafafa;
}
.cid-ucVuwkDLBr .mbr-section-subtitle {
  color: #efefef;
  font-weight: 300;
  font-size: 30px;
  letter-spacing: 3px;
  line-height: 1.6;
  text-align: center;
}
.cid-ucVuwkDLBr .mbr-section-subdomain {
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  font-size: 28px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
  padding-bottom: 5px;
}
.cid-ucVuwkDLBr .mbr-item-subtitle {
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1.5;
}
.cid-ucVuwkDLBr .mbr-section-subdomain2 {
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  font-size: 24px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
}
.cid-ucVuwkDLBr .mbr-section-gallery {
  font-weight: 300;
  color: #d7ff06;
  text-align: left;
  font-size: 30px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
}
.cid-ucVuwkDLBr .mbr-section-gallery2 {
  font-weight: 300;
  color: #d7ff06;
  text-align: center;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
}
.cid-ueqgtSYPGg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/background-colourised.jpg");
  background-size: auto;
  background-repeat: repeat;
}
.cid-ueqgtSYPGg .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  line-height: 1.6;
}
.cid-ueqgtSYPGg .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-ueqgtSYPGg .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-ueqgtSYPGg h4 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-ueqgtSYPGg h4:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-ueqgtSYPGg h4:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-ueqgtSYPGg .wrapper {
  padding: 2rem 1rem 1rem 1rem;
}
.cid-ueqgtSYPGg .card-overlay {
  display: none;
  background: #000000;
}
@media (min-width: 768px) {
  .cid-ueqgtSYPGg .image-element:hover .card-overlay {
    opacity: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-ueqgtSYPGg .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-ueqgtSYPGg .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-ueqgtSYPGg .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-ueqgtSYPGg .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-ueqgtSYPGg .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-ueqgtSYPGg .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-ueqgtSYPGg .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-ueqgtSYPGg .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
  }
  .cid-ueqgtSYPGg .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-ueqgtSYPGg .card-overlay {
    transition: all .5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-ueqgtSYPGg .card-title,
  .cid-ueqgtSYPGg .underline,
  .cid-ueqgtSYPGg .mbr-text,
  .cid-ueqgtSYPGg .mbr-section-btn,
  .cid-ueqgtSYPGg .mbr-section-subtitle,
  .cid-ueqgtSYPGg .mbr-section-title {
    text-align: center !important;
  }
  .cid-ueqgtSYPGg .wrapper {
    background-color: #000000;
  }
}
.cid-ueqgtSYPGg .mbr-section-title {
  text-align: left;
}
.cid-ueqgtSYPGg .mbr-section-title,
.cid-ueqgtSYPGg .underline {
  text-align: center;
}
.cid-ueqgtSYPGg H4 {
  color: #e1201d;
}
.cid-ud0PpBMYjW {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background-colourised.jpg");
  background-size: auto;
  background-repeat: repeat;
}
.cid-ud0PpBMYjW .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-ud0PpBMYjW .item {
    margin-bottom: 1rem;
  }
}
.cid-ud0PpBMYjW .item-wrapper {
  position: relative;
}
.cid-ud0PpBMYjW .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-ud0PpBMYjW .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-ud0PpBMYjW .carousel-control,
.cid-ud0PpBMYjW .close {
  background: #1b1b1b;
}
.cid-ud0PpBMYjW .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ud0PpBMYjW .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ud0PpBMYjW .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ud0PpBMYjW .carousel-control-next span {
  margin-left: 5px;
}
.cid-ud0PpBMYjW .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-ud0PpBMYjW .close::before {
  content: '\e91a';
}
.cid-ud0PpBMYjW .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ud0PpBMYjW .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-ud0PpBMYjW .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ud0PpBMYjW .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ud0PpBMYjW .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ud0PpBMYjW .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ud0PpBMYjW .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-ud0PpBMYjW .carousel-indicators li.active,
.cid-ud0PpBMYjW .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ud0PpBMYjW .carousel-indicators li::after,
.cid-ud0PpBMYjW .carousel-indicators li::before {
  content: none;
}
.cid-ud0PpBMYjW .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ud0PpBMYjW .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ud0PpBMYjW .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ud0PpBMYjW .carousel-indicators {
    display: none;
  }
}
.cid-ud0PpBMYjW .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ud0PpBMYjW .carousel-inner > .active {
  display: block;
}
.cid-ud0PpBMYjW .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ud0PpBMYjW .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ud0PpBMYjW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ud0PpBMYjW .carousel-control,
  .cid-ud0PpBMYjW .carousel-indicators,
  .cid-ud0PpBMYjW .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ud0PpBMYjW .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ud0PpBMYjW .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ud0PpBMYjW .carousel-indicators .active,
.cid-ud0PpBMYjW .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ud0PpBMYjW .carousel-indicators .active {
  background: #fff;
}
.cid-ud0PpBMYjW .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ud0PpBMYjW .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ud0PpBMYjW .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ud0PpBMYjW .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ud0PpBMYjW .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ud0PpBMYjW .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ud0PpBMYjW .carousel {
  width: 100%;
}
.cid-ud0PpBMYjW .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ud0PpBMYjW .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ud0PpBMYjW .modal.fade .modal-dialog,
.cid-ud0PpBMYjW .modal.in .modal-dialog {
  transform: none;
}
.cid-ud0PpBMYjW .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ud0PpBMYjW .content-head {
  max-width: 800px;
}
.cid-ud0PpBMYjW img {
  border-radius: 20px;
  box-shadow: 0px 0px 15px 3px rgba(254, 40, 145, 0.3);
}
.cid-ud0PpBMYjW H3 {
  color: #ffffff;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.5;
  text-shadow: 3px 3px #000000;
}
.cid-ud0PpBMYjW H4 {
  color: #ffffff;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.5;
  text-shadow: 2px 2px #000000;
  font-weight: 300;
}
.cid-ud0PpBMYjW H6 {
  color: #fafafa;
}
.cid-ud0PpBMYjW .mbr-section-subtitle {
  font-weight: 300;
  font-size: 30px;
  letter-spacing: 3px;
  line-height: 1.8;
}
.cid-ud0PpBMYjW .mbr-section-subdomain {
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  font-size: 28px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
  padding-bottom: 5px;
}
.cid-ud0PpBMYjW .mbr-item-subtitle {
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1.5;
}
.cid-ud0PpBMYjW .mbr-section-subdomain2 {
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  font-size: 24px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
}
.cid-ud0PpBMYjW .mbr-section-gallery {
  font-weight: 300;
  color: #d7ff06;
  text-align: left;
  font-size: 30px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
}
.cid-ud0PpBMYjW .mbr-section-gallery2 {
  font-weight: 300;
  color: #d7ff06;
  text-align: left;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
}
.cid-ud0PpBMYjW P {
  color: #ffffff;
}
.cid-ud0VFzHEfG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/background-colourised.jpg");
  background-size: auto;
  background-repeat: repeat;
}
.cid-ud0VFzHEfG .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  line-height: 1.6;
}
.cid-ud0VFzHEfG .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-ud0VFzHEfG .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-ud0VFzHEfG h4 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-ud0VFzHEfG h4:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-ud0VFzHEfG h4:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-ud0VFzHEfG .wrapper {
  padding: 2rem 1rem 1rem 1rem;
}
.cid-ud0VFzHEfG .card-overlay {
  display: none;
  background: #000000;
}
@media (min-width: 768px) {
  .cid-ud0VFzHEfG .image-element:hover .card-overlay {
    opacity: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-ud0VFzHEfG .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-ud0VFzHEfG .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-ud0VFzHEfG .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-ud0VFzHEfG .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-ud0VFzHEfG .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-ud0VFzHEfG .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-ud0VFzHEfG .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-ud0VFzHEfG .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
  }
  .cid-ud0VFzHEfG .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-ud0VFzHEfG .card-overlay {
    transition: all .5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-ud0VFzHEfG .card-title,
  .cid-ud0VFzHEfG .underline,
  .cid-ud0VFzHEfG .mbr-text,
  .cid-ud0VFzHEfG .mbr-section-btn,
  .cid-ud0VFzHEfG .mbr-section-subtitle,
  .cid-ud0VFzHEfG .mbr-section-title {
    text-align: center !important;
  }
  .cid-ud0VFzHEfG .wrapper {
    background-color: #000000;
  }
}
.cid-ud0VFzHEfG .mbr-section-title {
  text-align: left;
}
.cid-ud0VFzHEfG .mbr-section-title,
.cid-ud0VFzHEfG .underline {
  text-align: center;
}
.cid-ud0VFzHEfG H4 {
  color: #e1201d;
}
.cid-udmLvlIDgB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background-colourised.jpg");
  background-size: auto;
  background-repeat: repeat;
}
.cid-udmLvlIDgB .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-udmLvlIDgB .item {
    margin-bottom: 1rem;
  }
}
.cid-udmLvlIDgB .item-wrapper {
  position: relative;
}
.cid-udmLvlIDgB .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-udmLvlIDgB .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-udmLvlIDgB .carousel-control,
.cid-udmLvlIDgB .close {
  background: #1b1b1b;
}
.cid-udmLvlIDgB .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-udmLvlIDgB .carousel-control-prev span {
  margin-right: 5px;
}
.cid-udmLvlIDgB .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-udmLvlIDgB .carousel-control-next span {
  margin-left: 5px;
}
.cid-udmLvlIDgB .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-udmLvlIDgB .close::before {
  content: '\e91a';
}
.cid-udmLvlIDgB .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-udmLvlIDgB .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-udmLvlIDgB .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-udmLvlIDgB .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-udmLvlIDgB .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-udmLvlIDgB .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-udmLvlIDgB .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-udmLvlIDgB .carousel-indicators li.active,
.cid-udmLvlIDgB .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-udmLvlIDgB .carousel-indicators li::after,
.cid-udmLvlIDgB .carousel-indicators li::before {
  content: none;
}
.cid-udmLvlIDgB .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-udmLvlIDgB .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-udmLvlIDgB .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-udmLvlIDgB .carousel-indicators {
    display: none;
  }
}
.cid-udmLvlIDgB .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-udmLvlIDgB .carousel-inner > .active {
  display: block;
}
.cid-udmLvlIDgB .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-udmLvlIDgB .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-udmLvlIDgB .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-udmLvlIDgB .carousel-control,
  .cid-udmLvlIDgB .carousel-indicators,
  .cid-udmLvlIDgB .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-udmLvlIDgB .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-udmLvlIDgB .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-udmLvlIDgB .carousel-indicators .active,
.cid-udmLvlIDgB .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-udmLvlIDgB .carousel-indicators .active {
  background: #fff;
}
.cid-udmLvlIDgB .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-udmLvlIDgB .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-udmLvlIDgB .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-udmLvlIDgB .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-udmLvlIDgB .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-udmLvlIDgB .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-udmLvlIDgB .carousel {
  width: 100%;
}
.cid-udmLvlIDgB .modal-backdrop.in {
  opacity: 0.8;
}
.cid-udmLvlIDgB .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-udmLvlIDgB .modal.fade .modal-dialog,
.cid-udmLvlIDgB .modal.in .modal-dialog {
  transform: none;
}
.cid-udmLvlIDgB .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-udmLvlIDgB .content-head {
  max-width: 800px;
}
.cid-udmLvlIDgB img {
  border-radius: 20px;
  box-shadow: 0px 0px 15px 3px rgba(254, 40, 145, 0.3);
}
.cid-udmLvlIDgB H3 {
  color: #efefef;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.5;
  text-shadow: 3px 3px #000000;
}
.cid-udmLvlIDgB H4 {
  color: #ffffff;
  text-align: center;
  letter-spacing: 3px;
  font-weight: 300;
  line-height: 1.5;
  text-shadow: 2px 2px #000000;
}
.cid-udmLvlIDgB H6 {
  color: #fafafa;
}
.cid-udmLvlIDgB .mbr-section-subtitle {
  font-weight: 300;
  font-size: 30px;
  letter-spacing: 3px;
  line-height: 1.8;
}
.cid-udmLvlIDgB .mbr-section-subdomain {
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  font-size: 28px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
  padding-bottom: 5px;
}
.cid-udmLvlIDgB .mbr-item-subtitle {
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1.5;
}
.cid-udmLvlIDgB .mbr-section-subdomain2 {
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  font-size: 24px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
}
.cid-udmLvlIDgB .mbr-section-gallery {
  font-weight: 300;
  color: #d7ff06;
  text-align: left;
  font-size: 30px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
}
.cid-udmLvlIDgB .mbr-section-gallery2 {
  font-weight: 300;
  color: #d7ff06;
  text-align: left;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
}
.cid-ueqgwLtWWC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/background-colourised.jpg");
  background-size: auto;
  background-repeat: repeat;
}
.cid-ueqgwLtWWC .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  line-height: 1.6;
}
.cid-ueqgwLtWWC .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-ueqgwLtWWC .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-ueqgwLtWWC h4 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-ueqgwLtWWC h4:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-ueqgwLtWWC h4:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-ueqgwLtWWC .wrapper {
  padding: 2rem 1rem 1rem 1rem;
}
.cid-ueqgwLtWWC .card-overlay {
  display: none;
  background: #000000;
}
@media (min-width: 768px) {
  .cid-ueqgwLtWWC .image-element:hover .card-overlay {
    opacity: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-ueqgwLtWWC .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-ueqgwLtWWC .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-ueqgwLtWWC .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-ueqgwLtWWC .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-ueqgwLtWWC .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-ueqgwLtWWC .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-ueqgwLtWWC .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-ueqgwLtWWC .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
  }
  .cid-ueqgwLtWWC .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-ueqgwLtWWC .card-overlay {
    transition: all .5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-ueqgwLtWWC .card-title,
  .cid-ueqgwLtWWC .underline,
  .cid-ueqgwLtWWC .mbr-text,
  .cid-ueqgwLtWWC .mbr-section-btn,
  .cid-ueqgwLtWWC .mbr-section-subtitle,
  .cid-ueqgwLtWWC .mbr-section-title {
    text-align: center !important;
  }
  .cid-ueqgwLtWWC .wrapper {
    background-color: #000000;
  }
}
.cid-ueqgwLtWWC .mbr-section-title {
  text-align: left;
}
.cid-ueqgwLtWWC .mbr-section-title,
.cid-ueqgwLtWWC .underline {
  text-align: center;
}
.cid-ueqgwLtWWC H4 {
  color: #e1201d;
}
.cid-ud0VHCjMLK {
  padding-top: 30px;
  padding-bottom: 0px;
  position: relative;
  background-image: url("../../../assets/images/background-colourised.jpg");
}
.cid-ud0VHCjMLK p {
  color: #767676;
}
.cid-ud0VHCjMLK .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-ud0VHCjMLK .toggle-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ud0VHCjMLK .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-ud0VHCjMLK .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-ud0VHCjMLK .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
}
.cid-ud0VHCjMLK .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-ud0VHCjMLK .card .card-header a.panel-title h4 {
  border: 1px solid #dfdfdf;
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-ud0VHCjMLK .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-ud0VHCjMLK .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
}
@media (max-width: 991px) {
  .cid-ud0VHCjMLK .mbr-figure {
    padding-top: 2rem;
    padding-top: 0;
    padding-bottom: 2rem;
  }
  .cid-ud0VHCjMLK .media-container-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media (min-width: 992px) {
  .cid-ud0VHCjMLK .mbr-figure {
    padding-left: 4rem;
    padding-left: 0;
    padding-right: 4rem;
  }
  .cid-ud0VHCjMLK .media-container-row {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.cid-ud0VHCjMLK H4 {
  color: #ffffff;
}
.cid-ud0VHCjMLK .panel-text {
  color: #efefef;
}
.cid-ud0VHCjMLK H2 {
  color: #75fd6e;
  font-weight: 300;
  letter-spacing: 4px;
  line-height: 1.6;
}
.cid-ud0VHCjMLK .mbr-fonts-style {
  font-weight: 300;
  letter-spacing: 4px;
  line-height: 1.6;
}
.cid-ud0VKANCjD {
  padding-top: 15px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background-colourised.jpg");
  background-size: auto;
  background-repeat: repeat;
}
@media (min-width: 992px) {
  .cid-ud0VKANCjD .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-ud0VKANCjD .content {
    padding: 0 2rem;
  }
}
.cid-ud0VKANCjD .icon-wrap {
  display: flex;
  margin-bottom: 2rem;
}
.cid-ud0VKANCjD .icon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-ud0VKANCjD .mbr-iconfont {
  font-size: 3.5rem;
  color: #7aba59 !important;
  padding-right: 1.5rem;
  padding-bottom: 4px;
}
.cid-ud0VKANCjD .icon-title,
.cid-ud0VKANCjD .mbr-iconfont {
  color: #ed6436;
}
.cid-ud0VKANCjD .icons-wrap {
  display: flex;
}
.cid-ud0VKANCjD .google-map {
  height: 100%;
  position: relative;
}
.cid-ud0VKANCjD .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 30px;
  box-shadow: 0px 0px 15px 3px #fe2891;
}
.cid-ud0VKANCjD .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ud0VKANCjD .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ud0VKANCjD .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 992px) {
  .cid-ud0VKANCjD .content {
    margin: auto;
  }
  .cid-ud0VKANCjD .google-map {
    height: 30rem;
  }
}
@media (max-width: 767px) {
  .cid-ud0VKANCjD .icons-wrap {
    flex-direction: column;
  }
  .cid-ud0VKANCjD .icon-wrap {
    margin-right: 0rem;
  }
  .cid-ud0VKANCjD .google-map {
    height: 20rem;
  }
}
.cid-ud0VKANCjD H1 {
  color: #cccccc;
}
.cid-ud0VKANCjD .mbr-text,
.cid-ud0VKANCjD .mbr-section-btn,
.cid-ud0VKANCjD .content {
  color: #efefef;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1.6;
}
.cid-ud0VOzRKdy {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/background-colourised.jpg");
}
.cid-ud0VOzRKdy P {
  color: #ffffff;
}
.cid-ud0VOzRKdy H1 {
  color: #ffffff;
}
.cid-ud0VOzRKdy .mbr-text,
.cid-ud0VOzRKdy .mbr-section-btn {
  color: #ffffff;
}
.cid-ud0VOzRKdy .mbr-text {
  text-shadow: 2px 2px #000000;
}
@media (max-width: 767px) {
  .cid-ud0VOzRKdy .mbr-text {
    text-align: center;
  }
}
.cid-ud0VOzRKdy h1 {
  text-shadow: 2px 2px #000000;
}
.cid-ud0VOzRKdy h2 {
  text-shadow: 2px 2px #000000;
}
.cid-ud0VOzRKdy p {
  text-shadow: 2px 2px #000000;
  letter-spacing: 2px;
  font-weight: 300;
  line-height: 1.9;
}
.cid-ud0VOzRKdy h4 {
  text-shadow: 2px 2px #000000;
}
.cid-ud0VOzRKdy H3 {
  color: #efefef;
  font-weight: 300;
  letter-spacing: 4px;
  line-height: 1.6;
}
.cid-ud0W3c68RG {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/background-colourised.jpg");
  overflow: hidden;
}
.cid-ud0W3c68RG .mbr-overlay {
  background-color: #000000;
  opacity: 0.3;
}
.cid-ud0W3c68RG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud0W3c68RG .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-ud0W3c68RG img {
  width: 300px;
  height: auto;
  object-fit: contain;
  border-radius: 0% !important;
}
.cid-ud0W3c68RG .mbr-section-btn,
.cid-ud0W3c68RG .btn {
  width: 100%;
  margin: 0;
}
.cid-ud0W3c68RG .row {
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-ud0W3c68RG .md-pb {
    margin-bottom: 2rem !important;
  }
}
.cid-ud0W3c68RG input,
.cid-ud0W3c68RG textarea {
  border-radius: 0 !important;
  border: 0px !important;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ffffff !important;
  background: transparent;
  box-shadow: none;
  padding: 0;
  color: #ffffff !important;
}
.cid-ud0W3c68RG input:hover,
.cid-ud0W3c68RG textarea:hover,
.cid-ud0W3c68RG input:active,
.cid-ud0W3c68RG textarea:active,
.cid-ud0W3c68RG input:focus,
.cid-ud0W3c68RG textarea:focus {
  border: 0px !important;
  background: transparent;
  border-bottom: 1px solid #ffffff !important;
  box-shadow: none;
}
.cid-ud0W3c68RG input::placeholder,
.cid-ud0W3c68RG textarea::placeholder {
  color: #ffffff !important;
  font-weight: 300;
  letter-spacing: 4px;
  line-height: 1.6;
}
.cid-ud0W3c68RG .mbr-section-subtitle {
  color: #d70081;
  text-align: left;
  font-weight: 300;
  letter-spacing: 4px;
  line-height: 1.6;
}
.cid-ud0W3c68RG .mbr-section-formtitle {
  color: #ffffff;
  text-align: left;
  font-weight: 300;
  letter-spacing: 4px;
  line-height: 1.6;
}
.cid-ud0W3c68RG .mbr-section-maintitle {
  color: #ffffff;
  text-align: left;
  font-weight: 300;
  letter-spacing: 4px;
  line-height: 1.6;
}
.cid-udaF2B3htt {
  padding-top: 0px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/background-colourised.jpg");
}
@media (max-width: 767px) {
  .cid-udaF2B3htt .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-udaF2B3htt .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-udaF2B3htt .media-wrap img {
  height: 6rem;
}
.cid-udaF2B3htt .mbr-text {
  color: #767676;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1.4;
  text-shadow: 1px 0px 0px #000000;
}
@media (max-width: 767px) {
  .cid-udaF2B3htt .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-udaF2B3htt .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-udaF2B3htt .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-udaF2B3htt .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-udaF2B3htt .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-udaF2B3htt .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-udaF2B3htt .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-udaF2B3htt .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-udaF2B3htt .links {
  color: #ffa5f9;
}
.cid-ueAEETjAxx.popup-builder {
  background-color: #ffffff;
}
.cid-ueAEETjAxx.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ueAEETjAxx.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ueAEETjAxx .modal-content,
.cid-ueAEETjAxx .modal-dialog {
  height: auto;
}
.cid-ueAEETjAxx .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ueAEETjAxx .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ueAEETjAxx .form-wrapper .mbr-form .form-group,
  .cid-ueAEETjAxx .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ueAEETjAxx .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ueAEETjAxx .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ueAEETjAxx .mbr-text {
  text-align: left;
  font-weight: 300;
  margin-bottom: 0;
  line-height: 1.8;
  letter-spacing: 1px;
}
.cid-ueAEETjAxx .pt-0 {
  padding-top: 0 !important;
}
.cid-ueAEETjAxx .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ueAEETjAxx .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ueAEETjAxx .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ueAEETjAxx .modal-open {
  overflow: hidden;
}
.cid-ueAEETjAxx .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ueAEETjAxx .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ueAEETjAxx .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ueAEETjAxx .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-ueAEETjAxx .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ueAEETjAxx .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ueAEETjAxx .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ueAEETjAxx .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-ueAEETjAxx .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ueAEETjAxx .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ueAEETjAxx .modal-backdrop.fade {
  opacity: 0;
}
.cid-ueAEETjAxx .modal-backdrop.show {
  opacity: .5;
}
.cid-ueAEETjAxx .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-ueAEETjAxx .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ueAEETjAxx .modal-header {
    padding: 1rem;
  }
}
.cid-ueAEETjAxx .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ueAEETjAxx .modal-header .close svg {
  fill: #353535;
}
.cid-ueAEETjAxx .modal-header .close:hover {
  opacity: 1;
}
.cid-ueAEETjAxx .modal-header .close:focus {
  outline: none;
}
.cid-ueAEETjAxx .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-ueAEETjAxx .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ueAEETjAxx .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ueAEETjAxx .modal-body {
    padding: 1rem;
  }
}
.cid-ueAEETjAxx .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ueAEETjAxx .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ueAEETjAxx .modal-footer {
    padding: 1rem;
  }
}
.cid-ueAEETjAxx .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ueAEETjAxx .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ueAEETjAxx .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ueAEETjAxx .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ueAEETjAxx .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ueAEETjAxx .modal-lg,
  .cid-ueAEETjAxx .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ueAEETjAxx .modal-xl {
    max-width: 1140px;
  }
}
.cid-ueAEETjAxx .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ueAEETjAxx .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-ueAEETjAxx .form-group {
  margin-bottom: 1rem;
}
.cid-ueAEETjAxx .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ueAEETjAxx .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ueAEETjAxx .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-ueAEETjAxx .mbr-section-btn {
  margin: 0;
}
.cid-ueAEETjAxx .mbr-section-btn .btn {
  margin: 0;
}
.cid-rR5bkk2Hlr .navbar {
  padding: .5rem 0;
  background: #351639;
  transition: none;
  min-height: 77px;
}
.cid-rR5bkk2Hlr .navbar-dropdown.bg-color.transparent.opened {
  background: #351639;
}
.cid-rR5bkk2Hlr a {
  font-style: normal;
}
.cid-rR5bkk2Hlr .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rR5bkk2Hlr .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rR5bkk2Hlr .nav-item:focus,
.cid-rR5bkk2Hlr .nav-link:focus {
  outline: none;
}
.cid-rR5bkk2Hlr .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rR5bkk2Hlr .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rR5bkk2Hlr .menu-logo {
  margin-right: auto;
}
.cid-rR5bkk2Hlr .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rR5bkk2Hlr .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rR5bkk2Hlr .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rR5bkk2Hlr .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rR5bkk2Hlr .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rR5bkk2Hlr .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rR5bkk2Hlr .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rR5bkk2Hlr .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rR5bkk2Hlr .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rR5bkk2Hlr .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rR5bkk2Hlr .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rR5bkk2Hlr .dropdown .dropdown-menu {
  background: #351639;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rR5bkk2Hlr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rR5bkk2Hlr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rR5bkk2Hlr .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rR5bkk2Hlr .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rR5bkk2Hlr .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rR5bkk2Hlr .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rR5bkk2Hlr .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rR5bkk2Hlr .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rR5bkk2Hlr .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rR5bkk2Hlr .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rR5bkk2Hlr .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rR5bkk2Hlr button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rR5bkk2Hlr button.navbar-toggler:focus {
  outline: none;
}
.cid-rR5bkk2Hlr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rR5bkk2Hlr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rR5bkk2Hlr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rR5bkk2Hlr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rR5bkk2Hlr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rR5bkk2Hlr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rR5bkk2Hlr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rR5bkk2Hlr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rR5bkk2Hlr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rR5bkk2Hlr .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rR5bkk2Hlr .collapsed .btn {
  display: -webkit-flex;
}
.cid-rR5bkk2Hlr .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.collapsing,
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rR5bkk2Hlr .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-rR5bkk2Hlr .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-rR5bkk2Hlr .collapsed button.navbar-toggler {
  display: block;
}
.cid-rR5bkk2Hlr .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rR5bkk2Hlr .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rR5bkk2Hlr .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rR5bkk2Hlr .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rR5bkk2Hlr .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rR5bkk2Hlr .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-rR5bkk2Hlr .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rR5bkk2Hlr img {
    height: 3.8rem !important;
  }
  .cid-rR5bkk2Hlr .btn {
    display: -webkit-flex;
  }
  .cid-rR5bkk2Hlr button.navbar-toggler {
    display: block;
  }
  .cid-rR5bkk2Hlr .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rR5bkk2Hlr .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rR5bkk2Hlr .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rR5bkk2Hlr .navbar-collapse.collapsing,
  .cid-rR5bkk2Hlr .navbar-collapse.show {
    display: block !important;
  }
  .cid-rR5bkk2Hlr .navbar-collapse.collapsing .navbar-nav,
  .cid-rR5bkk2Hlr .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rR5bkk2Hlr .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rR5bkk2Hlr .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rR5bkk2Hlr .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rR5bkk2Hlr .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rR5bkk2Hlr .navbar-collapse.collapsing .navbar-buttons,
  .cid-rR5bkk2Hlr .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rR5bkk2Hlr .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rR5bkk2Hlr .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rR5bkk2Hlr .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rR5bkk2Hlr .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rR5bkk2Hlr .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rR5bkk2Hlr .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rR5bkk2Hlr .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rR5bkk2Hlr .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rR5bkk2Hlr .nav-link:hover,
.cid-rR5bkk2Hlr .dropdown-item:hover {
  color: #f7ed4a !important;
}
.cid-rR5bkk2Hlr .navbar-caption {
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.6;
  font-size: 16px;
}
.cid-rR5bkk2Hlr .nav-link {
  letter-spacing: 2px;
}
.cid-ubBEq1D7Ic {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ubBEq1D7Ic .card-wrapper {
  background: #351639;
  box-shadow: 10px 10px 23px 0px rgba(0, 0, 0, 0.52);
  border: 1px solid #5b686b;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .cid-ubBEq1D7Ic .card-wrapper {
    padding: 0rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ubBEq1D7Ic .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ubBEq1D7Ic .card-wrapper {
    padding: 1rem;
  }
}
.cid-ubBEq1D7Ic .mbr-text,
.cid-ubBEq1D7Ic .mbr-section-btn {
  color: #cccccc;
  text-align: center;
}
.cid-ubBEq1D7Ic .card-title,
.cid-ubBEq1D7Ic .card-box {
  text-align: center;
  color: #d7ff06;
}
.cid-ubBEq1D7Ic h4 {
  font-weight: 500;
  text-shadow: 3px 3px #000000;
  letter-spacing: 2px;
  line-height: 0.5;
}
.cid-ubBEq1D7Ic p {
  letter-spacing: 2px;
  line-height: 1.5;
  text-shadow: 2px 2px #000000;
}
.cid-ud7h7Dk7LE {
  padding-top: 0px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background-colourised.jpg");
  background-size: auto;
  background-repeat: repeat;
}
.cid-ud7h7Dk7LE .card-img {
  background-color: #d9ff00;
  border-radius: 1rem;
}
.cid-ud7h7Dk7LE .card-img img {
  width: 95%;
  border: 1px solid #767676;
  object-fit: cover;
  box-shadow: 5px 5px 15px 4px rgba(0, 0, 0, 0.5);
}
.cid-ud7h7Dk7LE .card {
  padding: 4px !important;
  align-self: stretch;
}
.cid-ud7h7Dk7LE .card-box {
  padding: 0rem;
  border-radius: 1rem;
  background-color: #d9ff00;
}
.cid-ud7h7Dk7LE .mbr-figure img,
.cid-ud7h7Dk7LE .card-img {
  width: 100%;
  padding: 0px;
}
.cid-ud7h7Dk7LE p {
  text-align: left;
}
.cid-ud7h7Dk7LE .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-ud7h7Dk7LE .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
  border-radius: 2rem;
}
.cid-ud7h7Dk7LE .card-wrapper:hover {
  background-color: #d9ff00;
  box-shadow: 0px 0px 30px 0px #ff0000;
  transition: box-shadow 0.3s;
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-ud7h7Dk7LE .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-ud7h7Dk7LE .mbr-figure img,
.cid-ud7h7Dk7LE .card-img img {
  padding: 2px;
  border-radius: 1rem;
}
.cid-ud7h7Dk7LE .card-title {
  text-align: center;
  font-weight: 300;
  line-height: 1.4;
  font-size: 20px;
  color: #ff3366;
  text-shadow: 0px 1px 0px #000000;
}
.cid-udmIQUgCil {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background-colourised.jpg");
  background-size: auto;
  background-repeat: repeat;
}
.cid-udmIQUgCil .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-udmIQUgCil .item {
    margin-bottom: 1rem;
  }
}
.cid-udmIQUgCil .item-wrapper {
  position: relative;
}
.cid-udmIQUgCil .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-udmIQUgCil .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-udmIQUgCil .carousel-control,
.cid-udmIQUgCil .close {
  background: #1b1b1b;
}
.cid-udmIQUgCil .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-udmIQUgCil .carousel-control-prev span {
  margin-right: 5px;
}
.cid-udmIQUgCil .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-udmIQUgCil .carousel-control-next span {
  margin-left: 5px;
}
.cid-udmIQUgCil .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-udmIQUgCil .close::before {
  content: '\e91a';
}
.cid-udmIQUgCil .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-udmIQUgCil .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-udmIQUgCil .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-udmIQUgCil .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-udmIQUgCil .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-udmIQUgCil .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-udmIQUgCil .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-udmIQUgCil .carousel-indicators li.active,
.cid-udmIQUgCil .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-udmIQUgCil .carousel-indicators li::after,
.cid-udmIQUgCil .carousel-indicators li::before {
  content: none;
}
.cid-udmIQUgCil .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-udmIQUgCil .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-udmIQUgCil .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-udmIQUgCil .carousel-indicators {
    display: none;
  }
}
.cid-udmIQUgCil .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-udmIQUgCil .carousel-inner > .active {
  display: block;
}
.cid-udmIQUgCil .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-udmIQUgCil .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-udmIQUgCil .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-udmIQUgCil .carousel-control,
  .cid-udmIQUgCil .carousel-indicators,
  .cid-udmIQUgCil .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-udmIQUgCil .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-udmIQUgCil .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-udmIQUgCil .carousel-indicators .active,
.cid-udmIQUgCil .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-udmIQUgCil .carousel-indicators .active {
  background: #fff;
}
.cid-udmIQUgCil .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-udmIQUgCil .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-udmIQUgCil .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-udmIQUgCil .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-udmIQUgCil .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-udmIQUgCil .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-udmIQUgCil .carousel {
  width: 100%;
}
.cid-udmIQUgCil .modal-backdrop.in {
  opacity: 0.8;
}
.cid-udmIQUgCil .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-udmIQUgCil .modal.fade .modal-dialog,
.cid-udmIQUgCil .modal.in .modal-dialog {
  transform: none;
}
.cid-udmIQUgCil .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-udmIQUgCil .content-head {
  max-width: 800px;
}
.cid-udmIQUgCil img {
  border-radius: 20px;
  box-shadow: 0px 0px 15px 3px rgba(254, 40, 145, 0.3);
}
.cid-udmIQUgCil H3 {
  color: #d7ff06;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.5;
  text-shadow: 3px 3px #000000;
}
.cid-udmIQUgCil H4 {
  color: #ffffff;
  text-align: center;
  letter-spacing: 3px;
  font-weight: 300;
  line-height: 1.5;
  text-shadow: 2px 2px #000000;
}
.cid-udmIQUgCil H6 {
  color: #fafafa;
}
.cid-udmIQUgCil .mbr-section-subtitle {
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 3px;
  line-height: 1.8;
}
.cid-udmIQUgCil .mbr-section-subdomain {
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  font-size: 28px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
  padding-bottom: 5px;
}
.cid-udmIQUgCil .mbr-item-subtitle {
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1.5;
}
.cid-udmIQUgCil .mbr-section-subdomain2 {
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  font-size: 24px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
}
.cid-udmIQUgCil .mbr-section-gallery {
  font-weight: 300;
  color: #d7ff06;
  text-align: left;
  font-size: 30px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
}
.cid-udmIQUgCil .mbr-section-gallery2 {
  font-weight: 300;
  color: #d7ff06;
  text-align: left;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
}
.cid-udmITZXbnF {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background-colourised.jpg");
  background-size: auto;
  background-repeat: repeat;
}
.cid-udmITZXbnF .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-udmITZXbnF .item {
    margin-bottom: 1rem;
  }
}
.cid-udmITZXbnF .item-wrapper {
  position: relative;
}
.cid-udmITZXbnF .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-udmITZXbnF .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-udmITZXbnF .carousel-control,
.cid-udmITZXbnF .close {
  background: #1b1b1b;
}
.cid-udmITZXbnF .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-udmITZXbnF .carousel-control-prev span {
  margin-right: 5px;
}
.cid-udmITZXbnF .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-udmITZXbnF .carousel-control-next span {
  margin-left: 5px;
}
.cid-udmITZXbnF .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-udmITZXbnF .close::before {
  content: '\e91a';
}
.cid-udmITZXbnF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-udmITZXbnF .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-udmITZXbnF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-udmITZXbnF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-udmITZXbnF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-udmITZXbnF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-udmITZXbnF .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-udmITZXbnF .carousel-indicators li.active,
.cid-udmITZXbnF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-udmITZXbnF .carousel-indicators li::after,
.cid-udmITZXbnF .carousel-indicators li::before {
  content: none;
}
.cid-udmITZXbnF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-udmITZXbnF .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-udmITZXbnF .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-udmITZXbnF .carousel-indicators {
    display: none;
  }
}
.cid-udmITZXbnF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-udmITZXbnF .carousel-inner > .active {
  display: block;
}
.cid-udmITZXbnF .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-udmITZXbnF .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-udmITZXbnF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-udmITZXbnF .carousel-control,
  .cid-udmITZXbnF .carousel-indicators,
  .cid-udmITZXbnF .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-udmITZXbnF .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-udmITZXbnF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-udmITZXbnF .carousel-indicators .active,
.cid-udmITZXbnF .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-udmITZXbnF .carousel-indicators .active {
  background: #fff;
}
.cid-udmITZXbnF .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-udmITZXbnF .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-udmITZXbnF .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-udmITZXbnF .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-udmITZXbnF .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-udmITZXbnF .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-udmITZXbnF .carousel {
  width: 100%;
}
.cid-udmITZXbnF .modal-backdrop.in {
  opacity: 0.8;
}
.cid-udmITZXbnF .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-udmITZXbnF .modal.fade .modal-dialog,
.cid-udmITZXbnF .modal.in .modal-dialog {
  transform: none;
}
.cid-udmITZXbnF .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-udmITZXbnF .content-head {
  max-width: 800px;
}
.cid-udmITZXbnF img {
  border-radius: 20px;
  box-shadow: 0px 0px 15px 3px rgba(254, 40, 145, 0.3);
}
.cid-udmITZXbnF H3 {
  color: #ffffff;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.5;
  text-shadow: 3px 3px #000000;
}
.cid-udmITZXbnF H4 {
  color: #ffffff;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.5;
  text-shadow: 2px 2px #000000;
  font-weight: 300;
}
.cid-udmITZXbnF H6 {
  color: #fafafa;
}
.cid-udmITZXbnF .mbr-section-subtitle {
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 3px;
  line-height: 1.8;
}
.cid-udmITZXbnF .mbr-section-subdomain {
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  font-size: 28px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
  padding-bottom: 5px;
}
.cid-udmITZXbnF .mbr-item-subtitle {
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1.5;
}
.cid-udmITZXbnF .mbr-section-subdomain2 {
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  font-size: 24px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
}
.cid-udmITZXbnF .mbr-section-gallery {
  font-weight: 300;
  color: #d7ff06;
  text-align: left;
  font-size: 30px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
}
.cid-udmITZXbnF .mbr-section-gallery2 {
  font-weight: 300;
  color: #d7ff06;
  text-align: left;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
}
.cid-udmITZXbnF P {
  color: #ffffff;
}
.cid-udmrdeMfDp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background-colourised.jpg");
  background-size: auto;
  background-repeat: repeat;
}
.cid-udmrdeMfDp .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-udmrdeMfDp .item {
    margin-bottom: 1rem;
  }
}
.cid-udmrdeMfDp .item-wrapper {
  position: relative;
}
.cid-udmrdeMfDp .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-udmrdeMfDp .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-udmrdeMfDp .carousel-control,
.cid-udmrdeMfDp .close {
  background: #1b1b1b;
}
.cid-udmrdeMfDp .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-udmrdeMfDp .carousel-control-prev span {
  margin-right: 5px;
}
.cid-udmrdeMfDp .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-udmrdeMfDp .carousel-control-next span {
  margin-left: 5px;
}
.cid-udmrdeMfDp .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-udmrdeMfDp .close::before {
  content: '\e91a';
}
.cid-udmrdeMfDp .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-udmrdeMfDp .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-udmrdeMfDp .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-udmrdeMfDp .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-udmrdeMfDp .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-udmrdeMfDp .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-udmrdeMfDp .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-udmrdeMfDp .carousel-indicators li.active,
.cid-udmrdeMfDp .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-udmrdeMfDp .carousel-indicators li::after,
.cid-udmrdeMfDp .carousel-indicators li::before {
  content: none;
}
.cid-udmrdeMfDp .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-udmrdeMfDp .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-udmrdeMfDp .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-udmrdeMfDp .carousel-indicators {
    display: none;
  }
}
.cid-udmrdeMfDp .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-udmrdeMfDp .carousel-inner > .active {
  display: block;
}
.cid-udmrdeMfDp .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-udmrdeMfDp .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-udmrdeMfDp .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-udmrdeMfDp .carousel-control,
  .cid-udmrdeMfDp .carousel-indicators,
  .cid-udmrdeMfDp .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-udmrdeMfDp .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-udmrdeMfDp .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-udmrdeMfDp .carousel-indicators .active,
.cid-udmrdeMfDp .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-udmrdeMfDp .carousel-indicators .active {
  background: #fff;
}
.cid-udmrdeMfDp .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-udmrdeMfDp .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-udmrdeMfDp .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-udmrdeMfDp .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-udmrdeMfDp .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-udmrdeMfDp .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-udmrdeMfDp .carousel {
  width: 100%;
}
.cid-udmrdeMfDp .modal-backdrop.in {
  opacity: 0.8;
}
.cid-udmrdeMfDp .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-udmrdeMfDp .modal.fade .modal-dialog,
.cid-udmrdeMfDp .modal.in .modal-dialog {
  transform: none;
}
.cid-udmrdeMfDp .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-udmrdeMfDp .content-head {
  max-width: 800px;
}
.cid-udmrdeMfDp img {
  border-radius: 20px;
  box-shadow: 0px 0px 15px 3px rgba(254, 40, 145, 0.3);
}
.cid-udmrdeMfDp H3 {
  color: #d7ff06;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.5;
  text-shadow: 3px 3px #000000;
}
.cid-udmrdeMfDp H4 {
  color: #ffffff;
  text-align: center;
  letter-spacing: 3px;
  font-weight: 300;
  line-height: 1.5;
  text-shadow: 2px 2px #000000;
}
.cid-udmrdeMfDp H6 {
  color: #fafafa;
}
.cid-udmrdeMfDp .mbr-section-subtitle {
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 3px;
  line-height: 1.8;
}
.cid-udmrdeMfDp .mbr-section-subdomain {
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  font-size: 28px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
  padding-bottom: 5px;
}
.cid-udmrdeMfDp .mbr-item-subtitle {
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1.5;
}
.cid-udmrdeMfDp .mbr-section-subdomain2 {
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  font-size: 24px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
}
.cid-udmrdeMfDp .mbr-section-gallery {
  font-weight: 300;
  color: #d7ff06;
  text-align: left;
  font-size: 30px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
}
.cid-udmrdeMfDp .mbr-section-gallery2 {
  font-weight: 300;
  color: #d7ff06;
  text-align: left;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 2px 2px #000000;
}
