body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Comfortaa', display;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Comfortaa', display;
  font-size: 1.1rem;
}
.display-7 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #e6c068 !important;
}
.bg-success {
  background-color: #000000 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #000000 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #dba526;
  border-color: #dba526;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #e6c068 !important;
  border-color: #e6c068 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #dba526 !important;
  border-color: #dba526 !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #dba526 !important;
  border-color: #dba526 !important;
}
.btn-secondary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #000000;
  border-color: #000000;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-success {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #000000;
  border-color: #000000;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #000000;
  border-color: #000000;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
  border-radius: 100px;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #e6c068;
  border-color: #e6c068;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #c79521;
  color: #c79521 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #e6c068;
  border-color: #e6c068;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #e6c068 !important;
  border-color: #e6c068 !important;
}
.btn-secondary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #000000;
  border-color: #000000;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #000000;
  border-color: #000000;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #000000;
  border-color: #000000;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #000000;
  border-color: #000000;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #000000;
  border-color: #000000;
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #000000;
  border-color: #000000;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #333333;
  border-color: #333333;
  border-radius: 100px;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white-outline:hover:before,
.btn-white-outline:focus:before,
.btn-white-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.text-primary {
  color: #e6c068 !important;
}
.text-secondary {
  color: #000000 !important;
}
.text-success {
  color: #000000 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #000000 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #c79521 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cccccc !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: #000000;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #000000;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s, .3s, .3s, .8s;
  transition-timing-function: ease-in-out;
}
.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 {
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  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: #e6c068;
  border-color: #e6c068;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #e6c068;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.5rem;
}
blockquote {
  border-color: #e6c068;
}
/* Forms */
.mbr-form .btn {
  margin: .3rem 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 2rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background: #efefef;
  color: #000000;
}
.jq-selectbox li {
  border-radius: 22px;
  background-color: #e6c068;
  border: 1px solid #e8e8e8;
}
.jq-selectbox li:not(:nth-last-child(1)) {
  margin-bottom: 5px;
}
.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-number__spin {
  border-radius: 22px;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #e6c068;
  border-bottom-color: #e6c068;
}
.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: #e6c068 !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: #000000 !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: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23e6c068' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-uCxlyxTQ0r .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uCxlyxTQ0r .nav-item:focus,
.cid-uCxlyxTQ0r .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uCxlyxTQ0r .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uCxlyxTQ0r .nav-item .nav-link {
    position: relative;
  }
  .cid-uCxlyxTQ0r .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #e6c068, #000000);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uCxlyxTQ0r .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uCxlyxTQ0r .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCxlyxTQ0r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uCxlyxTQ0r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCxlyxTQ0r .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uCxlyxTQ0r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCxlyxTQ0r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uCxlyxTQ0r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCxlyxTQ0r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCxlyxTQ0r .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uCxlyxTQ0r .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
  background: linear-gradient(#e6c068, #ffffff);
}
.cid-uCxlyxTQ0r .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
  background: linear-gradient(#e6c068, #ffffff) !important;
}
.cid-uCxlyxTQ0r .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uCxlyxTQ0r .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-uCxlyxTQ0r .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uCxlyxTQ0r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uCxlyxTQ0r .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uCxlyxTQ0r .navbar.collapsed .navbar-collapse.show,
.cid-uCxlyxTQ0r .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uCxlyxTQ0r .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uCxlyxTQ0r .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uCxlyxTQ0r .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uCxlyxTQ0r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCxlyxTQ0r .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCxlyxTQ0r .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCxlyxTQ0r .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCxlyxTQ0r .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uCxlyxTQ0r .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCxlyxTQ0r .navbar.collapsed .right-menu,
.cid-uCxlyxTQ0r .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uCxlyxTQ0r .navbar .navbar-collapse.show,
  .cid-uCxlyxTQ0r .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uCxlyxTQ0r .navbar .navbar-collapse.show .brand-container,
  .cid-uCxlyxTQ0r .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uCxlyxTQ0r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCxlyxTQ0r .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uCxlyxTQ0r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCxlyxTQ0r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCxlyxTQ0r .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCxlyxTQ0r .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uCxlyxTQ0r .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCxlyxTQ0r .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uCxlyxTQ0r .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uCxlyxTQ0r .navbar .right-menu,
  .cid-uCxlyxTQ0r .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uCxlyxTQ0r .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCxlyxTQ0r .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#e6c068, #ffffff) !important;
}
.cid-uCxlyxTQ0r .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCxlyxTQ0r .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCxlyxTQ0r .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCxlyxTQ0r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCxlyxTQ0r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCxlyxTQ0r .dropdown-item.active,
.cid-uCxlyxTQ0r .dropdown-item:active {
  background-color: transparent;
}
.cid-uCxlyxTQ0r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCxlyxTQ0r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCxlyxTQ0r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCxlyxTQ0r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCxlyxTQ0r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCxlyxTQ0r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCxlyxTQ0r ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uCxlyxTQ0r ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uCxlyxTQ0r .navbar-buttons {
  margin-left: auto;
}
.cid-uCxlyxTQ0r button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uCxlyxTQ0r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uCxlyxTQ0r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCxlyxTQ0r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCxlyxTQ0r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCxlyxTQ0r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCxlyxTQ0r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCxlyxTQ0r nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uCxlyxTQ0r nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uCxlyxTQ0r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCxlyxTQ0r .navbar-dropdown {
  position: fixed;
}
.cid-uCxlyxTQ0r a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uCxlyxTQ0r .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCxlyxTQ0r .right-menu,
.cid-uCxlyxTQ0r .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uCxlyxTQ0r .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uCxlyxTQ0r .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uCxlyxTQ0r .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uCxlyxTQ0r .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-uCxlyxTQ0r .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-uCxlyxTQ0r .card-wrapper {
  z-index: 3;
}
.cid-uCxlyxTQ0r .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uCxlyxTQ0r .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCxlyxTQ0r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uTLwyec4br {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/2a9994dba89e7727155a4eca8b282361.gif");
}
.cid-uTLwyec4br h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-uTLwyec4br span {
  background-image: url("../../../assets/images/metallic-gold-wallpaper-4k-68980487-1-1024x1282.png");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uTLwyec4br .mbr-section-title {
  color: #ffffff;
}
.cid-uMLrIKdven {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uMLrIKdven .item:focus,
.cid-uMLrIKdven span:focus {
  outline: none;
}
.cid-uMLrIKdven .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-uMLrIKdven .item {
  background-image: linear-gradient(90deg, #000000 -10%, #e6c068 60%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  min-height: 90px;
}
@media (max-width: 768px) {
  .cid-uMLrIKdven .item {
    min-height: 45px;
  }
}
.cid-uyahRq751u {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uyahRq751u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyahRq751u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uyahRq751u .container {
    padding: 0 22px;
  }
}
.cid-uyahRq751u .card {
  justify-content: center;
}
.cid-uyahRq751u .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uyahRq751u .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uyahRq751u .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uyahRq751u .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uyahRq751u .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uyahRq751u .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #e6c068;
}
@media (max-width: 1440px) {
  .cid-uyahRq751u .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uyahRq751u .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uyahRq751u .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uyahRq751u .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uyahRq751u .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uyahRq751u .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uy52MlDnwr {
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uy52MlDnwr .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-uy52MlDnwr .mbr-section-btn {
    margin-left: 0;
    margin-right: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-uy52MlDnwr .mbr-section-btn {
    margin-left: .5rem;
    margin-right: .5rem;
  }
}
.cid-uy52MlDnwr .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uy52MlDnwr .btn:hover,
.cid-uy52MlDnwr .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-uy52MlDnwr .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-uy52MlDnwr .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uy52MlDnwr .btn:hover:before,
.cid-uy52MlDnwr .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-uy52MlDnwr .btn-secondary {
  color: #000000 !important;
}
.cid-uy52MlDnwr .btn-secondary:hover {
  color: #000000 !important;
}
.cid-uy52MlDnwr .mbr-section-subtitle {
  color: #c88c00;
}
.cid-uy52MlDnwr .mbr-section-title,
.cid-uy52MlDnwr .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uy531ecGxy {
  background-image: url("../../../assets/images/77ff7d0e1ffc85a8d6ad7d8a897f886f.jpg-564x551.jpg");
  margin-top: -3px;
  border-bottom: 3px solid #e6c068;
  border-top: 3px solid #e6c068;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-uy531ecGxy .row {
  align-items: center;
}
.cid-uy531ecGxy .text-wrapper {
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uy531ecGxy .content {
  position: relative;
  border: 3px solid #e6c068;
  padding: 40px;
}
.cid-uy531ecGxy .label {
  position: absolute;
  border-radius: 20px;
  background-color: #e6c068;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  font-family: "Josefin Sans";
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
}
@media (max-width: 991px) {
  .cid-uy531ecGxy .text-wrapper {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .cid-uy531ecGxy .card {
    height: 300px;
  }
}
.cid-uMLsSPczsT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uMLsSPczsT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMLsSPczsT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uMLsSPczsT .container {
    padding: 0 20px;
  }
}
.cid-uMLsSPczsT .row {
  padding: 0 8px;
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uMLsSPczsT .row {
    padding: 0;
  }
}
.cid-uMLsSPczsT .mbr-section-title {
  margin-bottom: 50px;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uMLsSPczsT .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uMLsSPczsT .item {
  padding: 0 8px;
  overflow: visible;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uMLsSPczsT .item {
    padding: 0 12px;
  }
}
.cid-uMLsSPczsT .item .item-wrapper {
  position: relative;
  border-radius: 50px;
  padding: 50px;
  display: flex;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uMLsSPczsT .item .item-wrapper {
    padding: 32px 16px;
    flex-direction: column-reverse;
  }
}
.cid-uMLsSPczsT .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #000000;
  opacity: .5;
}
.cid-uMLsSPczsT .item .item-wrapper .blur-wrap_1,
.cid-uMLsSPczsT .item .item-wrapper .blur-wrap_2 {
  position: absolute;
  top: 0;
  right: -12%;
  width: 60%;
  height: 60%;
  border-radius: 100%;
  filter: blur(300px);
}
.cid-uMLsSPczsT .item .item-wrapper .blur-wrap_1 {
  background-color: #c88c00;
}
.cid-uMLsSPczsT .item .item-wrapper .blur-wrap_2 {
  background-color: #643e02;
}
.cid-uMLsSPczsT .item .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uMLsSPczsT .item .item-wrapper .item-content {
    width: 100%;
  }
}
.cid-uMLsSPczsT .item .item-wrapper .item-content .item-title {
  margin-bottom: 32px;
}
.cid-uMLsSPczsT .item .item-wrapper .item-content .item-desc {
  opacity: .5;
  margin-bottom: 16px;
}
.cid-uMLsSPczsT .item .item-wrapper .item-content .list {
  list-style-position: inside;
  margin-bottom: 32px;
  padding: 0;
}
.cid-uMLsSPczsT .item .item-wrapper .item-content .list .item-wrap {
  margin-bottom: 0;
}
.cid-uMLsSPczsT .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
}
.cid-uMLsSPczsT .item .item-wrapper .item-img {
  width: 50%;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uMLsSPczsT .item .item-wrapper .item-img {
    margin-bottom: 50px;
    width: 100%;
  }
}
.cid-uMLsSPczsT .item .item-wrapper .item-img img {
  height: 200px;
  width: 200px;
  object-fit: cover;
  border-radius: 100%;
  margin: 0 auto;
}
.cid-uMLsSPczsT .item-title {
  color: #e6c068;
}
.cid-uMLsSPczsT .item-desc {
  color: #ffffff;
}
.cid-uMLsSPczsT .mbr-text {
  color: #ffffff;
}
.cid-uMLsSPczsT .list {
  color: #ffffff;
}
.cid-uyap2YycWQ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uyap2YycWQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyap2YycWQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyap2YycWQ .container,
.cid-uyap2YycWQ .container-fluid {
  position: relative;
}
.cid-uyap2YycWQ .row {
  justify-content: left;
}
.cid-uyap2YycWQ .col-content {
  position: relative;
  z-index: 10;
}
.cid-uyap2YycWQ .mbr-section-title {
  color: #000000;
}
.cid-uyap2YycWQ .mbr-section-subtitle {
  color: #2B2B2B;
}
.cid-uyap2YycWQ .mbr-text {
  color: #2B2B2B;
}
.cid-uyap2YycWQ .mbr-section-btn .btn-primary:hover {
  background-color: #cecec1 !important;
  color: #2b2b2b !important;
}
.cid-uyap2YycWQ .circle-blur {
  position: absolute;
  transform: translate(50%, -50%);
  display: block;
  width: 320px;
  height: 320px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .97;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
@media (max-width: 991px) {
  .cid-uyap2YycWQ .circle-blur {
    width: 240px;
    height: 240px;
  }
}
.cid-uyap2YycWQ .circle-blur1 {
  top: 0;
  right: 70%;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uyap2YycWQ .circle-blur2 {
  top: 30%;
  right: 50%;
  background-image: linear-gradient(132deg, #e6c068 27%, #e6c068 50%, #e6c068 79%);
}
.cid-uyap2YycWQ .circle-blur3 {
  top: 50%;
  right: 10%;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uyap2YycWQ .circle-blur4 {
  top: 75%;
  right: 25%;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uDnjWJjPxW {
  padding-top: 15px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/burnish-amarillo-quemado-600x600.jpg");
}
.cid-uDnjWJjPxW h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-uDnjWJjPxW span {
  background-image: url("../../../assets/images/burnish-amarillo-quemado-600x600.jpg");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uDnjWJjPxW .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uyaq4tgWEW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uyaq4tgWEW .line {
  background-color: #e6c068;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uyaq4tgWEW .mbr-text {
  color: #000000;
}
.cid-uTLz6HEMzs {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uTLz6HEMzs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTLz6HEMzs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTLz6HEMzs .card {
  justify-content: flex-end;
}
.cid-uTLz6HEMzs .label-wrapper .mbr-label {
  margin-bottom: 22px;
}
.cid-uTLz6HEMzs .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uTLz6HEMzs .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uTLz6HEMzs .mbr-section-btn {
  text-align: right;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uTLz6HEMzs .mbr-section-btn {
    text-align: left;
    margin-bottom: 32px;
  }
}
.cid-uTLz6HEMzs .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uTLz6HEMzs .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 3px dashed #e6c068;
  border-bottom: none;
  border-right: none;
}
@media (max-width: 992px) {
  .cid-uTLz6HEMzs .items-wrapper {
    display: block;
  }
}
.cid-uTLz6HEMzs .items-wrapper .item .item-wrapper {
  padding: 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-right: 3px dashed #e6c068;
  border-bottom: 3px dashed #e6c068;
}
@media (max-width: 1200px) {
  .cid-uTLz6HEMzs .items-wrapper .item .item-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uTLz6HEMzs .items-wrapper .item .item-wrapper {
    padding: 22px;
  }
}
.cid-uTLz6HEMzs .items-wrapper .item .item-wrapper .item-img {
  width: 40%;
  display: flex;
  justify-content: center;
}
@media (max-width: 1200px) {
  .cid-uTLz6HEMzs .items-wrapper .item .item-wrapper .item-img {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uTLz6HEMzs .items-wrapper .item .item-wrapper .item-img img {
  height: 210px;
  width: 155px;
  object-fit: cover;
  padding: 16px;
  border: 3px dashed #e6c068;
}
@media (max-width: 1200px) {
  .cid-uTLz6HEMzs .items-wrapper .item .item-wrapper .item-img img {
    width: 100%;
    height: 300px;
  }
}
@media (max-width: 992px) {
  .cid-uTLz6HEMzs .items-wrapper .item .item-wrapper .item-img img {
    padding: 22px;
  }
}
.cid-uTLz6HEMzs .items-wrapper .item .item-wrapper .item-content {
  width: 60%;
  padding-left: 22px;
}
@media (max-width: 1200px) {
  .cid-uTLz6HEMzs .items-wrapper .item .item-wrapper .item-content {
    padding-left: 0;
    width: 100%;
  }
}
.cid-uTLz6HEMzs .items-wrapper .item .item-wrapper .item-content .title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-bottom: 22px;
}
@media (max-width: 1440px) {
  .cid-uTLz6HEMzs .items-wrapper .item .item-wrapper .item-content .title-wrapper {
    display: block;
    margin-bottom: 0;
  }
}
.cid-uTLz6HEMzs .items-wrapper .item .item-wrapper .item-content .title-wrapper .item-number {
  margin-bottom: 0;
  padding-left: 22px;
  white-space: nowrap;
}
@media (max-width: 1440px) {
  .cid-uTLz6HEMzs .items-wrapper .item .item-wrapper .item-content .title-wrapper .item-number {
    padding-left: 0;
    margin-bottom: 22px;
  }
}
.cid-uTLz6HEMzs .items-wrapper .item .item-wrapper .item-content .title-wrapper .item-title {
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-uTLz6HEMzs .items-wrapper .item .item-wrapper .item-content .title-wrapper .item-title {
    margin-bottom: 22px;
  }
}
.cid-uTLz6HEMzs .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-uTLz6HEMzs .items-wrapper .item .card_1 .item-img img {
  transform: rotate(6deg);
}
@media (max-width: 1200px) {
  .cid-uTLz6HEMzs .items-wrapper .item .card_1 .item-img img {
    transform: none;
  }
}
.cid-uTLz6HEMzs .items-wrapper .item .card_2 .item-img img {
  transform: rotate(-6deg);
}
@media (max-width: 1200px) {
  .cid-uTLz6HEMzs .items-wrapper .item .card_2 .item-img img {
    transform: none;
  }
}
.cid-uTLz6HEMzs .mbr-label {
  color: #c10b02;
}
.cid-uTLz6HEMzs .mbr-section-title {
  color: #c10b02;
}
.cid-uTLz6HEMzs .item-number {
  color: #c88c00;
}
.cid-uTLz6HEMzs .item-title {
  color: #c10b02;
}
.cid-uTLz6HEMzs .item-text {
  color: #4b4949;
}
.cid-uTLz6HEMzs .item-title,
.cid-uTLz6HEMzs .mbr-section-btn {
  color: #000000;
}
.cid-uTLmCiqlzX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uTLmCiqlzX .container {
  max-width: 800px;
}
.cid-uTLmCiqlzX .col-text {
  position: relative;
  margin-bottom: 8rem;
}
.cid-uTLmCiqlzX .mbr-text {
  color: #e6c068;
  position: relative;
  z-index: 2;
}
.cid-uTLmCiqlzX .icon-box {
  position: absolute;
  bottom: -3.2rem;
  right: -5.5rem;
}
@media (max-width: 1199px) {
  .cid-uTLmCiqlzX .icon-box {
    bottom: -6.6rem;
    right: 1.2rem;
  }
}
.cid-uTLmCiqlzX .icon-box span {
  color: #e6c068;
}
.cid-uTLmCiqlzX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTLmCiqlzX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy6KvDF0mq {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uy6KvDF0mq .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: white;
  transition: all 0.3s;
  transform: rotate(180deg);
}
.cid-uy6KvDF0mq .panel-group {
  border: none;
}
.cid-uy6KvDF0mq .card-header {
  padding: 1.2rem 0.5rem;
}
@media (max-width: 767px) {
  .cid-uy6KvDF0mq .card-header {
    padding: 1rem 0rem;
  }
}
.cid-uy6KvDF0mq .panel-body {
  padding: 0 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-uy6KvDF0mq .panel-body {
    padding: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-uy6KvDF0mq .img-col {
  padding: 0;
}
.cid-uy6KvDF0mq .img-item {
  height: 100%;
}
.cid-uy6KvDF0mq img {
  height: 100%;
  object-fit: cover;
}
.cid-uy6KvDF0mq .collapsed span {
  transform: rotate(0deg);
}
.cid-uy6KvDF0mq .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uy6KvDF0mq p {
  margin-bottom: 0.3rem;
}
.cid-uy6KvDF0mq .panel-title-edit {
  color: #e9c0e9;
  text-align: center;
}
.cid-uy6KvDF0mq .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-uy6KvDF0mq .card {
  background: #e6c068;
  padding: 1rem 2rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-uy6KvDF0mq .card {
    padding: 1.5rem;
  }
}
.cid-uy6KvDF0mq .panel-text {
  color: #320707;
}
.cid-uy6KvDF0mq .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uy6KvDF0mq .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uy6KvDF0mq .panel-title-edit,
.cid-uy6KvDF0mq .mbr-iconfont {
  color: #320707;
}
.cid-uTLA8Yypum {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uTLA8Yypum .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTLA8Yypum .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTLA8Yypum .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uTLA8Yypum .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uTLA8Yypum .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uTLA8Yypum .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uTLA8Yypum .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uTLA8Yypum .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uTLA8Yypum .item {
  padding: 0 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uTLA8Yypum .item {
    margin-bottom: 28px;
  }
}
.cid-uTLA8Yypum .item .item-wrapper {
  padding: 24px;
  height: 100%;
  border: 1px solid #e6c068;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uTLA8Yypum .item .item-wrapper {
    padding: 16px;
  }
}
.cid-uTLA8Yypum .item .item-wrapper .item-content .icon-wrapper {
  height: 176px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uTLA8Yypum .item .item-wrapper .item-content .icon-wrapper {
    margin-bottom: 16px;
  }
}
.cid-uTLA8Yypum .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  display: inline-block;
  font-size: 70px;
  color: #e6c068;
  background: linear-gradient(90deg, #e6c068, #edd294 65%, #f4e5c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uTLA8Yypum .item .item-wrapper .item-content .item-title {
  margin-bottom: 8px;
}
.cid-uTLA8Yypum .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-uTLA8Yypum .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uTLA8Yypum .mbr-text,
.cid-uTLA8Yypum .text-wrapper {
  color: #9aa0a6;
  text-align: center;
}
.cid-uTLA8Yypum .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uTLA8Yypum .item-text {
  color: #0e0e10;
  text-align: center;
}
.cid-uTLA8Yypum .item-title,
.cid-uTLA8Yypum .icon-wrapper {
  color: #000000;
}
.cid-uTLADNagUB {
  padding-top: 15px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/burnish-amarillo-quemado-600x600.jpg");
}
.cid-uTLADNagUB h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-uTLADNagUB span {
  background-image: url("../../../assets/images/burnish-amarillo-quemado-600x600.jpg");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uTLADNagUB .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uTLnblgngH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uTLnblgngH h2,
.cid-uTLnblgngH h3,
.cid-uTLnblgngH h4,
.cid-uTLnblgngH h5 {
  margin: 0;
}
.cid-uTLnblgngH .mbr-section-head {
  margin-bottom: 40px;
}
@media (max-width: 680px) {
  .cid-uTLnblgngH .mbr-section-head {
    padding: 0 35px;
  }
}
.cid-uTLnblgngH .mbr-section-title {
  color: #000000;
  text-align: center;
  margin: 0;
}
.cid-uTLnblgngH .mbr-section-subtitle {
  color: #6b6b6b;
  text-align: center;
  margin: 0;
}
.cid-uTLnblgngH .card-container {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.cid-uTLnblgngH .card {
  width: 20%;
  padding: 0 15px;
  margin-bottom: 30px;
  transition: all 1s ease-out;
}
.cid-uTLnblgngH .card:nth-child(2n + 1) {
  margin-top: 57px;
}
@media (max-width: 1024px) {
  .cid-uTLnblgngH .card:nth-child(2n + 1) {
    margin-top: 0;
  }
}
@media (max-width: 1024px) {
  .cid-uTLnblgngH .card {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-uTLnblgngH .card {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-uTLnblgngH .image-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.cid-uTLnblgngH .image-wrap::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 1s ease-out;
  --qodef-gradient-color-1: rgba(248, 117, 117, 0.8);
  --qodef-gradient-color-2: rgba(255, 160, 160, 0.44);
  --qodef-gradient-color-3: rgba(254, 216, 255, 0);
  --qodef-gradient-color-4: #b1d2fe;
  --qodef-gradient-color-5: rgba(230, 255, 250, 0);
  --qodef-gradient-color-6: #d8cafe;
  background: radial-gradient(105.68% 45.69% at 92.95% 50%, var(--qodef-gradient-color-1) 0, var(--qodef-gradient-color-2) 53.91%, var(--qodef-gradient-color-3) 100%), radial-gradient(103.18% 103.18% at 90.11% 102.39%, var(--qodef-gradient-color-4) 0, var(--qodef-gradient-color-5) 100%), radial-gradient(90.45% 90.45% at 87.84% 9.55%, var(--qodef-gradient-color-5) 0, rgba(254, 219, 246, 0) 100%), linear-gradient(135.66deg, var(--qodef-gradient-color-6) 14.89%, var(--qodef-gradient-color-6) 74.33%);
  z-index: 1;
  pointer-events: none;
}
.cid-uTLnblgngH .image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uTLnblgngH .card:hover {
  cursor: pointer;
}
.cid-uTLnblgngH .card:hover .image-wrap::before {
  opacity: 0.7;
}
.cid-uTLnblgngH .mbr-card-title {
  color: #000000;
  margin-top: 13px;
  margin-bottom: 4px;
}
.cid-uTLnblgngH .mbr-card-subtitle {
  color: #6b6b6b;
  margin-top: -5px;
  margin-bottom: 14px;
}
.cid-uTLnblgngH .item-caption {
  padding: 16px 0 8px;
  background: transparent;
}
.cid-uMLFogx3Pr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uMLFogx3Pr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMLFogx3Pr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMLFogx3Pr .content-wrapper .logo-wrapper {
  margin-bottom: 32px;
}
.cid-uMLFogx3Pr .content-wrapper .logo-wrapper img {
  width: 86px;
  height: 86px;
  border-radius: 100% !important;
  object-fit: contain;
  display: inline-flex;
}
.cid-uMLFogx3Pr .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uMLFogx3Pr .mbr-section-title {
  color: #191c25;
}
.cid-uMLFogx3Pr .mbr-copy {
  color: #000000;
  text-align: center;
}
.cid-uMLFogx3Pr .mbr-section-title,
.cid-uMLFogx3Pr .logo-wrapper {
  text-align: center;
}
.cid-uCxlyxTQ0r .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uCxlyxTQ0r .nav-item:focus,
.cid-uCxlyxTQ0r .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uCxlyxTQ0r .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uCxlyxTQ0r .nav-item .nav-link {
    position: relative;
  }
  .cid-uCxlyxTQ0r .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #e6c068, #000000);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uCxlyxTQ0r .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uCxlyxTQ0r .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCxlyxTQ0r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uCxlyxTQ0r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCxlyxTQ0r .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uCxlyxTQ0r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCxlyxTQ0r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uCxlyxTQ0r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCxlyxTQ0r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCxlyxTQ0r .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uCxlyxTQ0r .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
  background: linear-gradient(#e6c068, #ffffff);
}
.cid-uCxlyxTQ0r .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
  background: linear-gradient(#e6c068, #ffffff) !important;
}
.cid-uCxlyxTQ0r .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uCxlyxTQ0r .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-uCxlyxTQ0r .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uCxlyxTQ0r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uCxlyxTQ0r .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uCxlyxTQ0r .navbar.collapsed .navbar-collapse.show,
.cid-uCxlyxTQ0r .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uCxlyxTQ0r .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uCxlyxTQ0r .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uCxlyxTQ0r .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uCxlyxTQ0r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCxlyxTQ0r .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCxlyxTQ0r .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCxlyxTQ0r .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCxlyxTQ0r .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uCxlyxTQ0r .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCxlyxTQ0r .navbar.collapsed .right-menu,
.cid-uCxlyxTQ0r .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uCxlyxTQ0r .navbar .navbar-collapse.show,
  .cid-uCxlyxTQ0r .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uCxlyxTQ0r .navbar .navbar-collapse.show .brand-container,
  .cid-uCxlyxTQ0r .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uCxlyxTQ0r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCxlyxTQ0r .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uCxlyxTQ0r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCxlyxTQ0r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCxlyxTQ0r .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCxlyxTQ0r .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uCxlyxTQ0r .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCxlyxTQ0r .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uCxlyxTQ0r .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uCxlyxTQ0r .navbar .right-menu,
  .cid-uCxlyxTQ0r .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uCxlyxTQ0r .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCxlyxTQ0r .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#e6c068, #ffffff) !important;
}
.cid-uCxlyxTQ0r .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCxlyxTQ0r .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCxlyxTQ0r .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCxlyxTQ0r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCxlyxTQ0r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCxlyxTQ0r .dropdown-item.active,
.cid-uCxlyxTQ0r .dropdown-item:active {
  background-color: transparent;
}
.cid-uCxlyxTQ0r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCxlyxTQ0r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCxlyxTQ0r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCxlyxTQ0r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCxlyxTQ0r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCxlyxTQ0r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCxlyxTQ0r ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uCxlyxTQ0r ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uCxlyxTQ0r .navbar-buttons {
  margin-left: auto;
}
.cid-uCxlyxTQ0r button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uCxlyxTQ0r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uCxlyxTQ0r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCxlyxTQ0r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCxlyxTQ0r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCxlyxTQ0r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCxlyxTQ0r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCxlyxTQ0r nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uCxlyxTQ0r nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uCxlyxTQ0r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCxlyxTQ0r .navbar-dropdown {
  position: fixed;
}
.cid-uCxlyxTQ0r a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uCxlyxTQ0r .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCxlyxTQ0r .right-menu,
.cid-uCxlyxTQ0r .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uCxlyxTQ0r .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uCxlyxTQ0r .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uCxlyxTQ0r .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uCxlyxTQ0r .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-uCxlyxTQ0r .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-uCxlyxTQ0r .card-wrapper {
  z-index: 3;
}
.cid-uCxlyxTQ0r .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uCxlyxTQ0r .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCxlyxTQ0r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uy6OUsAm9K {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/7d3bd447f50c8a56178c6aa0bfb1c621.jpg-564x702.jpg");
}
.cid-uy6OUsAm9K h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-uy6OUsAm9K span {
  background-image: url("../../../assets/images/metallic-gold-wallpaper-4k-68980487-1-1024x1282.png");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uy6OUsAm9K .mbr-section-title {
  color: #ffffff;
}
.cid-uTLykksAL7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uTLykksAL7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTLykksAL7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTLykksAL7 .map-wrapper {
  height: 100%;
}
.cid-uTLykksAL7 .card-wrapper {
  border: 1px solid #e6c068;
  padding: 3rem 2.25rem;
  background: #ffffff;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uTLykksAL7 .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uTLykksAL7 .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-uTLykksAL7 .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uTLykksAL7 .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uTLykksAL7 .google-map {
  height: 100%;
  position: relative;
}
.cid-uTLykksAL7 .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uTLykksAL7 .google-map iframe {
    min-height: 350px;
  }
}
.cid-uTLykksAL7 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uTLykksAL7 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uTLykksAL7 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uTLykksAL7 ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uTLykksAL7 .content-head {
  max-width: 800px;
}
.cid-uTLykksAL7 .mbr-section-title {
  color: #0e0e10;
}
.cid-uTLykksAL7 .cardTitle {
  color: #000000;
}
.cid-uTLykksAL7 .list,
.cid-uTLykksAL7 .item-wrap {
  color: #000000;
}
.cid-uMLFaUT4iH {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uMLFaUT4iH [class^="socicon-"]:before,
.cid-uMLFaUT4iH [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-uMLFaUT4iH .social-list {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uMLFaUT4iH .soc-item {
  width: 50px;
  height: 50px;
  background: #e6c068;
  border-radius: 100%;
  display: flex;
  -webkit-box-shadow: 0 10px 15px rgba(219, 165, 38, 0.4);
  box-shadow: 0 10px 15px rgba(219, 165, 38, 0.4);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-uMLFaUT4iH .soc-item span {
  font-size: 1.4rem;
  color: #0e0e10 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uMLFaUT4iH .soc-item:hover span {
  color: #643e02 !important;
}
.cid-uMLFaUT4iH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMLFaUT4iH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMLFogx3Pr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uMLFogx3Pr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMLFogx3Pr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMLFogx3Pr .content-wrapper .logo-wrapper {
  margin-bottom: 32px;
}
.cid-uMLFogx3Pr .content-wrapper .logo-wrapper img {
  width: 86px;
  height: 86px;
  border-radius: 100% !important;
  object-fit: contain;
  display: inline-flex;
}
.cid-uMLFogx3Pr .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uMLFogx3Pr .mbr-section-title {
  color: #191c25;
}
.cid-uMLFogx3Pr .mbr-copy {
  color: #000000;
  text-align: center;
}
.cid-uMLFogx3Pr .mbr-section-title,
.cid-uMLFogx3Pr .logo-wrapper {
  text-align: center;
}
.cid-uCxlyxTQ0r .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uCxlyxTQ0r .nav-item:focus,
.cid-uCxlyxTQ0r .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uCxlyxTQ0r .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uCxlyxTQ0r .nav-item .nav-link {
    position: relative;
  }
  .cid-uCxlyxTQ0r .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #e6c068, #000000);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uCxlyxTQ0r .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uCxlyxTQ0r .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCxlyxTQ0r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uCxlyxTQ0r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCxlyxTQ0r .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uCxlyxTQ0r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCxlyxTQ0r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uCxlyxTQ0r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCxlyxTQ0r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCxlyxTQ0r .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uCxlyxTQ0r .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
  background: linear-gradient(#e6c068, #ffffff);
}
.cid-uCxlyxTQ0r .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
  background: linear-gradient(#e6c068, #ffffff) !important;
}
.cid-uCxlyxTQ0r .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uCxlyxTQ0r .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-uCxlyxTQ0r .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uCxlyxTQ0r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uCxlyxTQ0r .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uCxlyxTQ0r .navbar.collapsed .navbar-collapse.show,
.cid-uCxlyxTQ0r .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uCxlyxTQ0r .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uCxlyxTQ0r .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uCxlyxTQ0r .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uCxlyxTQ0r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCxlyxTQ0r .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCxlyxTQ0r .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCxlyxTQ0r .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCxlyxTQ0r .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uCxlyxTQ0r .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCxlyxTQ0r .navbar.collapsed .right-menu,
.cid-uCxlyxTQ0r .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uCxlyxTQ0r .navbar .navbar-collapse.show,
  .cid-uCxlyxTQ0r .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uCxlyxTQ0r .navbar .navbar-collapse.show .brand-container,
  .cid-uCxlyxTQ0r .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uCxlyxTQ0r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCxlyxTQ0r .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uCxlyxTQ0r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCxlyxTQ0r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCxlyxTQ0r .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCxlyxTQ0r .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uCxlyxTQ0r .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCxlyxTQ0r .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uCxlyxTQ0r .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uCxlyxTQ0r .navbar .right-menu,
  .cid-uCxlyxTQ0r .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uCxlyxTQ0r .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCxlyxTQ0r .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#e6c068, #ffffff) !important;
}
.cid-uCxlyxTQ0r .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCxlyxTQ0r .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCxlyxTQ0r .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCxlyxTQ0r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCxlyxTQ0r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCxlyxTQ0r .dropdown-item.active,
.cid-uCxlyxTQ0r .dropdown-item:active {
  background-color: transparent;
}
.cid-uCxlyxTQ0r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCxlyxTQ0r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCxlyxTQ0r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCxlyxTQ0r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCxlyxTQ0r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCxlyxTQ0r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCxlyxTQ0r ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uCxlyxTQ0r ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uCxlyxTQ0r .navbar-buttons {
  margin-left: auto;
}
.cid-uCxlyxTQ0r button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uCxlyxTQ0r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uCxlyxTQ0r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCxlyxTQ0r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCxlyxTQ0r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCxlyxTQ0r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCxlyxTQ0r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCxlyxTQ0r nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uCxlyxTQ0r nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uCxlyxTQ0r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCxlyxTQ0r .navbar-dropdown {
  position: fixed;
}
.cid-uCxlyxTQ0r a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uCxlyxTQ0r .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCxlyxTQ0r .right-menu,
.cid-uCxlyxTQ0r .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uCxlyxTQ0r .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uCxlyxTQ0r .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uCxlyxTQ0r .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uCxlyxTQ0r .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-uCxlyxTQ0r .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-uCxlyxTQ0r .card-wrapper {
  z-index: 3;
}
.cid-uCxlyxTQ0r .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uCxlyxTQ0r .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCxlyxTQ0r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sEYsuRennk {
  overflow: hidden !important;
  background-image: url("../../../assets/images/3cbed376172eaba9de5bb03f1066b339.jpg-522x564.jpg");
}
.cid-sEYsuRennk .animated-element {
  color: #efefef;
}
.cid-sEYsuRennk .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (min-width: 992px) {
  .cid-sEYsuRennk .img-block {
    padding-right: 2rem;
  }
}
.cid-sEYsuRennk .mbr-section-subtitle {
  color: #ffef00;
}
.cid-sEYsuRennk .mbr-text,
.cid-sEYsuRennk .mbr-section-btn {
  color: #000000;
}
.cid-sEYsuRennk .mbr-section-title {
  color: #000000;
}
.cid-uCxmJ7uKlI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCxmJ7uKlI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCxmJ7uKlI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCxmJ7uKlI .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uCxmJ7uKlI .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uCxmJ7uKlI .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uCxmJ7uKlI .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uCxmJ7uKlI .container {
    padding: 0 16px;
  }
}
.cid-uCxmJ7uKlI .content-wrapper {
  border-top: 1px solid #e6c068;
  border-bottom: 1px solid #e6c068;
  padding: 40px 0;
}
@media (max-width: 992px) {
  .cid-uCxmJ7uKlI .content-wrapper {
    padding: 20px 0;
  }
}
.cid-uCxmJ7uKlI .content-wrapper .content-wrap {
  display: inline-flex;
  width: 80%;
}
@media (max-width: 768px) {
  .cid-uCxmJ7uKlI .content-wrapper .content-wrap {
    display: block;
    width: 100%;
  }
}
.cid-uCxmJ7uKlI .content-wrapper .content-wrap:hover .mbr-iconfont,
.cid-uCxmJ7uKlI .content-wrapper .content-wrap:focus .mbr-iconfont {
  transform: translateX(1rem);
}
.cid-uCxmJ7uKlI .content-wrapper .content-wrap:hover .mbr-section-title,
.cid-uCxmJ7uKlI .content-wrapper .content-wrap:focus .mbr-section-title {
  text-decoration-color: #e6c068;
}
.cid-uCxmJ7uKlI .content-wrapper .content-wrap .mbr-iconfont {
  font-size: 100px;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  margin-right: 48px;
  color: #e6c068;
}
@media (max-width: 768px) {
  .cid-uCxmJ7uKlI .content-wrapper .content-wrap .mbr-iconfont {
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 60px;
  }
}
.cid-uCxmJ7uKlI .content-wrapper .content-wrap .mbr-section-title {
  text-decoration: underline;
  text-decoration-color: transparent;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uCxmJ7uKlI .mbr-section-title {
  color: #000000;
}
.cid-uCxmJ7uKlI .mbr-section-title,
.cid-uCxmJ7uKlI .content-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uCxqle23vC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uCxqle23vC .line {
  background-color: #e6c068;
  color: #e6c068;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uCxqle23vC .mbr-text {
  margin: 0;
  padding: 2rem 0;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-uCxqle23vC .inner-container {
    width: 100% !important;
    padding: 0 15px;
  }
}
.cid-uCxobbVECJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uCxobbVECJ .row {
  position: relative;
}
.cid-uCxobbVECJ .row .blur-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  height: 450px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #e6c068 50%, #e6c068);
  filter: blur(64px) blur(64px);
  z-index: 1;
}
@media (max-width: 768px) {
  .cid-uCxobbVECJ .row .blur-circle {
    display: none;
  }
}
.cid-uCxobbVECJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCxobbVECJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCxobbVECJ .row {
  justify-content: center;
}
.cid-uCxobbVECJ .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uCxobbVECJ .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uCxobbVECJ .row {
    padding: 0 24px;
  }
}
.cid-uCxobbVECJ .image-card {
  padding-right: 40px;
}
@media (max-width: 992px) {
  .cid-uCxobbVECJ .image-card {
    padding: 0 12px;
    margin-bottom: 3rem;
  }
}
.cid-uCxobbVECJ .text-card {
  padding-left: 40px;
}
@media (max-width: 992px) {
  .cid-uCxobbVECJ .text-card {
    padding: 0 12px;
  }
}
.cid-uCxobbVECJ .row.row-wrapper {
  padding: 64px;
  background-color: #ffffff;
  position: relative;
  z-index: 2;
  border-radius: 16px;
}
.cid-uCxobbVECJ .row.row-wrapper::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: -2rem;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 4px solid #e6c068;
  background-color: transparent;
  pointer-events: none;
}
@media (max-width: 768px) {
  .cid-uCxobbVECJ .row.row-wrapper {
    padding: 32px;
  }
}
.cid-uCxobbVECJ .row.row-wrapper .image-wrapper img {
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
}
.cid-uCxobbVECJ .row.row-wrapper .text-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-uCxobbVECJ .row.row-wrapper .text-wrapper {
    margin-bottom: 42px;
  }
}
.cid-uCxobbVECJ .row.row-wrapper .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uCxobbVECJ .row.row-wrapper .text-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-uCxobbVECJ .row.row-wrapper .text-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ffb639;
  z-index: -1;
}
.cid-uCxobbVECJ .row.row-wrapper .text-wrapper .link-wrapper {
  width: 100%;
  height: 100%;
  transition: all .3s ease;
}
.cid-uCxobbVECJ .row.row-wrapper .text-wrapper .link-wrapper:hover {
  opacity: .75;
}
.cid-uCxobbVECJ .row.row-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  text-decoration: underline;
}
.cid-uCxobbVECJ .row.row-wrapper .text-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-uCxobbVECJ .mbr-section-title {
  color: #e6c068;
}
.cid-uCxobbVECJ .mbr-link {
  color: #ffffff;
}
.cid-uCxobbVECJ .mbr-text {
  color: #000000;
}
.cid-uCxoTMGGgF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uCxoTMGGgF .row {
  position: relative;
}
.cid-uCxoTMGGgF .row .blur-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  height: 450px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #e6c068 50%, #e6c068);
  filter: blur(64px) blur(64px);
  z-index: 1;
}
@media (max-width: 768px) {
  .cid-uCxoTMGGgF .row .blur-circle {
    display: none;
  }
}
.cid-uCxoTMGGgF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCxoTMGGgF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCxoTMGGgF .row {
  justify-content: center;
}
.cid-uCxoTMGGgF .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uCxoTMGGgF .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uCxoTMGGgF .row {
    padding: 0 24px;
  }
}
.cid-uCxoTMGGgF .image-card {
  padding-right: 40px;
}
@media (max-width: 992px) {
  .cid-uCxoTMGGgF .image-card {
    padding: 0 12px;
    margin-bottom: 3rem;
  }
}
.cid-uCxoTMGGgF .text-card {
  padding-left: 40px;
}
@media (max-width: 992px) {
  .cid-uCxoTMGGgF .text-card {
    padding: 0 12px;
  }
}
.cid-uCxoTMGGgF .row.row-wrapper {
  padding: 64px;
  background-color: #ffffff;
  position: relative;
  z-index: 2;
  border-radius: 16px;
}
.cid-uCxoTMGGgF .row.row-wrapper::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: -2rem;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 4px solid #e6c068;
  background-color: transparent;
  pointer-events: none;
}
@media (max-width: 768px) {
  .cid-uCxoTMGGgF .row.row-wrapper {
    padding: 32px;
  }
}
.cid-uCxoTMGGgF .row.row-wrapper .image-wrapper img {
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
}
.cid-uCxoTMGGgF .row.row-wrapper .text-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-uCxoTMGGgF .row.row-wrapper .text-wrapper {
    margin-bottom: 42px;
  }
}
.cid-uCxoTMGGgF .row.row-wrapper .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uCxoTMGGgF .row.row-wrapper .text-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-uCxoTMGGgF .row.row-wrapper .text-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ffb639;
  z-index: -1;
}
.cid-uCxoTMGGgF .row.row-wrapper .text-wrapper .link-wrapper {
  width: 100%;
  height: 100%;
  transition: all .3s ease;
}
.cid-uCxoTMGGgF .row.row-wrapper .text-wrapper .link-wrapper:hover {
  opacity: .75;
}
.cid-uCxoTMGGgF .row.row-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  text-decoration: underline;
}
.cid-uCxoTMGGgF .row.row-wrapper .text-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-uCxoTMGGgF .mbr-section-title {
  color: #e6c068;
}
.cid-uCxoTMGGgF .mbr-link {
  color: #ffffff;
}
.cid-uCxoTMGGgF .mbr-text {
  color: #ffffff;
}
.cid-uMLFogx3Pr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uMLFogx3Pr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMLFogx3Pr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMLFogx3Pr .content-wrapper .logo-wrapper {
  margin-bottom: 32px;
}
.cid-uMLFogx3Pr .content-wrapper .logo-wrapper img {
  width: 86px;
  height: 86px;
  border-radius: 100% !important;
  object-fit: contain;
  display: inline-flex;
}
.cid-uMLFogx3Pr .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uMLFogx3Pr .mbr-section-title {
  color: #191c25;
}
.cid-uMLFogx3Pr .mbr-copy {
  color: #000000;
  text-align: center;
}
.cid-uMLFogx3Pr .mbr-section-title,
.cid-uMLFogx3Pr .logo-wrapper {
  text-align: center;
}
.cid-uCxlyxTQ0r .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uCxlyxTQ0r .nav-item:focus,
.cid-uCxlyxTQ0r .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uCxlyxTQ0r .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uCxlyxTQ0r .nav-item .nav-link {
    position: relative;
  }
  .cid-uCxlyxTQ0r .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #e6c068, #000000);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uCxlyxTQ0r .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uCxlyxTQ0r .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCxlyxTQ0r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uCxlyxTQ0r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCxlyxTQ0r .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uCxlyxTQ0r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCxlyxTQ0r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uCxlyxTQ0r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCxlyxTQ0r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCxlyxTQ0r .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uCxlyxTQ0r .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
  background: linear-gradient(#e6c068, #ffffff);
}
.cid-uCxlyxTQ0r .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
  background: linear-gradient(#e6c068, #ffffff) !important;
}
.cid-uCxlyxTQ0r .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uCxlyxTQ0r .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-uCxlyxTQ0r .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uCxlyxTQ0r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uCxlyxTQ0r .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uCxlyxTQ0r .navbar.collapsed .navbar-collapse.show,
.cid-uCxlyxTQ0r .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uCxlyxTQ0r .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uCxlyxTQ0r .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uCxlyxTQ0r .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uCxlyxTQ0r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCxlyxTQ0r .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCxlyxTQ0r .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCxlyxTQ0r .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCxlyxTQ0r .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uCxlyxTQ0r .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCxlyxTQ0r .navbar.collapsed .right-menu,
.cid-uCxlyxTQ0r .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uCxlyxTQ0r .navbar .navbar-collapse.show,
  .cid-uCxlyxTQ0r .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uCxlyxTQ0r .navbar .navbar-collapse.show .brand-container,
  .cid-uCxlyxTQ0r .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uCxlyxTQ0r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCxlyxTQ0r .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uCxlyxTQ0r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCxlyxTQ0r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCxlyxTQ0r .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCxlyxTQ0r .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uCxlyxTQ0r .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCxlyxTQ0r .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uCxlyxTQ0r .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uCxlyxTQ0r .navbar .right-menu,
  .cid-uCxlyxTQ0r .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uCxlyxTQ0r .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCxlyxTQ0r .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#e6c068, #ffffff) !important;
}
.cid-uCxlyxTQ0r .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCxlyxTQ0r .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCxlyxTQ0r .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCxlyxTQ0r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCxlyxTQ0r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCxlyxTQ0r .dropdown-item.active,
.cid-uCxlyxTQ0r .dropdown-item:active {
  background-color: transparent;
}
.cid-uCxlyxTQ0r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCxlyxTQ0r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCxlyxTQ0r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCxlyxTQ0r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCxlyxTQ0r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCxlyxTQ0r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCxlyxTQ0r ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uCxlyxTQ0r ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uCxlyxTQ0r .navbar-buttons {
  margin-left: auto;
}
.cid-uCxlyxTQ0r button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uCxlyxTQ0r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uCxlyxTQ0r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCxlyxTQ0r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCxlyxTQ0r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCxlyxTQ0r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCxlyxTQ0r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCxlyxTQ0r nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uCxlyxTQ0r nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uCxlyxTQ0r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCxlyxTQ0r .navbar-dropdown {
  position: fixed;
}
.cid-uCxlyxTQ0r a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uCxlyxTQ0r .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCxlyxTQ0r .right-menu,
.cid-uCxlyxTQ0r .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uCxlyxTQ0r .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uCxlyxTQ0r .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uCxlyxTQ0r .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uCxlyxTQ0r .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-uCxlyxTQ0r .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-uCxlyxTQ0r .card-wrapper {
  z-index: 3;
}
.cid-uCxlyxTQ0r .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uCxlyxTQ0r .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCxlyxTQ0r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMLyGk7SCd {
  overflow-x: hidden !important;
}
.cid-uMLyGk7SCd .container-fluid {
  padding: 0 3rem;
}
.cid-uMLyGk7SCd .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 100% 0;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 12s !important;
  animation-duration: 12s;
  background-image: url("../../../assets/images/86dcc7511e4d3d3ecaa0f296c78fc3be.jpg-564x564.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-uMLyGk7SCd .scroll-wrapper.second {
  left: calc(100% - 1px);
  background-position: 0 0;
}
.cid-uMLyGk7SCd .mbr-overlay {
  z-index: 1;
}
.cid-uMLyGk7SCd .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@media (max-width: 767px) {
  .cid-uMLyGk7SCd .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uMLyGk7SCd .mbr-section-title {
  text-align: center;
  color: #e6c068;
}
.cid-uMLyGk7SCd .mbr-section-subtitle,
.cid-uMLyGk7SCd .mbr-section-btn {
  text-align: center;
  color: #bbbbbb;
}
.cid-uMLzgSrTF8 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uMLzgSrTF8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMLzgSrTF8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMLzgSrTF8 .label-wrapper .mbr-label {
  margin-bottom: 22px;
}
.cid-uMLzgSrTF8 .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 54px;
  border: 3px dashed #c88c00;
}
@media (max-width: 992px) {
  .cid-uMLzgSrTF8 .card-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uMLzgSrTF8 .card-wrapper {
    padding: 22px;
  }
}
.cid-uMLzgSrTF8 .card-wrapper .content-wrapper {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uMLzgSrTF8 .card-wrapper .content-wrapper {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uMLzgSrTF8 .card-wrapper .content-wrapper .mbr-section-title {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uMLzgSrTF8 .card-wrapper .content-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-uMLzgSrTF8 .card-wrapper .content-wrapper .mbr-desc {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uMLzgSrTF8 .card-wrapper .content-wrapper .mbr-desc {
    margin-bottom: 22px;
  }
}
.cid-uMLzgSrTF8 .card-wrapper .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uMLzgSrTF8 .card-wrapper .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uMLzgSrTF8 .card-wrapper .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uMLzgSrTF8 .card-wrapper .image-wrapper {
  width: 48%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
}
@media (max-width: 1440px) {
  .cid-uMLzgSrTF8 .card-wrapper .image-wrapper {
    gap: 42px;
  }
}
@media (max-width: 992px) {
  .cid-uMLzgSrTF8 .card-wrapper .image-wrapper {
    width: 100%;
    gap: 22px;
    grid-template-columns: 1fr;
  }
}
.cid-uMLzgSrTF8 .card-wrapper .image-wrapper .image-wrap img {
  height: 510px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uMLzgSrTF8 .card-wrapper .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-uMLzgSrTF8 .mbr-label {
  color: #c10b02;
}
.cid-uMLzgSrTF8 .mbr-section-title {
  color: #c10b02;
}
.cid-uMLzgSrTF8 .mbr-desc {
  color: #4b4949;
}
.cid-uMLzgSrTF8 .mbr-text {
  color: #4b4949;
}
.cid-uMLzgSrTF8 .mbr-section-title,
.cid-uMLzgSrTF8 .mbr-section-btn {
  color: #e6c068;
}
.cid-uMLAp95O9k {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uMLAp95O9k .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMLAp95O9k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMLAp95O9k .row {
  justify-content: center;
}
.cid-uMLAp95O9k .image-wrapper img {
  height: 700px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uMLAp95O9k .image-wrapper img {
    height: 300px;
  }
}
.cid-uMLAp95O9k .card-wrapper {
  position: relative;
  padding: 64px;
  overflow: hidden;
  margin-top: -25%;
}
@media (max-width: 1440px) {
  .cid-uMLAp95O9k .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uMLAp95O9k .card-wrapper {
    padding: 24px;
    margin-top: 12px;
  }
}
.cid-uMLAp95O9k .card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  pointer-events: none;
}
.cid-uMLAp95O9k .card-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f5ecd9;
  opacity: .5;
  pointer-events: none;
}
.cid-uMLAp95O9k .card-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uMLAp95O9k .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uMLAp95O9k .card-wrapper .text-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uMLAp95O9k .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uMLAp95O9k .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uMLAp95O9k .card-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uMLAp95O9k .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uMLAp95O9k .mbr-section-title {
  color: #2c2c26;
}
.cid-uMLAp95O9k .mbr-text,
.cid-uMLAp95O9k .text-wrapper {
  color: #63635d;
  text-align: center;
}
.cid-uMLAp95O9k .mbr-section-title,
.cid-uMLAp95O9k .mbr-section-btn {
  text-align: center;
}
.cid-uMLBJEfnP2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uMLBJEfnP2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMLBJEfnP2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uMLBJEfnP2 .container {
    padding: 0 16px;
  }
}
.cid-uMLBJEfnP2 .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uMLBJEfnP2 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uMLBJEfnP2 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uMLBJEfnP2 .list-wrapper .text-wrap .mbr-section-subtitle {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uMLBJEfnP2 .list-wrapper .text-wrap .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uMLBJEfnP2 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uMLBJEfnP2 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uMLBJEfnP2 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uMLBJEfnP2 .list-wrapper .list-wrap .mbr-list-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uMLBJEfnP2 .list-wrapper .list-wrap .mbr-list-title {
    margin-bottom: 20px;
  }
}
.cid-uMLBJEfnP2 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uMLBJEfnP2 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uMLBJEfnP2 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uMLBJEfnP2 .list-wrapper .list-wrap .list .item-wrap:before {
  position: absolute;
  left: -32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e6c068;
  background-color: transparent;
  border: 3px solid #e6c068;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  content: "✓";
}
.cid-uMLBJEfnP2 .image-wrapper {
  position: relative;
  padding: 40px 100px 0;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uMLBJEfnP2 .image-wrapper {
    padding: 0;
  }
}
.cid-uMLBJEfnP2 .image-wrapper .image_1 {
  height: 520px;
  object-fit: cover;
  border-radius: 16px;
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uMLBJEfnP2 .image-wrapper .image_1 {
    height: 280px;
  }
}
.cid-uMLBJEfnP2 .image-wrapper .image_2 {
  position: absolute;
  top: 0;
  left: 5rem;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  z-index: 1;
}
@media (max-width: 768px) {
  .cid-uMLBJEfnP2 .image-wrapper .image_2 {
    display: none;
  }
}
.cid-uMLBJEfnP2 .image-wrapper .container-wrap {
  position: absolute;
  top: 1rem;
  left: 40px;
  height: 80%;
  width: 75%;
  border: 2px dashed #c88c00;
  border-top: 2px solid #c88c00;
  border-right: 2px solid #c88c00;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uMLBJEfnP2 .image-wrapper .container-wrap {
    display: none;
  }
}
.cid-uMLBJEfnP2 .mbr-section-title {
  color: #e6c068;
  text-align: center;
}
.cid-uMLBJEfnP2 .mbr-section-subtitle {
  color: #000000;
}
.cid-uMLBJEfnP2 .mbr-text {
  color: #000000;
}
.cid-uMLBJEfnP2 .mbr-list-title {
  color: #08323C;
}
.cid-uMLBJEfnP2 .list {
  color: #000000;
}
.cid-uMLFogx3Pr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uMLFogx3Pr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMLFogx3Pr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMLFogx3Pr .content-wrapper .logo-wrapper {
  margin-bottom: 32px;
}
.cid-uMLFogx3Pr .content-wrapper .logo-wrapper img {
  width: 86px;
  height: 86px;
  border-radius: 100% !important;
  object-fit: contain;
  display: inline-flex;
}
.cid-uMLFogx3Pr .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uMLFogx3Pr .mbr-section-title {
  color: #191c25;
}
.cid-uMLFogx3Pr .mbr-copy {
  color: #000000;
  text-align: center;
}
.cid-uMLFogx3Pr .mbr-section-title,
.cid-uMLFogx3Pr .logo-wrapper {
  text-align: center;
}
