body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
}
.display-7 {
  font-family: 'Crimson Text', serif;
  font-size: 1.9rem;
}
/* ---- 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: 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-2 {
    font-size: 1.52rem;
    font-size: calc( 1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((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: #d26eb2 !important;
}
.bg-success {
  background-color: #b2ccd2 !important;
}
.bg-info {
  background-color: #f4ae0d !important;
}
.bg-warning {
  background-color: #82786e !important;
}
.bg-danger {
  background-color: #879a9f !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: #ba3a91;
  border-color: #ba3a91;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #d26eb2 !important;
  border-color: #d26eb2 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #ba3a91 !important;
  border-color: #ba3a91 !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: #ba3a91 !important;
  border-color: #ba3a91 !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: #251b22;
  border-color: #251b22;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #513c4a !important;
  border-color: #513c4a !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #251b22 !important;
  border-color: #251b22 !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: #251b22 !important;
  border-color: #251b22 !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: #ad7b08;
  border-color: #ad7b08;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #f4ae0d !important;
  border-color: #f4ae0d !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #ad7b08 !important;
  border-color: #ad7b08 !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: #ffffff !important;
  background-color: #ad7b08 !important;
  border-color: #ad7b08 !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: #82acb6;
  border-color: #82acb6;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !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: #82acb6 !important;
  border-color: #82acb6 !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: #59524b;
  border-color: #59524b;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !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: #59524b !important;
  border-color: #59524b !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: #617479;
  border-color: #617479;
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !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: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !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: #d26eb2;
  border-color: #d26eb2;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #a63482;
  color: #a63482 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #d26eb2;
  border-color: #d26eb2;
}
.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: #d26eb2 !important;
  border-color: #d26eb2 !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: #513c4a;
  border-color: #513c4a;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #161114;
  color: #161114 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #513c4a;
  border-color: #513c4a;
}
.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: #513c4a !important;
  border-color: #513c4a !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: #f4ae0d;
  border-color: #f4ae0d;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #946907;
  color: #946907 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #f4ae0d;
  border-color: #f4ae0d;
}
.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: #ffffff !important;
  background-color: #f4ae0d !important;
  border-color: #f4ae0d !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: #b2ccd2;
  border-color: #b2ccd2;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.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: #b2ccd2 !important;
  border-color: #b2ccd2 !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: #82786e;
  border-color: #82786e;
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #4b453f;
  color: #4b453f !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #82786e;
  border-color: #82786e;
}
.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: #82786e !important;
  border-color: #82786e !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: #879a9f;
  border-color: #879a9f;
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #55666b;
  color: #55666b !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #879a9f;
  border-color: #879a9f;
}
.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: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !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: #d26eb2 !important;
}
.text-secondary {
  color: #513c4a !important;
}
.text-success {
  color: #b2ccd2 !important;
}
.text-info {
  color: #f4ae0d !important;
}
.text-warning {
  color: #82786e !important;
}
.text-danger {
  color: #879a9f !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #a63482 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #161114 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #72a1ac !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #946907 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #4b453f !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #55666b !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: #b2ccd2;
}
.alert-info {
  background-color: #f4ae0d;
}
.alert-warning {
  background-color: #82786e;
}
.alert-danger {
  background-color: #879a9f;
}
.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: #d26eb2;
  border-color: #d26eb2;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #d26eb2;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fdefd0;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ced6d8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Crimson Text', serif;
  font-size: 1.9rem;
}
blockquote {
  border-color: #d26eb2;
}
/* 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: #d26eb2;
  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: #d26eb2;
  border-bottom-color: #d26eb2;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #d26eb2 !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: #513c4a !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='%23d26eb2' %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-uSF2pK730Y {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uSF2pK730Y .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSF2pK730Y .btn {
  padding: .6rem 1.3rem;
}
@media (max-width: 767px) {
  .cid-uSF2pK730Y .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uSF2pK730Y .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSF2pK730Y .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uSF2pK730Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSF2pK730Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSF2pK730Y .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-uSF2pK730Y .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uSF2pK730Y .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uSF2pK730Y .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uSF2pK730Y .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uSF2pK730Y .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uSF2pK730Y .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uSF2pK730Y .navbar-nav {
    padding: 0 1rem;
  }
}
.cid-uSF2pK730Y .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uSF2pK730Y .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uSF2pK730Y .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uSF2pK730Y .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uSF2pK730Y .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uSF2pK730Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uSF2pK730Y .container {
  display: flex;
  height: 64px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(254, 218, 242, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2rem;
  margin-top: 1rem;
  background-color: #fedaf2;
}
@media (max-width: 992px) {
  .cid-uSF2pK730Y .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uSF2pK730Y .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uSF2pK730Y .container {
    width: auto;
    margin-left: 6.8rem;
  }
}
.cid-uSF2pK730Y .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSF2pK730Y .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #fedaf2;
  background: rgba(254, 218, 242, 0.8) !important;
  backdrop-filter: blur(10px);
}
.cid-uSF2pK730Y .nav-item:focus,
.cid-uSF2pK730Y .nav-link:focus {
  outline: none;
}
.cid-uSF2pK730Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSF2pK730Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSF2pK730Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSF2pK730Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSF2pK730Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSF2pK730Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSF2pK730Y .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uSF2pK730Y .navbar.opened {
  transition: all 0.3s;
}
.cid-uSF2pK730Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSF2pK730Y .navbar .navbar-logo img {
  width: auto;
}
.cid-uSF2pK730Y .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uSF2pK730Y .navbar.collapsed {
  justify-content: center;
}
.cid-uSF2pK730Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSF2pK730Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSF2pK730Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.7rem);
  }
}
.cid-uSF2pK730Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSF2pK730Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSF2pK730Y .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uSF2pK730Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSF2pK730Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSF2pK730Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uSF2pK730Y .navbar {
    min-height: 72px;
  }
  .cid-uSF2pK730Y .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uSF2pK730Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSF2pK730Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSF2pK730Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSF2pK730Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSF2pK730Y .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uSF2pK730Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSF2pK730Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uSF2pK730Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSF2pK730Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uSF2pK730Y .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uSF2pK730Y .dropdown-item.active,
.cid-uSF2pK730Y .dropdown-item:active {
  background-color: transparent;
}
.cid-uSF2pK730Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSF2pK730Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSF2pK730Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSF2pK730Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fedaf2;
}
.cid-uSF2pK730Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uSF2pK730Y .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uSF2pK730Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSF2pK730Y .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uSF2pK730Y .navbar-buttons {
    text-align: left;
  }
}
.cid-uSF2pK730Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSF2pK730Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uSF2pK730Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSF2pK730Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSF2pK730Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSF2pK730Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSF2pK730Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSF2pK730Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSF2pK730Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSF2pK730Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSF2pK730Y .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uSF2pK730Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSF2pK730Y .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uSF2pK730Y .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSF2pK730Y .navbar {
    height: 70px;
  }
  .cid-uSF2pK730Y .navbar.opened {
    height: auto;
  }
  .cid-uSF2pK730Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uSF2pK730Y .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uSF2pK730Y .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uSF2pK730Y .navbar-brand {
    margin-right: auto;
  }
  .cid-uSF2pK730Y .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #fedaf2;
    opacity: 1;
    border-color: rgba(254, 218, 242, 0.8) !important;
    background: rgba(254, 218, 242, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uSF2pK730Y .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uSF2pK730Y .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uSF2pK730Y .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uSF2pK730Y .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tWkQhhjkAb {
  overflow: hidden !important;
  background-image: url("../../../assets/images/20230627000902-fpdl.in-mujer-sexy-cabello-largo-labios-rojos-cinta-sujetador-265223-61742-normal-626x435.jpg-626x435.jpg");
}
.cid-tWkQhhjkAb .container-fluid {
  padding: 0 5rem;
}
.cid-tWkQhhjkAb .animated-element {
  color: #ff39c0;
}
.cid-tWkQhhjkAb .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tWkQhhjkAb .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tWkQhhjkAb .container-fluid {
    padding: 0 1rem;
  }
  .cid-tWkQhhjkAb .mbr-figure {
    margin-top: 1rem;
  }
}
.cid-tWkQhhjkAb .mbr-section-subtitle,
.cid-tWkQhhjkAb .mbr-section-btn {
  text-align: left;
}
.cid-tZQshQnEum {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tZQshQnEum .section-head {
  margin-bottom: 2rem;
}
.cid-tZQshQnEum .mbr-section-title {
  text-align: right;
  margin-bottom: 1.5rem;
}
.cid-tZQshQnEum .mbr-section-subtitle {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-tZQshQnEum .row {
    text-align: center;
  }
}
.cid-tZQshQnEum .wave-container {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: -1px;
  overflow: hidden;
}
.cid-tZQshQnEum .wave-container .wave {
  width: 5500px;
  position: relative;
  left: -3300px;
}
.cid-tZQshQnEum .wave-container .wave svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: wavy 35s infinite linear;
  backface-visibility: hidden;
}
.cid-tZQshQnEum .wave-container .wave svg path {
  fill: #000000;
}
@keyframes wavy {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
    animation-timing-function: linear;
  }
  100% {
    opacity: 1;
    transform: translateX(3230px) translateY(0px) rotate(0deg) scale(1, 1);
  }
}
.cid-tZQUjQ0ERD {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tZQUjQ0ERD h3 {
  position: relative;
}
.cid-tZQUjQ0ERD h3:after {
  position: absolute;
  content: '';
  left: 50%;
  bottom: -130px;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-tZQUjQ0ERD .mbr-iconfont {
  margin-top: 160px;
  display: block;
  font-size: 3rem;
  color: #e688c8;
}
.cid-tZQUjQ0ERD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZQUjQ0ERD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZQUjQ0ERD H3 {
  color: #ffffff;
}
.cid-tZQTJ8743z {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #f9e0f1;
}
.cid-tZQTJ8743z .line {
  background-color: #d26eb2;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tZQTJ8743z .mbr-text {
  color: #000000;
}
.cid-tZQVJAfadi {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-tZQVJAfadi h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-tZQVJAfadi span {
  background-image: url("../../../assets/images/700-fo57888323-03854ec4a07de27edaaef5a19629a7f5.jpg-1-700x495.jpeg");
  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-tZQVJAfadi .mbr-section-title {
  color: #ffffff;
}
.cid-uSyKHYqLJ2 {
  overflow: hidden !important;
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(to right, #000000 0%, #000000 30%, #000000 30%, #000000 100%);
}
.cid-uSyKHYqLJ2 .animated-element {
  color: #e688c8;
}
.cid-uSyKHYqLJ2 .img-block {
  -webkit-align-self: center;
  align-self: center -5px;
}
.cid-uSyKHYqLJ2 .mbr-section-subtitle {
  color: #f6b9e2;
}
@media (min-width: 992px) {
  .cid-uSyKHYqLJ2 .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uSyKHYqLJ2 .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-uSyKHYqLJ2 {
    background: #000000;
  }
  .cid-uSyKHYqLJ2 .img-block {
    padding-bottom: 2rem;
  }
}
.cid-uSyKHYqLJ2 .mbr-section-title {
  color: #000000;
}
.cid-uSyKHYqLJ2 .mbr-text,
.cid-uSyKHYqLJ2 .mbr-section-btn {
  color: #fffef3;
}
.cid-tWkRIINpi6 {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-tWkRIINpi6 h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-tWkRIINpi6 span {
  background-image: url("../../../assets/images/700-fo57888323-03854ec4a07de27edaaef5a19629a7f5.jpg-2-700x495.jpeg");
  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-tWkRIINpi6 .mbr-section-title {
  color: #ffffff;
}
.cid-tZQR7rdjKc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f9e0f1;
}
@media (max-width: 992px) {
  .cid-tZQR7rdjKc .row {
    flex-direction: column-reverse;
  }
}
.cid-tZQR7rdjKc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZQR7rdjKc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZQR7rdjKc .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tZQR7rdjKc .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tZQR7rdjKc .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tZQR7rdjKc .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffcd9f;
  color: #ffcd9f;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tZQR7rdjKc .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #d26eb2 !important;
}
.cid-tZQR7rdjKc .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tZQR7rdjKc .text-wrapper {
  margin-left: 160px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-tZQR7rdjKc .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tZQR7rdjKc .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tZQR7rdjKc .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tZQR7rdjKc .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tZQR7rdjKc .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tZQR7rdjKc .image-wrapper {
  margin-left: 200px;
  margin-left: 0;
  margin-right: 200px;
}
@media (max-width: 992px) {
  .cid-tZQR7rdjKc .image-wrapper {
    margin: 0 30px 30px;
  }
}
@media (max-width: 992px) {
  .cid-tZQR7rdjKc .image-wrapper {
    margin: 30px;
  }
}
.cid-tZQR7rdjKc .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tZQR7rdjKc .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-tZQR7rdjKc .image-wrapper img {
    min-height: 100%;
  }
}
.cid-tZQR7rdjKc .mbr-section-title {
  color: #000000;
}
.cid-tZQR7rdjKc .mbr-text {
  color: #000000;
}
.cid-tZQR7rdjKc .mbr-section-title,
.cid-tZQR7rdjKc .mbr-section-btn {
  text-align: center;
}
.cid-uSyKE80NOi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uSyKE80NOi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSyKE80NOi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSyKE80NOi .mbr-iconfont {
  color: #e688c8;
  font-size: 5rem;
  width: 5rem;
}
.cid-uSyKE80NOi .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.cid-uSyKE80NOi .mbr-section-subtitle,
.cid-uSyKE80NOi .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tV93io3chh {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #f9e0f1;
}
.cid-tV93io3chh .mbr-iconfont-social {
  font-size: 32px;
  color: #232323;
  margin-left: .5rem;
  margin-right: .5rem;
}
.cid-tV93io3chh .mbr-iconfont-social:hover {
  color: #ffffff;
}
.cid-tV93io3chh .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tV93io3chh .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #d26eb2, #513c4a);
  display: inline-block;
}
.cid-tV93io3chh .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-tV93io3chh .mbr-iconfont-social {
    margin-left: .2rem;
    margin-right: .2rem;
  }
}
.cid-tV93io3chh .mbr-section-title,
.cid-tV93io3chh .social-list,
.cid-tV93io3chh .underline {
  color: #000000;
}
.cid-umnpDaAfPH {
  padding-top: 20px;
  padding-bottom: 0px;
  background-color: #f9e0f1;
}
.cid-umnpDaAfPH .media-content .btn-bgr {
  z-index: 0;
}
.cid-umnpDaAfPH .mbr-section-text {
  word-break: break-word;
}
.cid-umnpDaAfPH .mbr-overlay {
  background: linear-gradient(90deg, #000000, #000000);
}
@media (min-width: 992px) {
  .cid-umnpDaAfPH .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-umnpDaAfPH .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-umnpDaAfPH .mbr-text {
    text-align: center;
  }
}
.cid-umnpDaAfPH H1 {
  color: #000000;
  text-align: left;
}
.cid-umnpDaAfPH .mbr-text,
.cid-umnpDaAfPH .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tWkSjKpGQy {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tWkSjKpGQy h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-tWkSjKpGQy span {
  background-image: url("../../../assets/images/700-fo57888323-03854ec4a07de27edaaef5a19629a7f5.jpg-2-700x495.jpeg");
  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-tWkSjKpGQy .mbr-section-title {
  color: #ffffff;
}
.cid-uSyFSCDTuM {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uSyFSCDTuM .container-fluid {
  padding: 0 3rem;
}
.cid-uSyFSCDTuM .mbr-text {
  color: #ffffff;
}
.cid-uSyFSCDTuM .card-title {
  text-align: left;
  color: #ffa0a4;
}
.cid-uSyFSCDTuM p {
  text-align: left;
}
.cid-uSyFSCDTuM .card-img {
  text-align: left;
}
.cid-uSyFSCDTuM .card .card-img span {
  color: #ffffff;
  font-size: 60px;
  background: linear-gradient(45deg, #ffffff, #ff39c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-uSyFSCDTuM .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .cid-uSyFSCDTuM .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-uSyFSCDTuM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSyFSCDTuM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSyFSCDTuM .card-title,
.cid-uSyFSCDTuM .card-img {
  color: #ffffff;
}
.cid-uSyG7bRrMK {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-uSyG7bRrMK .container-fluid {
  padding: 0 3rem;
}
.cid-uSyG7bRrMK .mbr-text {
  color: #ffffff;
}
.cid-uSyG7bRrMK .card-title {
  text-align: left;
  color: #ffa0a4;
}
.cid-uSyG7bRrMK p {
  text-align: left;
}
.cid-uSyG7bRrMK .card-img {
  text-align: left;
}
.cid-uSyG7bRrMK .card .card-img span {
  color: #ff39c0;
  font-size: 60px;
  background: linear-gradient(45deg, #ff39c0, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-uSyG7bRrMK .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .cid-uSyG7bRrMK .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-uSyG7bRrMK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSyG7bRrMK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSyG7bRrMK .card-title,
.cid-uSyG7bRrMK .card-img {
  color: #ffffff;
}
.cid-tZRkOn12aS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9e0f1;
}
.cid-tZRkOn12aS h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-tZRkOn12aS span {
  background-image: url("../../../assets/images/pngtree-gradient-texture-shades-of-pink-and-black-image-13776335.png-960x538.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-tZRkOn12aS .mbr-section-title {
  color: #ffffff;
}
.cid-tZRjQ5u0gB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9e0f1;
}
.cid-tZRjQ5u0gB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZRjQ5u0gB .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-tZRjQ5u0gB .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tZRjQ5u0gB .container {
    padding: 0 12px;
  }
}
.cid-tZRjQ5u0gB .row {
  justify-content: center;
}
.cid-tZRjQ5u0gB .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tZRjQ5u0gB .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-tZRjQ5u0gB .panel-group .card {
  border-radius: 50px;
  border: 3px solid #e688c8;
  box-shadow: 4px 4px #e688c8;
  background-color: #f9e0f1;
  padding: 60px;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-tZRjQ5u0gB .panel-group .card {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-tZRjQ5u0gB .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  margin-bottom: 0;
  padding: 0;
}
.cid-tZRjQ5u0gB .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tZRjQ5u0gB .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tZRjQ5u0gB .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  color: #e688c8;
  transition: all 0.3s ease-in-out;
}
.cid-tZRjQ5u0gB .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-tZRjQ5u0gB .panel-group .card .panel-collapse .panel-body {
  padding-top: 24px;
}
@media (max-width: 992px) {
  .cid-tZRjQ5u0gB .panel-group .card .panel-collapse .panel-body {
    padding-top: 16px;
  }
}
.cid-tZRjQ5u0gB .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tZRjQ5u0gB .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-tZRjQ5u0gB .panel-title-edit {
  color: #000000;
}
.cid-tZRjQ5u0gB .panel-text {
  color: #000000;
}
.cid-sL4nDZJTxr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f9e0f1;
}
.cid-sL4nDZJTxr .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sL4nDZJTxr .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sL4nDZJTxr .media-container-row {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-sL4nDZJTxr .media-container-row {
    flex-direction: column;
    justify-content: center;
  }
  .cid-sL4nDZJTxr .media-container-row .footer-item,
  .cid-sL4nDZJTxr .media-container-row .mbr-social-likes,
  .cid-sL4nDZJTxr .media-container-row .footer-logo {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 546px) {
  .cid-sL4nDZJTxr .media-container-row .mbr-social-likes {
    flex-wrap: wrap;
    justify-content: center;
  }
  .cid-sL4nDZJTxr .media-container-row .mbr-social-likes .footer-item {
    margin-bottom: 1.5rem !important;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .cid-sL4nDZJTxr .media-container-row .mbr-social-likes .iconfont-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sL4nDZJTxr .row-copyright {
  word-break: break-word;
  width: auto;
  min-width: calc(100% - (8 * 1rem));
  display: inline-block;
}
.cid-sL4nDZJTxr .mbr-social-likes {
  display: flex;
  align-items: center;
}
.cid-sL4nDZJTxr .mbr-social-likes a {
  color: #000000;
}
.cid-sL4nDZJTxr .mbr-social-likes span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ff39c0;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-sL4nDZJTxr .mbr-social-likes span:hover {
  border-color: #000000;
  color: #000000;
}
.cid-sL4nDZJTxr .footer-logo img {
  width: auto;
}
.cid-sL4nDZJTxr .footer-item {
  display: flex;
  align-items: center;
}
.cid-sL4nDZJTxr .footer-item a {
  background: none !important;
  text-decoration: none !important;
}
.cid-sL4nDZJTxr .media-container-row .mbr-text {
  color: #000000;
}
.cid-sL4nDZJTxr .footer-item-title {
  color: #000000;
}
.cid-uSF2pK730Y {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uSF2pK730Y .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSF2pK730Y .btn {
  padding: .6rem 1.3rem;
}
@media (max-width: 767px) {
  .cid-uSF2pK730Y .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uSF2pK730Y .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSF2pK730Y .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uSF2pK730Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSF2pK730Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSF2pK730Y .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-uSF2pK730Y .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uSF2pK730Y .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uSF2pK730Y .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uSF2pK730Y .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uSF2pK730Y .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uSF2pK730Y .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uSF2pK730Y .navbar-nav {
    padding: 0 1rem;
  }
}
.cid-uSF2pK730Y .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uSF2pK730Y .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uSF2pK730Y .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uSF2pK730Y .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uSF2pK730Y .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uSF2pK730Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uSF2pK730Y .container {
  display: flex;
  height: 64px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(254, 218, 242, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2rem;
  margin-top: 1rem;
  background-color: #fedaf2;
}
@media (max-width: 992px) {
  .cid-uSF2pK730Y .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uSF2pK730Y .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uSF2pK730Y .container {
    width: auto;
    margin-left: 6.8rem;
  }
}
.cid-uSF2pK730Y .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSF2pK730Y .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #fedaf2;
  background: rgba(254, 218, 242, 0.8) !important;
  backdrop-filter: blur(10px);
}
.cid-uSF2pK730Y .nav-item:focus,
.cid-uSF2pK730Y .nav-link:focus {
  outline: none;
}
.cid-uSF2pK730Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSF2pK730Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSF2pK730Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSF2pK730Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSF2pK730Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSF2pK730Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSF2pK730Y .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uSF2pK730Y .navbar.opened {
  transition: all 0.3s;
}
.cid-uSF2pK730Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSF2pK730Y .navbar .navbar-logo img {
  width: auto;
}
.cid-uSF2pK730Y .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uSF2pK730Y .navbar.collapsed {
  justify-content: center;
}
.cid-uSF2pK730Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSF2pK730Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSF2pK730Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.7rem);
  }
}
.cid-uSF2pK730Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSF2pK730Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSF2pK730Y .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uSF2pK730Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSF2pK730Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSF2pK730Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uSF2pK730Y .navbar {
    min-height: 72px;
  }
  .cid-uSF2pK730Y .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uSF2pK730Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSF2pK730Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSF2pK730Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSF2pK730Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSF2pK730Y .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uSF2pK730Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSF2pK730Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uSF2pK730Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSF2pK730Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uSF2pK730Y .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uSF2pK730Y .dropdown-item.active,
.cid-uSF2pK730Y .dropdown-item:active {
  background-color: transparent;
}
.cid-uSF2pK730Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSF2pK730Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSF2pK730Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSF2pK730Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fedaf2;
}
.cid-uSF2pK730Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uSF2pK730Y .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uSF2pK730Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSF2pK730Y .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uSF2pK730Y .navbar-buttons {
    text-align: left;
  }
}
.cid-uSF2pK730Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSF2pK730Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uSF2pK730Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSF2pK730Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSF2pK730Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSF2pK730Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSF2pK730Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSF2pK730Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSF2pK730Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSF2pK730Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSF2pK730Y .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uSF2pK730Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSF2pK730Y .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uSF2pK730Y .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSF2pK730Y .navbar {
    height: 70px;
  }
  .cid-uSF2pK730Y .navbar.opened {
    height: auto;
  }
  .cid-uSF2pK730Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uSF2pK730Y .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uSF2pK730Y .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uSF2pK730Y .navbar-brand {
    margin-right: auto;
  }
  .cid-uSF2pK730Y .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #fedaf2;
    opacity: 1;
    border-color: rgba(254, 218, 242, 0.8) !important;
    background: rgba(254, 218, 242, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uSF2pK730Y .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uSF2pK730Y .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uSF2pK730Y .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uSF2pK730Y .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uSyPrH50W9 {
  overflow-x: hidden !important;
}
.cid-uSyPrH50W9 .container-fluid {
  padding: 0 3rem;
}
.cid-uSyPrH50W9 .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: 30s !important;
  animation-duration: 30s;
  background-image: url("../../../assets/images/34f96f41c0e157ee73dcb6e7f030443e.jpg-564x376.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-uSyPrH50W9 .scroll-wrapper.second {
  left: calc(100% - 1px);
  background-position: 0 0;
}
.cid-uSyPrH50W9 .mbr-overlay {
  z-index: 1;
}
.cid-uSyPrH50W9 .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-uSyPrH50W9 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uSyPrH50W9 .mbr-section-title {
  color: #efefef;
  text-align: center;
}
.cid-uSyPrH50W9 .mbr-section-subtitle,
.cid-uSyPrH50W9 .mbr-section-btn {
  color: #ffffff;
}
.cid-uSyZ8FmLbS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSyZ8FmLbS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSyZ8FmLbS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSyZ8FmLbS .section-border-item {
  background-color: #000000;
}
.cid-uSyZ8FmLbS .mbr-section-title {
  color: #fff;
}
.cid-uSyZ8FmLbS .mbr-section-subtitle {
  color: #ff39c0;
  background-image: linear-gradient(315deg, currentColor, #f7f7f7) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.cid-uSyZ8FmLbS .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uSyZ8FmLbS .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-uSyQuIYU6M {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSyQuIYU6M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSyQuIYU6M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSyQuIYU6M .items-wrapper {
  margin: 6px 0;
}
@media (max-width: 992px) {
  .cid-uSyQuIYU6M .items-wrapper {
    margin: 3px 0;
  }
}
.cid-uSyQuIYU6M .items-wrapper .item {
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .cid-uSyQuIYU6M .items-wrapper .item {
    margin-bottom: 6px;
  }
}
.cid-uSyQuIYU6M .items-wrapper .item:last-child {
  margin-bottom: 0 !important;
}
.cid-uSyQuIYU6M .items-wrapper .item .item-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 992px) {
  .cid-uSyQuIYU6M .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-uSyQuIYU6M .items-wrapper .item .item-wrapper .image-wrapper {
  padding: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uSyQuIYU6M .items-wrapper .item .item-wrapper .image-wrapper {
    padding: 48px 24px;
    margin-bottom: 6px;
  }
}
.cid-uSyQuIYU6M .items-wrapper .item .item-wrapper .image-wrapper .item-img img {
  height: 810px;
  width: 390px;
  object-fit: cover;
  border: 11px solid #e688c8;
  background-color: #e688c8;
  box-shadow: 10px 14px 50px #ec44b6;
}
@media (max-width: 1440px) {
  .cid-uSyQuIYU6M .items-wrapper .item .item-wrapper .image-wrapper .item-img img {
    height: 350px;
    width: 180px;
  }
}
@media (max-width: 992px) {
  .cid-uSyQuIYU6M .items-wrapper .item .item-wrapper .image-wrapper .item-img img {
    border: 6px solid #e688c8;
  }
}
.cid-uSyQuIYU6M .items-wrapper .item .item-wrapper .card_1 {
  background-color: #f9e0f1;
}
.cid-uSyQuIYU6M .items-wrapper .item .item-wrapper .card_2 {
  background-color: #f9e0f1;
}
.cid-uSyQuIYU6M .items-wrapper .item .item-wrapper .card-box {
  padding: 64px;
  background-color: #ffe7f7;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uSyQuIYU6M .items-wrapper .item .item-wrapper .card-box {
    padding: 48px 24px;
  }
}
.cid-uSyQuIYU6M .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 54px;
}
@media (max-width: 1440px) {
  .cid-uSyQuIYU6M .items-wrapper .item .item-wrapper .card-box .card-title {
    margin-bottom: 24px;
  }
}
.cid-uSyQuIYU6M .items-wrapper .item .item-wrapper .card-box .text-wrapper .card-text {
  margin-bottom: 44px;
}
@media (max-width: 1440px) {
  .cid-uSyQuIYU6M .items-wrapper .item .item-wrapper .card-box .text-wrapper .card-text {
    margin-bottom: 24px;
  }
}
.cid-uSyQuIYU6M .items-wrapper .item .item-wrapper .card-box .text-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uSyQuIYU6M .card-title {
  color: #000000;
}
.cid-uSyQuIYU6M .card-text {
  color: #000000;
}
.cid-uSyQuIYU6M .card-title,
.cid-uSyQuIYU6M .mbr-section-btn {
  text-align: center;
}
.cid-tZRryjNoaD {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-tZRryjNoaD h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-tZRryjNoaD span {
  background-image: url("../../../assets/images/700-fo57888323-03854ec4a07de27edaaef5a19629a7f5.jpg-2-700x495.jpeg");
  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-tZRryjNoaD .mbr-section-title {
  color: #ffffff;
}
.cid-tZRqtwYEms {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-tZRqtwYEms .progress {
  width: 100%;
}
.cid-tZRqtwYEms p {
  margin-bottom: 0.4rem;
}
.cid-tZRqtwYEms .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tZRqtwYEms .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tZRqtwYEms progress {
  height: 10px;
}
.cid-tZRqtwYEms .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tZRqtwYEms .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tZRqtwYEms .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tZRqtwYEms .progress_value {
  position: relative;
}
.cid-tZRqtwYEms .progress1 .progressbar-number:before,
.cid-tZRqtwYEms .progress2 .progressbar-number:before,
.cid-tZRqtwYEms .progress3 .progressbar-number:before,
.cid-tZRqtwYEms .progress4 .progressbar-number:before,
.cid-tZRqtwYEms .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tZRqtwYEms progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-tZRqtwYEms progress::-webkit-progress-value {
  background: #d26eb2;
}
.cid-tZRqtwYEms progress[value]::-moz-progress-bar {
  background: #d26eb2;
}
.cid-tZRqtwYEms progress::-ms-fill {
  background: #d26eb2;
}
.cid-tZRqtwYEms .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tZRqtwYEms .progress2 .progressbar-number:before {
  content: "100";
}
.cid-tZRqtwYEms .progress3 .progressbar-number:before {
  content: "100";
}
.cid-tZRqtwYEms .progress4 .progressbar-number:before {
  content: "100";
}
.cid-tZRqtwYEms .progress5 .progressbar-number:before {
  content: "100";
}
.cid-tZRqtwYEms .section-content-text {
  color: #454545;
}
.cid-tZRqtwYEms .progressbar-title p,
.cid-tZRqtwYEms .progress_value {
  color: #ffffff;
}
.cid-tZRqtwYEms .mbr-section-subtitle {
  color: #454545;
}
.cid-tZRqtwYEms .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tZRqtwYEms .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZRqtwYEms .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sL4nDZJTxr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f9e0f1;
}
.cid-sL4nDZJTxr .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sL4nDZJTxr .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sL4nDZJTxr .media-container-row {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-sL4nDZJTxr .media-container-row {
    flex-direction: column;
    justify-content: center;
  }
  .cid-sL4nDZJTxr .media-container-row .footer-item,
  .cid-sL4nDZJTxr .media-container-row .mbr-social-likes,
  .cid-sL4nDZJTxr .media-container-row .footer-logo {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 546px) {
  .cid-sL4nDZJTxr .media-container-row .mbr-social-likes {
    flex-wrap: wrap;
    justify-content: center;
  }
  .cid-sL4nDZJTxr .media-container-row .mbr-social-likes .footer-item {
    margin-bottom: 1.5rem !important;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .cid-sL4nDZJTxr .media-container-row .mbr-social-likes .iconfont-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sL4nDZJTxr .row-copyright {
  word-break: break-word;
  width: auto;
  min-width: calc(100% - (8 * 1rem));
  display: inline-block;
}
.cid-sL4nDZJTxr .mbr-social-likes {
  display: flex;
  align-items: center;
}
.cid-sL4nDZJTxr .mbr-social-likes a {
  color: #000000;
}
.cid-sL4nDZJTxr .mbr-social-likes span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ff39c0;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-sL4nDZJTxr .mbr-social-likes span:hover {
  border-color: #000000;
  color: #000000;
}
.cid-sL4nDZJTxr .footer-logo img {
  width: auto;
}
.cid-sL4nDZJTxr .footer-item {
  display: flex;
  align-items: center;
}
.cid-sL4nDZJTxr .footer-item a {
  background: none !important;
  text-decoration: none !important;
}
.cid-sL4nDZJTxr .media-container-row .mbr-text {
  color: #000000;
}
.cid-sL4nDZJTxr .footer-item-title {
  color: #000000;
}
.cid-uSF2pK730Y {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uSF2pK730Y .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSF2pK730Y .btn {
  padding: .6rem 1.3rem;
}
@media (max-width: 767px) {
  .cid-uSF2pK730Y .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uSF2pK730Y .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSF2pK730Y .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uSF2pK730Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSF2pK730Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSF2pK730Y .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-uSF2pK730Y .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uSF2pK730Y .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uSF2pK730Y .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uSF2pK730Y .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uSF2pK730Y .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uSF2pK730Y .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uSF2pK730Y .navbar-nav {
    padding: 0 1rem;
  }
}
.cid-uSF2pK730Y .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uSF2pK730Y .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uSF2pK730Y .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uSF2pK730Y .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uSF2pK730Y .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uSF2pK730Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uSF2pK730Y .container {
  display: flex;
  height: 64px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(254, 218, 242, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2rem;
  margin-top: 1rem;
  background-color: #fedaf2;
}
@media (max-width: 992px) {
  .cid-uSF2pK730Y .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uSF2pK730Y .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uSF2pK730Y .container {
    width: auto;
    margin-left: 6.8rem;
  }
}
.cid-uSF2pK730Y .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSF2pK730Y .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #fedaf2;
  background: rgba(254, 218, 242, 0.8) !important;
  backdrop-filter: blur(10px);
}
.cid-uSF2pK730Y .nav-item:focus,
.cid-uSF2pK730Y .nav-link:focus {
  outline: none;
}
.cid-uSF2pK730Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSF2pK730Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSF2pK730Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSF2pK730Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSF2pK730Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSF2pK730Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSF2pK730Y .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uSF2pK730Y .navbar.opened {
  transition: all 0.3s;
}
.cid-uSF2pK730Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSF2pK730Y .navbar .navbar-logo img {
  width: auto;
}
.cid-uSF2pK730Y .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uSF2pK730Y .navbar.collapsed {
  justify-content: center;
}
.cid-uSF2pK730Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSF2pK730Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSF2pK730Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.7rem);
  }
}
.cid-uSF2pK730Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSF2pK730Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSF2pK730Y .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uSF2pK730Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSF2pK730Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSF2pK730Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uSF2pK730Y .navbar {
    min-height: 72px;
  }
  .cid-uSF2pK730Y .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uSF2pK730Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSF2pK730Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSF2pK730Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSF2pK730Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSF2pK730Y .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uSF2pK730Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSF2pK730Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uSF2pK730Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSF2pK730Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uSF2pK730Y .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uSF2pK730Y .dropdown-item.active,
.cid-uSF2pK730Y .dropdown-item:active {
  background-color: transparent;
}
.cid-uSF2pK730Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSF2pK730Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSF2pK730Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSF2pK730Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fedaf2;
}
.cid-uSF2pK730Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uSF2pK730Y .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uSF2pK730Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSF2pK730Y .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uSF2pK730Y .navbar-buttons {
    text-align: left;
  }
}
.cid-uSF2pK730Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSF2pK730Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uSF2pK730Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSF2pK730Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSF2pK730Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSF2pK730Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSF2pK730Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSF2pK730Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSF2pK730Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSF2pK730Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSF2pK730Y .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uSF2pK730Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSF2pK730Y .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uSF2pK730Y .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSF2pK730Y .navbar {
    height: 70px;
  }
  .cid-uSF2pK730Y .navbar.opened {
    height: auto;
  }
  .cid-uSF2pK730Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uSF2pK730Y .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uSF2pK730Y .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uSF2pK730Y .navbar-brand {
    margin-right: auto;
  }
  .cid-uSF2pK730Y .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #fedaf2;
    opacity: 1;
    border-color: rgba(254, 218, 242, 0.8) !important;
    background: rgba(254, 218, 242, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uSF2pK730Y .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uSF2pK730Y .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uSF2pK730Y .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uSF2pK730Y .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tX7spYudKL {
  padding-top: 150px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/8749232.jpg-826x551.jpg");
}
.cid-tX7spYudKL .mbr-section-title {
  margin: 0;
}
.cid-tX7spYudKL .container-fluid {
  padding: 0 2rem;
}
.cid-tX7spYudKL .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #d26eb2, #513c4a);
  display: inline-block;
}
.cid-tX7spYudKL .row {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tX7spYudKL .form-1 {
  background-color: #f9e0f1;
  padding: 1.5rem;
  border-radius: 10px;
  margin-right: 15px;
}
.cid-tX7spYudKL .form-control-label {
  color: #000000;
}
.cid-tX7spYudKL .form-group {
  margin-bottom: 1.3em;
}
.cid-tX7spYudKL .form-control {
  background-color: #efefef;
  border-radius: 22px;
  width: 100%;
  padding: .5rem 1rem;
}
.cid-tX7spYudKL input.form-control {
  border: 1px solid #ddd;
  min-height: 42px;
}
.cid-tX7spYudKL textarea.form-control {
  padding: 1rem;
}
.cid-tX7spYudKL .input-group-btn .btn {
  padding: 1rem 4rem;
}
.cid-tX7spYudKL .mbr-section-btn .btn {
  margin-left: 4px !important;
}
@media (min-width: 992px) {
  .cid-tX7spYudKL .container-fluid {
    padding: 0 5rem;
  }
}
@media (max-width: 767px) {
  .cid-tX7spYudKL .underline .line {
    height: 2px;
  }
  .cid-tX7spYudKL .text-element {
    padding-bottom: 1rem;
  }
  .cid-tX7spYudKL .form-1 {
    pading: 1rem;
    margin: 1rem;
  }
}
.cid-tZRn24mOLI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f9e0f1;
}
.cid-tZRn24mOLI .section-head {
  margin-bottom: 2rem;
}
.cid-tZRn24mOLI .mbr-section-title {
  text-align: right;
  margin-bottom: 1.5rem;
}
.cid-tZRn24mOLI .mbr-section-subtitle {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-tZRn24mOLI .row {
    text-align: center;
  }
}
.cid-tZRn24mOLI .wave-container {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: -1px;
  overflow: hidden;
}
.cid-tZRn24mOLI .wave-container .wave {
  width: 5500px;
  position: relative;
  left: -3300px;
}
.cid-tZRn24mOLI .wave-container .wave svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: wavy 35s infinite linear;
  backface-visibility: hidden;
}
.cid-tZRn24mOLI .wave-container .wave svg path {
  fill: #f9e0f1;
}
@keyframes wavy {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
    animation-timing-function: linear;
  }
  100% {
    opacity: 1;
    transform: translateX(3230px) translateY(0px) rotate(0deg) scale(1, 1);
  }
}
.cid-tX7tobnyFo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9e0f1;
  overflow: hidden;
}
.cid-tX7tobnyFo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX7tobnyFo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX7tobnyFo .mbr-section-title {
  color: #000000;
}
.cid-tX7tobnyFo .mbr-text {
  color: #272727;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .cid-tX7tobnyFo .mbr-text {
    margin-top: 24px;
  }
}
.cid-tX7tobnyFo .mbr-text a {
  transition: all .18s;
  text-decoration-line: underline;
}
.cid-tX7tobnyFo .mbr-text a:hover {
  text-decoration-color: transparent !important;
}
.cid-tX7tobnyFo .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 140px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 32px;
}
.cid-tX7tobnyFo .image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.cid-tX7tobnyFo .icons-menu {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 44px;
}
.cid-tX7tobnyFo .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 6px;
  min-width: 36px;
  aspect-ratio: 1;
  border: 1px solid #d26eb2;
  transition: .3s all;
  margin-left: 7px;
  margin-right: 7px;
  margin-bottom: 14px;
}
.cid-tX7tobnyFo .iconfont-wrapper .mbr-iconfont {
  font-size: 20px;
  color: #d26eb2;
  transition: .3s all;
}
.cid-tX7tobnyFo .iconfont-wrapper:hover {
  background-color: #d26eb2;
}
.cid-tX7tobnyFo .iconfont-wrapper:hover .mbr-iconfont {
  color: #272727;
}
.cid-sL4nDZJTxr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f9e0f1;
}
.cid-sL4nDZJTxr .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sL4nDZJTxr .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sL4nDZJTxr .media-container-row {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-sL4nDZJTxr .media-container-row {
    flex-direction: column;
    justify-content: center;
  }
  .cid-sL4nDZJTxr .media-container-row .footer-item,
  .cid-sL4nDZJTxr .media-container-row .mbr-social-likes,
  .cid-sL4nDZJTxr .media-container-row .footer-logo {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 546px) {
  .cid-sL4nDZJTxr .media-container-row .mbr-social-likes {
    flex-wrap: wrap;
    justify-content: center;
  }
  .cid-sL4nDZJTxr .media-container-row .mbr-social-likes .footer-item {
    margin-bottom: 1.5rem !important;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .cid-sL4nDZJTxr .media-container-row .mbr-social-likes .iconfont-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sL4nDZJTxr .row-copyright {
  word-break: break-word;
  width: auto;
  min-width: calc(100% - (8 * 1rem));
  display: inline-block;
}
.cid-sL4nDZJTxr .mbr-social-likes {
  display: flex;
  align-items: center;
}
.cid-sL4nDZJTxr .mbr-social-likes a {
  color: #000000;
}
.cid-sL4nDZJTxr .mbr-social-likes span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ff39c0;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-sL4nDZJTxr .mbr-social-likes span:hover {
  border-color: #000000;
  color: #000000;
}
.cid-sL4nDZJTxr .footer-logo img {
  width: auto;
}
.cid-sL4nDZJTxr .footer-item {
  display: flex;
  align-items: center;
}
.cid-sL4nDZJTxr .footer-item a {
  background: none !important;
  text-decoration: none !important;
}
.cid-sL4nDZJTxr .media-container-row .mbr-text {
  color: #000000;
}
.cid-sL4nDZJTxr .footer-item-title {
  color: #000000;
}
.cid-uSF2pK730Y {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uSF2pK730Y .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSF2pK730Y .btn {
  padding: .6rem 1.3rem;
}
@media (max-width: 767px) {
  .cid-uSF2pK730Y .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uSF2pK730Y .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSF2pK730Y .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uSF2pK730Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSF2pK730Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSF2pK730Y .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-uSF2pK730Y .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uSF2pK730Y .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uSF2pK730Y .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uSF2pK730Y .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uSF2pK730Y .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uSF2pK730Y .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uSF2pK730Y .navbar-nav {
    padding: 0 1rem;
  }
}
.cid-uSF2pK730Y .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uSF2pK730Y .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uSF2pK730Y .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uSF2pK730Y .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uSF2pK730Y .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uSF2pK730Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uSF2pK730Y .container {
  display: flex;
  height: 64px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(254, 218, 242, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2rem;
  margin-top: 1rem;
  background-color: #fedaf2;
}
@media (max-width: 992px) {
  .cid-uSF2pK730Y .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uSF2pK730Y .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uSF2pK730Y .container {
    width: auto;
    margin-left: 6.8rem;
  }
}
.cid-uSF2pK730Y .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSF2pK730Y .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #fedaf2;
  background: rgba(254, 218, 242, 0.8) !important;
  backdrop-filter: blur(10px);
}
.cid-uSF2pK730Y .nav-item:focus,
.cid-uSF2pK730Y .nav-link:focus {
  outline: none;
}
.cid-uSF2pK730Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSF2pK730Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSF2pK730Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSF2pK730Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSF2pK730Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSF2pK730Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSF2pK730Y .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uSF2pK730Y .navbar.opened {
  transition: all 0.3s;
}
.cid-uSF2pK730Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSF2pK730Y .navbar .navbar-logo img {
  width: auto;
}
.cid-uSF2pK730Y .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uSF2pK730Y .navbar.collapsed {
  justify-content: center;
}
.cid-uSF2pK730Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSF2pK730Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSF2pK730Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.7rem);
  }
}
.cid-uSF2pK730Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSF2pK730Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSF2pK730Y .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uSF2pK730Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSF2pK730Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSF2pK730Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uSF2pK730Y .navbar {
    min-height: 72px;
  }
  .cid-uSF2pK730Y .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uSF2pK730Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSF2pK730Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSF2pK730Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSF2pK730Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSF2pK730Y .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uSF2pK730Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSF2pK730Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uSF2pK730Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSF2pK730Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uSF2pK730Y .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uSF2pK730Y .dropdown-item.active,
.cid-uSF2pK730Y .dropdown-item:active {
  background-color: transparent;
}
.cid-uSF2pK730Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSF2pK730Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSF2pK730Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSF2pK730Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fedaf2;
}
.cid-uSF2pK730Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uSF2pK730Y .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uSF2pK730Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSF2pK730Y .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uSF2pK730Y .navbar-buttons {
    text-align: left;
  }
}
.cid-uSF2pK730Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSF2pK730Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uSF2pK730Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSF2pK730Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSF2pK730Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSF2pK730Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSF2pK730Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSF2pK730Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSF2pK730Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSF2pK730Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSF2pK730Y .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uSF2pK730Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSF2pK730Y .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uSF2pK730Y .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSF2pK730Y .navbar {
    height: 70px;
  }
  .cid-uSF2pK730Y .navbar.opened {
    height: auto;
  }
  .cid-uSF2pK730Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uSF2pK730Y .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uSF2pK730Y .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uSF2pK730Y .navbar-brand {
    margin-right: auto;
  }
  .cid-uSF2pK730Y .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #fedaf2;
    opacity: 1;
    border-color: rgba(254, 218, 242, 0.8) !important;
    background: rgba(254, 218, 242, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uSF2pK730Y .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uSF2pK730Y .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uSF2pK730Y .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uSF2pK730Y .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uSF2pK730Y .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uSz44EOQRx {
  background-image: url("../../../assets/images/b15a5fc3248e6015ba5d95dd66bf4d92.jpg-564x757.jpg");
}
.cid-uSz44EOQRx .mbr-section-title,
.cid-uSz44EOQRx .mbr-section-subtitle {
  color: #000000;
}
.cid-uSz44EOQRx .mbr-section-text {
  color: #232323;
}
.cid-uSz44EOQRx .mbr-text,
.cid-uSz44EOQRx .typed-text,
.cid-uSz44EOQRx .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uSz44EOQRx .btn {
  margin-left: 4px !important;
}
.cid-uSz44EOQRx .animated-element {
  color: #ec44b6;
}
.cid-uSz44EOQRx .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ec44b6;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uSz44EOQRx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSz44EOQRx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSz44EOQRx .mbr-section-title {
  color: #000000;
}
.cid-uSz44EOQRx .mbr-section-subtitle,
.cid-uSz44EOQRx .typed-text {
  color: #000000;
}
.cid-uSyZsu1q01 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSyZsu1q01 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSyZsu1q01 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSyZsu1q01 .section-border-item {
  background-color: #000000;
}
.cid-uSyZsu1q01 .mbr-section-title {
  color: #fff;
}
.cid-uSyZsu1q01 .mbr-section-subtitle {
  color: #ff39c0;
  background-image: linear-gradient(315deg, currentColor, #f7f7f7) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.cid-uSyZsu1q01 .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uSyZsu1q01 .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-uSz713or5K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffe7f7;
}
.cid-uSz713or5K .circle-wrap {
  position: absolute;
  top: 0;
  left: -9%;
  width: 1100px;
  height: 1100px;
  border-radius: 100%;
  border: 120px solid #ffffff;
  opacity: .6;
}
.cid-uSz713or5K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSz713or5K .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-uSz713or5K .container {
    padding: 0 15px;
  }
}
.cid-uSz713or5K .row {
  position: relative;
  z-index: 1;
}
.cid-uSz713or5K .content-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uSz713or5K .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uSz713or5K .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uSz713or5K .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-uSz713or5K .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-uSz713or5K .content-wrapper .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uSz713or5K .content-wrapper .content-wrap {
    display: block;
  }
}
.cid-uSz713or5K .content-wrapper .content-wrap .images-wrapper {
  width: 48%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  height: fit-content;
}
@media (max-width: 992px) {
  .cid-uSz713or5K .content-wrapper .content-wrap .images-wrapper {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.cid-uSz713or5K .content-wrapper .content-wrap .images-wrapper .card {
  justify-content: center;
}
.cid-uSz713or5K .content-wrapper .content-wrap .images-wrapper .images-item img {
  margin-bottom: 45px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSz713or5K .content-wrapper .content-wrap .images-wrapper .images-item img {
    margin-bottom: 40px;
  }
}
.cid-uSz713or5K .content-wrapper .content-wrap .images-wrapper .images-item img:last-child {
  margin-bottom: 0;
}
.cid-uSz713or5K .content-wrapper .content-wrap .images-wrapper .images-item .image_1 {
  height: 360px;
}
@media (max-width: 992px) {
  .cid-uSz713or5K .content-wrapper .content-wrap .images-wrapper .images-item .image_1 {
    height: 300px;
  }
}
.cid-uSz713or5K .content-wrapper .content-wrap .images-wrapper .images-item .image_2 {
  height: 220px;
}
@media (max-width: 992px) {
  .cid-uSz713or5K .content-wrapper .content-wrap .images-wrapper .images-item .image_2 {
    height: 300px;
  }
}
.cid-uSz713or5K .content-wrapper .content-wrap .items-wrapper {
  width: 38%;
  padding-top: 70px;
}
@media (max-width: 992px) {
  .cid-uSz713or5K .content-wrapper .content-wrap .items-wrapper {
    padding-top: 40px;
    width: 100%;
  }
}
.cid-uSz713or5K .content-wrapper .content-wrap .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 30px;
}
.cid-uSz713or5K .content-wrapper .content-wrap .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 30px;
}
.cid-uSz713or5K .mbr-section-title {
  color: #30262b;
}
.cid-uSz713or5K .item-title {
  color: #30262b;
}
.cid-uSz713or5K .item-text {
  color: #30262b;
}
.cid-uSzaakzgjy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSzaakzgjy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSzaakzgjy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSzaakzgjy .section-border-item {
  background-color: #000000;
}
.cid-uSzaakzgjy .mbr-section-title {
  color: #fff;
}
.cid-uSzaakzgjy .mbr-section-subtitle {
  color: #ff39c0;
  background-image: linear-gradient(315deg, currentColor, #f7f7f7) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.cid-uSzaakzgjy .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uSzaakzgjy .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-uSzbSE8Sfd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
  background-image: linear-gradient(45deg, #f6b9e2 -20%, #000000 40%, #000000 200%);
}
@media (max-width: 768px) {
  .cid-uSzbSE8Sfd {
    background-image: linear-gradient(45deg, #f6b9e2 -60%, #000000 40%, #000000 200%);
  }
}
.cid-uSzbSE8Sfd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSzbSE8Sfd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSzbSE8Sfd .row {
  justify-content: space-between;
}
.cid-uSzbSE8Sfd .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uSzbSE8Sfd .items-wrapper .item {
  margin-bottom: 32px;
}
.cid-uSzbSE8Sfd .items-wrapper .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uSzbSE8Sfd .items-wrapper .item {
    margin-bottom: 22px;
  }
}
.cid-uSzbSE8Sfd .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uSzbSE8Sfd .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uSzbSE8Sfd .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 16px;
}
.cid-uSzbSE8Sfd .mbr-section-title {
  color: #ffffff;
}
.cid-uSzbSE8Sfd .item-title {
  color: #ffffff;
}
.cid-uSzbSE8Sfd .item-text {
  color: #ffffff;
}
.cid-uSzgpacyqV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffe7f7;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSzgpacyqV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSzgpacyqV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSzgpacyqV .section-border-item {
  background-color: #000000;
}
.cid-uSzgpacyqV .mbr-section-title {
  color: #fff;
}
.cid-uSzgpacyqV .mbr-section-subtitle {
  color: #ff39c0;
  background-image: linear-gradient(315deg, currentColor, #f7f7f7) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.cid-uSzgpacyqV .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uSzgpacyqV .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-uSzgoAnE2Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f7e4f1;
}
.cid-uSzgoAnE2Y .circle-wrap {
  position: absolute;
  top: 0;
  left: -9%;
  width: 1100px;
  height: 1100px;
  border-radius: 100%;
  border: 120px solid #ffffff;
  opacity: .6;
}
.cid-uSzgoAnE2Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSzgoAnE2Y .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-uSzgoAnE2Y .container {
    padding: 0 15px;
  }
}
.cid-uSzgoAnE2Y .row {
  position: relative;
  z-index: 1;
}
.cid-uSzgoAnE2Y .content-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uSzgoAnE2Y .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uSzgoAnE2Y .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uSzgoAnE2Y .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-uSzgoAnE2Y .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-uSzgoAnE2Y .content-wrapper .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uSzgoAnE2Y .content-wrapper .content-wrap {
    display: block;
  }
}
.cid-uSzgoAnE2Y .content-wrapper .content-wrap .images-wrapper {
  width: 48%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  height: fit-content;
}
@media (max-width: 992px) {
  .cid-uSzgoAnE2Y .content-wrapper .content-wrap .images-wrapper {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.cid-uSzgoAnE2Y .content-wrapper .content-wrap .images-wrapper .card {
  justify-content: center;
}
.cid-uSzgoAnE2Y .content-wrapper .content-wrap .images-wrapper .images-item img {
  margin-bottom: 45px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSzgoAnE2Y .content-wrapper .content-wrap .images-wrapper .images-item img {
    margin-bottom: 40px;
  }
}
.cid-uSzgoAnE2Y .content-wrapper .content-wrap .images-wrapper .images-item img:last-child {
  margin-bottom: 0;
}
.cid-uSzgoAnE2Y .content-wrapper .content-wrap .images-wrapper .images-item .image_1 {
  height: 360px;
}
@media (max-width: 992px) {
  .cid-uSzgoAnE2Y .content-wrapper .content-wrap .images-wrapper .images-item .image_1 {
    height: 300px;
  }
}
.cid-uSzgoAnE2Y .content-wrapper .content-wrap .images-wrapper .images-item .image_2 {
  height: 220px;
}
@media (max-width: 992px) {
  .cid-uSzgoAnE2Y .content-wrapper .content-wrap .images-wrapper .images-item .image_2 {
    height: 300px;
  }
}
.cid-uSzgoAnE2Y .content-wrapper .content-wrap .items-wrapper {
  width: 38%;
  padding-top: 70px;
}
@media (max-width: 992px) {
  .cid-uSzgoAnE2Y .content-wrapper .content-wrap .items-wrapper {
    padding-top: 40px;
    width: 100%;
  }
}
.cid-uSzgoAnE2Y .content-wrapper .content-wrap .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 30px;
}
.cid-uSzgoAnE2Y .content-wrapper .content-wrap .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 30px;
}
.cid-uSzgoAnE2Y .mbr-section-title {
  color: #30262b;
}
.cid-uSzgoAnE2Y .item-title {
  color: #30262b;
}
.cid-uSzgoAnE2Y .item-text {
  color: #30262b;
}
.cid-uSzpHSMAwX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSzpHSMAwX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSzpHSMAwX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSzpHSMAwX .section-border-item {
  background-color: #000000;
}
.cid-uSzpHSMAwX .mbr-section-title {
  color: #fff;
}
.cid-uSzpHSMAwX .mbr-section-subtitle {
  color: #ec44b6;
  background-image: linear-gradient(315deg, currentColor, #f7f7f7) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.cid-uSzpHSMAwX .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uSzpHSMAwX .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-uSzh7kqJhP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
  background-image: linear-gradient(45deg, #f6b9e2 -20%, #000000 40%, #000000 200%);
}
@media (max-width: 768px) {
  .cid-uSzh7kqJhP {
    background-image: linear-gradient(45deg, #f6b9e2 -60%, #000000 40%, #000000 200%);
  }
}
.cid-uSzh7kqJhP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSzh7kqJhP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSzh7kqJhP .row {
  justify-content: space-between;
}
.cid-uSzh7kqJhP .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uSzh7kqJhP .items-wrapper .item {
  margin-bottom: 32px;
}
.cid-uSzh7kqJhP .items-wrapper .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uSzh7kqJhP .items-wrapper .item {
    margin-bottom: 22px;
  }
}
.cid-uSzh7kqJhP .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uSzh7kqJhP .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uSzh7kqJhP .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 16px;
}
.cid-uSzh7kqJhP .mbr-section-title {
  color: #ffffff;
}
.cid-uSzh7kqJhP .item-title {
  color: #ffffff;
}
.cid-uSzh7kqJhP .item-text {
  color: #ffffff;
}
.cid-uSzpIxo9Fl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffe7f7;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSzpIxo9Fl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSzpIxo9Fl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSzpIxo9Fl .section-border-item {
  background-color: #000000;
}
.cid-uSzpIxo9Fl .mbr-section-title {
  color: #fff;
}
.cid-uSzpIxo9Fl .mbr-section-subtitle {
  color: #ec44b6;
  background-image: linear-gradient(315deg, currentColor, #f7f7f7) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.cid-uSzpIxo9Fl .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uSzpIxo9Fl .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-uSzk1V91wD {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffe4f6;
}
@media (min-width: 1400px) {
  .cid-uSzk1V91wD .container {
    max-width: 1162px;
  }
}
.cid-uSzk1V91wD .mbr-iconfont {
  color: #d26eb2;
}
@media (min-width: 769px) {
  .cid-uSzk1V91wD .mbr-iconfont {
    font-size: 4rem;
  }
}
.cid-uSzk1V91wD .card-title,
.cid-uSzk1V91wD .card-box {
  color: #000000;
  text-align: center;
}
.cid-uSzk1V91wD img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uSzk1V91wD img {
    width: 140px;
    height: 140px;
  }
}
.cid-uSzk1V91wD .mbr-title {
  color: #d26eb2;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uSzk1V91wD .mbr-title {
    font-size: 64px;
  }
}
.cid-uSzk1V91wD .card-box {
  min-height: 160px;
  display: flex;
  align-items: center;
}
.cid-uSzk1V91wD .text-box {
  min-height: 160px;
  display: flex;
  align-items: center;
}
.cid-uSyZsw9g0T {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f9e0f1;
}
.cid-uSyZsw9g0T .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uSyZsw9g0T .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uSyZsw9g0T .media-container-row {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-uSyZsw9g0T .media-container-row {
    flex-direction: column;
    justify-content: center;
  }
  .cid-uSyZsw9g0T .media-container-row .footer-item,
  .cid-uSyZsw9g0T .media-container-row .mbr-social-likes,
  .cid-uSyZsw9g0T .media-container-row .footer-logo {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 546px) {
  .cid-uSyZsw9g0T .media-container-row .mbr-social-likes {
    flex-wrap: wrap;
    justify-content: center;
  }
  .cid-uSyZsw9g0T .media-container-row .mbr-social-likes .footer-item {
    margin-bottom: 1.5rem !important;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .cid-uSyZsw9g0T .media-container-row .mbr-social-likes .iconfont-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uSyZsw9g0T .row-copyright {
  word-break: break-word;
  width: auto;
  min-width: calc(100% - (8 * 1rem));
  display: inline-block;
}
.cid-uSyZsw9g0T .mbr-social-likes {
  display: flex;
  align-items: center;
}
.cid-uSyZsw9g0T .mbr-social-likes a {
  color: #000000;
}
.cid-uSyZsw9g0T .mbr-social-likes span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ff39c0;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-uSyZsw9g0T .mbr-social-likes span:hover {
  border-color: #000000;
  color: #000000;
}
.cid-uSyZsw9g0T .footer-logo img {
  width: auto;
}
.cid-uSyZsw9g0T .footer-item {
  display: flex;
  align-items: center;
}
.cid-uSyZsw9g0T .footer-item a {
  background: none !important;
  text-decoration: none !important;
}
.cid-uSyZsw9g0T .media-container-row .mbr-text {
  color: #000000;
}
.cid-uSyZsw9g0T .footer-item-title {
  color: #000000;
}
