body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Oswald', sans-serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 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: #f84db8 !important;
}
.bg-success {
  background-color: #7ccbf1 !important;
}
.bg-info {
  background-color: #1ba1e2 !important;
}
.bg-warning {
  background-color: #2d10a3 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ef0999;
  border-color: #ef0999;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #f84db8 !important;
  border-color: #f84db8 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #ef0999 !important;
  border-color: #ef0999 !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: #ef0999 !important;
  border-color: #ef0999 !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: #b3a700;
  border-color: #b3a700;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ffef00 !important;
  border-color: #ffef00 !important;
  color: #000000 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #000000 !important;
  background-color: #b3a700 !important;
  border-color: #b3a700 !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: #000000 !important;
  background-color: #b3a700 !important;
  border-color: #b3a700 !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: #13709e;
  border-color: #13709e;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !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: #13709e !important;
  border-color: #13709e !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: #37b0ea;
  border-color: #37b0ea;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #7ccbf1 !important;
  border-color: #7ccbf1 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #37b0ea !important;
  border-color: #37b0ea !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: #37b0ea !important;
  border-color: #37b0ea !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: #1a095d;
  border-color: #1a095d;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #2d10a3 !important;
  border-color: #2d10a3 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #1a095d !important;
  border-color: #1a095d !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: #1a095d !important;
  border-color: #1a095d !important;
}
.btn-danger {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
  border-radius: 100px;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #f84db8;
  border-color: #f84db8;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #d70889;
  color: #d70889 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #f84db8;
  border-color: #f84db8;
}
.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: #f84db8 !important;
  border-color: #f84db8 !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: #ffef00;
  border-color: #ffef00;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #998f00;
  color: #998f00 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #000000 !important;
  background-color: #ffef00;
  border-color: #ffef00;
}
.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: #000000 !important;
  background-color: #ffef00 !important;
  border-color: #ffef00 !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: #1ba1e2;
  border-color: #1ba1e2;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #106087;
  color: #106087 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.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: #1ba1e2 !important;
  border-color: #1ba1e2 !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: #7ccbf1;
  border-color: #7ccbf1;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #20a6e7;
  color: #20a6e7 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #7ccbf1;
  border-color: #7ccbf1;
}
.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: #7ccbf1 !important;
  border-color: #7ccbf1 !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: #2d10a3;
  border-color: #2d10a3;
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #130746;
  color: #130746 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #2d10a3;
  border-color: #2d10a3;
}
.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: #2d10a3 !important;
  border-color: #2d10a3 !important;
}
.btn-danger-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #333333;
  border-color: #333333;
  border-radius: 100px;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white-outline:hover:before,
.btn-white-outline:focus:before,
.btn-white-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.text-primary {
  color: #f84db8 !important;
}
.text-secondary {
  color: #ffef00 !important;
}
.text-success {
  color: #7ccbf1 !important;
}
.text-info {
  color: #1ba1e2 !important;
}
.text-warning {
  color: #2d10a3 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #d70889 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #998f00 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #20a6e7 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #106087 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #130746 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cccccc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #7ccbf1;
}
.alert-info {
  background-color: #1ba1e2;
}
.alert-warning {
  background-color: #2d10a3;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s, .3s, .3s, .8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f84db8;
  border-color: #f84db8;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #f84db8;
}
.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: #d0ecf9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #6746ed;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}
blockquote {
  border-color: #f84db8;
}
/* 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: #f84db8;
  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: #f84db8;
  border-bottom-color: #f84db8;
}
.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: #f84db8 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffef00 !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='%23f84db8' %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-rYMSLy4k90 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rYMSLy4k90 .nav-item:focus,
.cid-rYMSLy4k90 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rYMSLy4k90 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rYMSLy4k90 .nav-item .nav-link {
    position: relative;
  }
  .cid-rYMSLy4k90 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #f84db8, #ffef00);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rYMSLy4k90 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rYMSLy4k90 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rYMSLy4k90 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rYMSLy4k90 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rYMSLy4k90 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rYMSLy4k90 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rYMSLy4k90 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rYMSLy4k90 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rYMSLy4k90 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rYMSLy4k90 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rYMSLy4k90 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f84db8;
}
.cid-rYMSLy4k90 .navbar.opened {
  transition: all .3s;
  background: #f84db8 !important;
}
.cid-rYMSLy4k90 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rYMSLy4k90 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rYMSLy4k90 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rYMSLy4k90 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rYMSLy4k90 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-rYMSLy4k90 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rYMSLy4k90 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rYMSLy4k90 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rYMSLy4k90 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rYMSLy4k90 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rYMSLy4k90 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rYMSLy4k90 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rYMSLy4k90 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rYMSLy4k90 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rYMSLy4k90 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rYMSLy4k90 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rYMSLy4k90 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rYMSLy4k90 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rYMSLy4k90 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rYMSLy4k90 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rYMSLy4k90 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rYMSLy4k90 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rYMSLy4k90 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rYMSLy4k90 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rYMSLy4k90 .navbar.navbar-short {
  background: #f84db8 !important;
  min-height: 60px;
}
.cid-rYMSLy4k90 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rYMSLy4k90 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rYMSLy4k90 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rYMSLy4k90 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rYMSLy4k90 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rYMSLy4k90 .dropdown-item.active,
.cid-rYMSLy4k90 .dropdown-item:active {
  background-color: transparent;
}
.cid-rYMSLy4k90 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rYMSLy4k90 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rYMSLy4k90 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rYMSLy4k90 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f84db8;
}
.cid-rYMSLy4k90 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rYMSLy4k90 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rYMSLy4k90 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rYMSLy4k90 .navbar-buttons {
  text-align: center;
}
.cid-rYMSLy4k90 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rYMSLy4k90 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rYMSLy4k90 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rYMSLy4k90 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rYMSLy4k90 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rYMSLy4k90 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rYMSLy4k90 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rYMSLy4k90 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rYMSLy4k90 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rYMSLy4k90 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rYMSLy4k90 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rYMSLy4k90 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rYMSLy4k90 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rYMSLy4k90 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rYMSLy4k90 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rYMSLy4k90 .navbar {
    height: 77px;
  }
  .cid-rYMSLy4k90 .navbar.opened {
    height: auto;
  }
  .cid-rYMSLy4k90 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-skW93Gkdua {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-skW93Gkdua .container-fluid {
  padding: 0 3rem;
}
.cid-skW93Gkdua .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #f84db8, #ffef00);
  display: inline-block;
}
.cid-skW93Gkdua .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-skW93Gkdua .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-skW93Gkdua .card .card-wrapper {
  height: 1%;
}
.cid-skW93Gkdua .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-skW93Gkdua .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-skW93Gkdua .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #f84db8;
}
.cid-skW93Gkdua .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-skW93Gkdua .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-skW93Gkdua .container-fluid {
    padding: 0 1rem;
  }
}
.cid-skW93Gkdua .mbr-section-title,
.cid-skW93Gkdua .underline {
  color: #f84db8;
  text-align: center;
}
.cid-skW93Gkdua .mbr-section-subtitle {
  color: #2d10a3;
}
.cid-skW93Gkdua .mbr-card-text,
.cid-skW93Gkdua .mbr-section-btn {
  color: #2d10a3;
}
.cid-skW93Gkdua .img-text {
  color: #ffffff;
}
.cid-rYMXgNc1Fm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYMXgNc1Fm .counter-container {
  color: #767676;
}
.cid-rYMXgNc1Fm .counter-container ul {
  margin-bottom: 0;
}
.cid-rYMXgNc1Fm .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rYMXgNc1Fm .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #f84db8;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f84db8, #ffef00);
  background: none;
  border: 1px solid #f84db8;
  color: #f84db8;
  content: '✓';
}
.cid-rYMXgNc1Fm .mbr-text {
  color: #2d10a3;
}
.cid-rYMYhXVVFJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rYMYhXVVFJ .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-rYMYhXVVFJ .mbr-section-subtitle,
.cid-rYMYhXVVFJ .mbr-section-btn {
  color: #f84db8;
}
.cid-rYMTNDqMAp {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f84db8;
}
.cid-rYMTNDqMAp .container-fluid {
  padding: 0 3rem;
}
.cid-rYMTNDqMAp .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rYMTNDqMAp .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #f84db8, #ffef00);
  display: inline-block;
}
.cid-rYMTNDqMAp .card {
  margin-bottom: 2rem;
}
.cid-rYMTNDqMAp .card-img {
  width: auto !important;
}
.cid-rYMTNDqMAp .card-img .mbr-iconfont {
  color: #ffa0a4;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #ffa0a4, #a38dfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-rYMTNDqMAp .content-row {
  word-wrap: break-word;
}
.cid-rYMTNDqMAp .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rYMTNDqMAp .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-rYMTNDqMAp .mbr-text {
  color: #ffffff;
  margin: 0;
  text-align: left;
}
.cid-rYMTNDqMAp .card-title {
  color: #ffffff;
  margin: 0;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-rYMTNDqMAp .card-title,
  .cid-rYMTNDqMAp .card-box {
    text-align: left;
  }
  .cid-rYMTNDqMAp .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rYMTNDqMAp .mbr-section-title,
.cid-rYMTNDqMAp .underline {
  color: #ffffff;
}
.cid-rYMTrQdsCc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2d10a3;
}
.cid-rYMTrQdsCc .mbr-section-title span {
  display: block;
}
.cid-rYMTrQdsCc .first-column,
.cid-rYMTrQdsCc .second-column {
  margin-bottom: 1rem;
}
.cid-rYMTrQdsCc .first-column ul,
.cid-rYMTrQdsCc .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-rYMTrQdsCc .first-column ul li,
.cid-rYMTrQdsCc .second-column ul li {
  margin-bottom: 1rem;
}
.cid-rYMTrQdsCc .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-rYMTrQdsCc .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-rYMTrQdsCc .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-rYMTrQdsCc .card-support {
    text-align: center;
  }
}
.cid-rYMTrQdsCc .mbr-section-title,
.cid-rYMTrQdsCc .card-support {
  color: #ffffff;
}
.cid-rYMTrQdsCc .first-column-item {
  color: #ffffff;
}
.cid-rYN3MO2Q8j .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rYN3MO2Q8j .nav-item:focus,
.cid-rYN3MO2Q8j .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rYN3MO2Q8j .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rYN3MO2Q8j .nav-item .nav-link {
    position: relative;
  }
  .cid-rYN3MO2Q8j .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #f84db8, #ffef00);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rYN3MO2Q8j .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rYN3MO2Q8j .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rYN3MO2Q8j .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rYN3MO2Q8j .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rYN3MO2Q8j .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rYN3MO2Q8j .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rYN3MO2Q8j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rYN3MO2Q8j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rYN3MO2Q8j .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rYN3MO2Q8j .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rYN3MO2Q8j .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f84db8;
}
.cid-rYN3MO2Q8j .navbar.opened {
  transition: all .3s;
  background: #f84db8 !important;
}
.cid-rYN3MO2Q8j .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rYN3MO2Q8j .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rYN3MO2Q8j .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rYN3MO2Q8j .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rYN3MO2Q8j .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-rYN3MO2Q8j .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rYN3MO2Q8j .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rYN3MO2Q8j .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rYN3MO2Q8j .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rYN3MO2Q8j .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rYN3MO2Q8j .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rYN3MO2Q8j .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rYN3MO2Q8j .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rYN3MO2Q8j .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rYN3MO2Q8j .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rYN3MO2Q8j .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rYN3MO2Q8j .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rYN3MO2Q8j .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rYN3MO2Q8j .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rYN3MO2Q8j .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rYN3MO2Q8j .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rYN3MO2Q8j .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rYN3MO2Q8j .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rYN3MO2Q8j .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rYN3MO2Q8j .navbar.navbar-short {
  background: #f84db8 !important;
  min-height: 60px;
}
.cid-rYN3MO2Q8j .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rYN3MO2Q8j .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rYN3MO2Q8j .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rYN3MO2Q8j .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rYN3MO2Q8j .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rYN3MO2Q8j .dropdown-item.active,
.cid-rYN3MO2Q8j .dropdown-item:active {
  background-color: transparent;
}
.cid-rYN3MO2Q8j .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rYN3MO2Q8j .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rYN3MO2Q8j .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rYN3MO2Q8j .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f84db8;
}
.cid-rYN3MO2Q8j .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rYN3MO2Q8j .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rYN3MO2Q8j ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rYN3MO2Q8j .navbar-buttons {
  text-align: center;
}
.cid-rYN3MO2Q8j button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rYN3MO2Q8j button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rYN3MO2Q8j button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rYN3MO2Q8j button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rYN3MO2Q8j button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rYN3MO2Q8j button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rYN3MO2Q8j nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rYN3MO2Q8j nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rYN3MO2Q8j nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rYN3MO2Q8j nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rYN3MO2Q8j .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rYN3MO2Q8j a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rYN3MO2Q8j .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rYN3MO2Q8j .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rYN3MO2Q8j .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rYN3MO2Q8j .navbar {
    height: 77px;
  }
  .cid-rYN3MO2Q8j .navbar.opened {
    height: auto;
  }
  .cid-rYN3MO2Q8j .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rYN4OZKWHJ {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rYN4OZKWHJ .container-fluid {
  padding: 0 3rem;
}
.cid-rYN4OZKWHJ .media-container-column {
  padding: 0 2rem;
}
.cid-rYN4OZKWHJ .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #2d10a3;
}
@media (max-width: 767px) {
  .cid-rYN4OZKWHJ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rYN4OZKWHJ .mbr-section-subtitle {
  color: #f84db8;
}
.cid-rYN42DRgtC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rYN42DRgtC .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rYN42DRgtC .mbr-shop .row {
  margin: 0;
}
.cid-rYN42DRgtC .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rYN42DRgtC .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rYN42DRgtC .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rYN42DRgtC .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rYN42DRgtC .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rYN42DRgtC .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rYN42DRgtC .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rYN42DRgtC .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rYN42DRgtC .mbr-shop .hide-modal {
  display: none;
}
.cid-rYN42DRgtC .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rYN42DRgtC .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rYN42DRgtC .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rYN42DRgtC .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rYN42DRgtC .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rYN42DRgtC .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-rYN42DRgtC .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rYN42DRgtC .mbr-shop .filter-by-pu,
.cid-rYN42DRgtC .mbr-shop .filter-by-pd,
.cid-rYN42DRgtC .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rYN42DRgtC .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rYN42DRgtC .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rYN42DRgtC .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rYN42DRgtC .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-rYN42DRgtC .mbr-shop .galleryItem h4,
.cid-rYN42DRgtC .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rYN42DRgtC .mbr-shop .galleryItem h5,
.cid-rYN42DRgtC .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-rYN42DRgtC .mbr-shop .galleryItem p,
.cid-rYN42DRgtC .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-rYN42DRgtC .mbr-shop .item-button {
  text-align: center;
}
.cid-rYN42DRgtC .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rYN42DRgtC .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rYN42DRgtC .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rYN42DRgtC .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rYN42DRgtC .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rYN42DRgtC .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rYN42DRgtC .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rYN42DRgtC .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rYN42DRgtC .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rYN42DRgtC .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rYN42DRgtC .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rYN42DRgtC .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rYN42DRgtC .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rYN42DRgtC .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rYN42DRgtC .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rYN42DRgtC .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rYN42DRgtC .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #fe525b;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rYN42DRgtC .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rYN42DRgtC .mbr-shop .mbr-gallery-item__hided h4,
.cid-rYN42DRgtC .mbr-shop .mbr-gallery-item__hided h5,
.cid-rYN42DRgtC .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rYN42DRgtC .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rYN42DRgtC .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rYN42DRgtC .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rYN42DRgtC .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rYN42DRgtC .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rYN42DRgtC .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rYN42DRgtC .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rYN42DRgtC .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rYN42DRgtC .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rYN42DRgtC .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rYN42DRgtC .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rYN42DRgtC .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rYN42DRgtC .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-rYN42DRgtC .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rYN42DRgtC .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rYN42DRgtC .mbr-shop .range-controls {
  position: relative;
}
.cid-rYN42DRgtC .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rYN42DRgtC .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rYN42DRgtC .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rYN42DRgtC .mbr-shop .toggle:hover,
.cid-rYN42DRgtC .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rYN42DRgtC .mbr-shop .min-toggle {
  left: 0;
}
.cid-rYN42DRgtC .mbr-shop .max-toggle {
  right: 0;
}
.cid-rYN42DRgtC .mbr-shop .hided-by-price {
  display: none;
}
.cid-rYN42DRgtC .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rYN42DRgtC .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rYN42DRgtC .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rYN42DRgtC .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rYN42DRgtC .mbr-shop .text-modal .price-block span {
  display: inline-block;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rYN42DRgtC .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rYN42DRgtC .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rYN42DRgtC .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rYN42DRgtC .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rYN42DRgtC .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rYN42DRgtC .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-rYN42DRgtC .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-rYN42DRgtC .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-rYN42DRgtC .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rYN42DRgtC .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rYN42DRgtC .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rYN42DRgtC .mbr-shop .shop-items .onsale,
.cid-rYN42DRgtC .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rYN42DRgtC .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rYN42DRgtC .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rYN42DRgtC .mbr-shop .price-range {
  display: inline-block;
}
.cid-rYN42DRgtC .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rYN42DRgtC .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rYN42DRgtC .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rYN42DRgtC .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rYN42DRgtC .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rYN42DRgtC .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rYN42DRgtC .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rYN42DRgtC .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rYN42DRgtC .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rYN42DRgtC .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rYN42DRgtC .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rYN42DRgtC .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rYN42DRgtC .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rYN42DRgtC .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rYN42DRgtC .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rYN42DRgtC .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rYN42DRgtC .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rYN42DRgtC .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rYN42DRgtC .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rYN42DRgtC .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rYN42DRgtC .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rYN42DRgtC .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rYN42DRgtC .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rYN42DRgtC .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rYN42DRgtC .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rYN42DRgtC .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rYN42DRgtC .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rYN42DRgtC .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rYN42DRgtC .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rYN42DRgtC .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rYN42DRgtC .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rYN42DRgtC .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rYN42DRgtC .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rYN42DRgtC .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-rYN42DRgtC .mbr-gallery-item .sidebar_wraper .mbr-section-btn {
  text-align: left;
}
.cid-rYN42DRgtC .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  padding-bottom: .5rem;
}
.cid-rYN42DRgtC .mbr-gallery-item .sidebar_wraper .item-subtitle {
  text-align: left;
}
.cid-rYN42DRgtC .mbr-gallery-item .sidebar_wraper .price-block {
  text-align: left;
}
.cid-rYN42DRgtC .range-controls {
  display: block !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rYN42DRgtC .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-rYN42DRgtC .card-description {
  color: #000000;
}
.cid-rYN42DRgtC .item-title {
  color: #f84db8;
}
.cid-rYN42DRgtC .oldprice,
.cid-rYN42DRgtC .price-block {
  color: #000000;
}
.cid-rYN3MSaJsW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2d10a3;
}
.cid-rYN3MSaJsW .mbr-section-title span {
  display: block;
}
.cid-rYN3MSaJsW .first-column,
.cid-rYN3MSaJsW .second-column {
  margin-bottom: 1rem;
}
.cid-rYN3MSaJsW .first-column ul,
.cid-rYN3MSaJsW .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-rYN3MSaJsW .first-column ul li,
.cid-rYN3MSaJsW .second-column ul li {
  margin-bottom: 1rem;
}
.cid-rYN3MSaJsW .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-rYN3MSaJsW .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-rYN3MSaJsW .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-rYN3MSaJsW .card-support {
    text-align: center;
  }
}
.cid-rYN3MSaJsW .mbr-section-title,
.cid-rYN3MSaJsW .card-support {
  color: #ffffff;
}
.cid-rYN3MSaJsW .first-column-item {
  color: #ffffff;
}
.cid-rYNoS5Z4Ig .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rYNoS5Z4Ig .nav-item:focus,
.cid-rYNoS5Z4Ig .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rYNoS5Z4Ig .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rYNoS5Z4Ig .nav-item .nav-link {
    position: relative;
  }
  .cid-rYNoS5Z4Ig .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #f84db8, #ffef00);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rYNoS5Z4Ig .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rYNoS5Z4Ig .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rYNoS5Z4Ig .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rYNoS5Z4Ig .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rYNoS5Z4Ig .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rYNoS5Z4Ig .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rYNoS5Z4Ig .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rYNoS5Z4Ig .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rYNoS5Z4Ig .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rYNoS5Z4Ig .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rYNoS5Z4Ig .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f84db8;
}
.cid-rYNoS5Z4Ig .navbar.opened {
  transition: all .3s;
  background: #f84db8 !important;
}
.cid-rYNoS5Z4Ig .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rYNoS5Z4Ig .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rYNoS5Z4Ig .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rYNoS5Z4Ig .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rYNoS5Z4Ig .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-rYNoS5Z4Ig .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rYNoS5Z4Ig .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rYNoS5Z4Ig .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rYNoS5Z4Ig .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rYNoS5Z4Ig .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rYNoS5Z4Ig .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rYNoS5Z4Ig .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rYNoS5Z4Ig .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rYNoS5Z4Ig .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rYNoS5Z4Ig .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rYNoS5Z4Ig .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rYNoS5Z4Ig .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rYNoS5Z4Ig .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rYNoS5Z4Ig .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rYNoS5Z4Ig .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rYNoS5Z4Ig .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rYNoS5Z4Ig .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rYNoS5Z4Ig .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rYNoS5Z4Ig .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rYNoS5Z4Ig .navbar.navbar-short {
  background: #f84db8 !important;
  min-height: 60px;
}
.cid-rYNoS5Z4Ig .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rYNoS5Z4Ig .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rYNoS5Z4Ig .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rYNoS5Z4Ig .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rYNoS5Z4Ig .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rYNoS5Z4Ig .dropdown-item.active,
.cid-rYNoS5Z4Ig .dropdown-item:active {
  background-color: transparent;
}
.cid-rYNoS5Z4Ig .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rYNoS5Z4Ig .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rYNoS5Z4Ig .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rYNoS5Z4Ig .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f84db8;
}
.cid-rYNoS5Z4Ig .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rYNoS5Z4Ig .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rYNoS5Z4Ig ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rYNoS5Z4Ig .navbar-buttons {
  text-align: center;
}
.cid-rYNoS5Z4Ig button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rYNoS5Z4Ig button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rYNoS5Z4Ig button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rYNoS5Z4Ig button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rYNoS5Z4Ig button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rYNoS5Z4Ig button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rYNoS5Z4Ig nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rYNoS5Z4Ig nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rYNoS5Z4Ig nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rYNoS5Z4Ig nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rYNoS5Z4Ig .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rYNoS5Z4Ig a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rYNoS5Z4Ig .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rYNoS5Z4Ig .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rYNoS5Z4Ig .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rYNoS5Z4Ig .navbar {
    height: 77px;
  }
  .cid-rYNoS5Z4Ig .navbar.opened {
    height: auto;
  }
  .cid-rYNoS5Z4Ig .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rYNpw3Sjha {
  padding-top: 150px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/divasonthewall-2000x1500.jpg");
}
.cid-rYNpw3Sjha .container-fluid {
  padding: 0 3rem;
}
.cid-rYNpw3Sjha .media-container-column {
  padding: 0 2rem;
}
.cid-rYNpw3Sjha .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #2d10a3;
}
@media (max-width: 767px) {
  .cid-rYNpw3Sjha .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rYNpw3Sjha .mbr-section-subtitle {
  color: #2d10a3;
}
.cid-rYNoS92fpe {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2d10a3;
}
.cid-rYNoS92fpe .mbr-section-title span {
  display: block;
}
.cid-rYNoS92fpe .first-column,
.cid-rYNoS92fpe .second-column {
  margin-bottom: 1rem;
}
.cid-rYNoS92fpe .first-column ul,
.cid-rYNoS92fpe .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-rYNoS92fpe .first-column ul li,
.cid-rYNoS92fpe .second-column ul li {
  margin-bottom: 1rem;
}
.cid-rYNoS92fpe .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-rYNoS92fpe .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-rYNoS92fpe .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-rYNoS92fpe .card-support {
    text-align: center;
  }
}
.cid-rYNoS92fpe .mbr-section-title,
.cid-rYNoS92fpe .card-support {
  color: #ffffff;
}
.cid-rYNoS92fpe .first-column-item {
  color: #ffffff;
}
.cid-rYNqFzmcGY .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rYNqFzmcGY .nav-item:focus,
.cid-rYNqFzmcGY .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rYNqFzmcGY .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rYNqFzmcGY .nav-item .nav-link {
    position: relative;
  }
  .cid-rYNqFzmcGY .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #f84db8, #ffef00);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rYNqFzmcGY .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rYNqFzmcGY .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rYNqFzmcGY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rYNqFzmcGY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rYNqFzmcGY .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rYNqFzmcGY .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rYNqFzmcGY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rYNqFzmcGY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rYNqFzmcGY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rYNqFzmcGY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rYNqFzmcGY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f84db8;
}
.cid-rYNqFzmcGY .navbar.opened {
  transition: all .3s;
  background: #f84db8 !important;
}
.cid-rYNqFzmcGY .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rYNqFzmcGY .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rYNqFzmcGY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rYNqFzmcGY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rYNqFzmcGY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-rYNqFzmcGY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rYNqFzmcGY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rYNqFzmcGY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rYNqFzmcGY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rYNqFzmcGY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rYNqFzmcGY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rYNqFzmcGY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rYNqFzmcGY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rYNqFzmcGY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rYNqFzmcGY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rYNqFzmcGY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rYNqFzmcGY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rYNqFzmcGY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rYNqFzmcGY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rYNqFzmcGY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rYNqFzmcGY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rYNqFzmcGY .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rYNqFzmcGY .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rYNqFzmcGY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rYNqFzmcGY .navbar.navbar-short {
  background: #f84db8 !important;
  min-height: 60px;
}
.cid-rYNqFzmcGY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rYNqFzmcGY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rYNqFzmcGY .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rYNqFzmcGY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rYNqFzmcGY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rYNqFzmcGY .dropdown-item.active,
.cid-rYNqFzmcGY .dropdown-item:active {
  background-color: transparent;
}
.cid-rYNqFzmcGY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rYNqFzmcGY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rYNqFzmcGY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rYNqFzmcGY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f84db8;
}
.cid-rYNqFzmcGY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rYNqFzmcGY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rYNqFzmcGY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rYNqFzmcGY .navbar-buttons {
  text-align: center;
}
.cid-rYNqFzmcGY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rYNqFzmcGY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rYNqFzmcGY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rYNqFzmcGY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rYNqFzmcGY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rYNqFzmcGY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rYNqFzmcGY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rYNqFzmcGY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rYNqFzmcGY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rYNqFzmcGY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rYNqFzmcGY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rYNqFzmcGY a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rYNqFzmcGY .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rYNqFzmcGY .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rYNqFzmcGY .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rYNqFzmcGY .navbar {
    height: 77px;
  }
  .cid-rYNqFzmcGY .navbar.opened {
    height: auto;
  }
  .cid-rYNqFzmcGY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rYNqFAp0rk {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/divasonthewall-2000x1500.jpg");
}
.cid-rYNqFAp0rk .container-fluid {
  padding: 0 3rem;
}
.cid-rYNqFAp0rk .media-container-column {
  padding: 0 2rem;
}
.cid-rYNqFAp0rk .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #2d10a3;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-rYNqFAp0rk .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rYNqFAp0rk .mbr-section-subtitle {
  color: #2d10a3;
}
.cid-rYNqFCh0ej {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2d10a3;
}
.cid-rYNqFCh0ej .mbr-section-title span {
  display: block;
}
.cid-rYNqFCh0ej .first-column,
.cid-rYNqFCh0ej .second-column {
  margin-bottom: 1rem;
}
.cid-rYNqFCh0ej .first-column ul,
.cid-rYNqFCh0ej .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-rYNqFCh0ej .first-column ul li,
.cid-rYNqFCh0ej .second-column ul li {
  margin-bottom: 1rem;
}
.cid-rYNqFCh0ej .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-rYNqFCh0ej .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-rYNqFCh0ej .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-rYNqFCh0ej .card-support {
    text-align: center;
  }
}
.cid-rYNqFCh0ej .mbr-section-title,
.cid-rYNqFCh0ej .card-support {
  color: #ffffff;
}
.cid-rYNqFCh0ej .first-column-item {
  color: #ffffff;
}
.cid-s0KcJKKT4k .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s0KcJKKT4k .nav-item:focus,
.cid-s0KcJKKT4k .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-s0KcJKKT4k .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-s0KcJKKT4k .nav-item .nav-link {
    position: relative;
  }
  .cid-s0KcJKKT4k .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #f84db8, #ffef00);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-s0KcJKKT4k .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-s0KcJKKT4k .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s0KcJKKT4k .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s0KcJKKT4k .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s0KcJKKT4k .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-s0KcJKKT4k .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-s0KcJKKT4k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s0KcJKKT4k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s0KcJKKT4k .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s0KcJKKT4k .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s0KcJKKT4k .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f84db8;
}
.cid-s0KcJKKT4k .navbar.opened {
  transition: all .3s;
  background: #f84db8 !important;
}
.cid-s0KcJKKT4k .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-s0KcJKKT4k .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-s0KcJKKT4k .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s0KcJKKT4k .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s0KcJKKT4k .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-s0KcJKKT4k .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-s0KcJKKT4k .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s0KcJKKT4k .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s0KcJKKT4k .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s0KcJKKT4k .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s0KcJKKT4k .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s0KcJKKT4k .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s0KcJKKT4k .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s0KcJKKT4k .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s0KcJKKT4k .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-s0KcJKKT4k .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s0KcJKKT4k .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s0KcJKKT4k .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s0KcJKKT4k .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s0KcJKKT4k .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s0KcJKKT4k .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s0KcJKKT4k .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-s0KcJKKT4k .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s0KcJKKT4k .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s0KcJKKT4k .navbar.navbar-short {
  background: #f84db8 !important;
  min-height: 60px;
}
.cid-s0KcJKKT4k .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s0KcJKKT4k .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s0KcJKKT4k .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s0KcJKKT4k .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s0KcJKKT4k .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s0KcJKKT4k .dropdown-item.active,
.cid-s0KcJKKT4k .dropdown-item:active {
  background-color: transparent;
}
.cid-s0KcJKKT4k .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s0KcJKKT4k .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s0KcJKKT4k .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s0KcJKKT4k .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f84db8;
}
.cid-s0KcJKKT4k .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s0KcJKKT4k .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s0KcJKKT4k ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s0KcJKKT4k .navbar-buttons {
  text-align: center;
}
.cid-s0KcJKKT4k button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s0KcJKKT4k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s0KcJKKT4k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s0KcJKKT4k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s0KcJKKT4k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s0KcJKKT4k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s0KcJKKT4k nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s0KcJKKT4k nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s0KcJKKT4k nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s0KcJKKT4k nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s0KcJKKT4k .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s0KcJKKT4k a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s0KcJKKT4k .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s0KcJKKT4k .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-s0KcJKKT4k .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s0KcJKKT4k .navbar {
    height: 77px;
  }
  .cid-s0KcJKKT4k .navbar.opened {
    height: auto;
  }
  .cid-s0KcJKKT4k .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s0KcJLlRrA {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-s0KcJLlRrA .container-fluid {
  padding: 0 3rem;
}
.cid-s0KcJLlRrA .media-container-column {
  padding: 0 2rem;
}
.cid-s0KcJLlRrA .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #2d10a3;
}
@media (max-width: 767px) {
  .cid-s0KcJLlRrA .container-fluid {
    padding: 0 1rem;
  }
}
.cid-s0KcJLlRrA .mbr-section-subtitle {
  color: #f84db8;
}
.cid-s0KcJLLwyv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s0KcJLLwyv .mbr-shop {
  display: table;
  width: 100%;
}
.cid-s0KcJLLwyv .mbr-shop .row {
  margin: 0;
}
.cid-s0KcJLLwyv .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-s0KcJLLwyv .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-s0KcJLLwyv .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-s0KcJLLwyv .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-s0KcJLLwyv .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-s0KcJLLwyv .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-s0KcJLLwyv .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-s0KcJLLwyv .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-s0KcJLLwyv .mbr-shop .hide-modal {
  display: none;
}
.cid-s0KcJLLwyv .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-s0KcJLLwyv .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-s0KcJLLwyv .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-s0KcJLLwyv .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-s0KcJLLwyv .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-s0KcJLLwyv .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-s0KcJLLwyv .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-s0KcJLLwyv .mbr-shop .filter-by-pu,
.cid-s0KcJLLwyv .mbr-shop .filter-by-pd,
.cid-s0KcJLLwyv .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-s0KcJLLwyv .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-s0KcJLLwyv .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-s0KcJLLwyv .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-s0KcJLLwyv .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-s0KcJLLwyv .mbr-shop .galleryItem h4,
.cid-s0KcJLLwyv .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-s0KcJLLwyv .mbr-shop .galleryItem h5,
.cid-s0KcJLLwyv .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-s0KcJLLwyv .mbr-shop .galleryItem p,
.cid-s0KcJLLwyv .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-s0KcJLLwyv .mbr-shop .item-button {
  text-align: center;
}
.cid-s0KcJLLwyv .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-s0KcJLLwyv .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-s0KcJLLwyv .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-s0KcJLLwyv .mbr-shop .sidebar-block {
  position: relative;
}
.cid-s0KcJLLwyv .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-s0KcJLLwyv .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-s0KcJLLwyv .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-s0KcJLLwyv .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-s0KcJLLwyv .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-s0KcJLLwyv .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-s0KcJLLwyv .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-s0KcJLLwyv .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-s0KcJLLwyv .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-s0KcJLLwyv .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-s0KcJLLwyv .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-s0KcJLLwyv .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-s0KcJLLwyv .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #fe525b;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-s0KcJLLwyv .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-s0KcJLLwyv .mbr-shop .mbr-gallery-item__hided h4,
.cid-s0KcJLLwyv .mbr-shop .mbr-gallery-item__hided h5,
.cid-s0KcJLLwyv .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-s0KcJLLwyv .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-s0KcJLLwyv .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-s0KcJLLwyv .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-s0KcJLLwyv .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-s0KcJLLwyv .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-s0KcJLLwyv .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-s0KcJLLwyv .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-s0KcJLLwyv .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-s0KcJLLwyv .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-s0KcJLLwyv .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-s0KcJLLwyv .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-s0KcJLLwyv .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-s0KcJLLwyv .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-s0KcJLLwyv .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-s0KcJLLwyv .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-s0KcJLLwyv .mbr-shop .range-controls {
  position: relative;
}
.cid-s0KcJLLwyv .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-s0KcJLLwyv .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-s0KcJLLwyv .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-s0KcJLLwyv .mbr-shop .toggle:hover,
.cid-s0KcJLLwyv .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-s0KcJLLwyv .mbr-shop .min-toggle {
  left: 0;
}
.cid-s0KcJLLwyv .mbr-shop .max-toggle {
  right: 0;
}
.cid-s0KcJLLwyv .mbr-shop .hided-by-price {
  display: none;
}
.cid-s0KcJLLwyv .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-s0KcJLLwyv .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-s0KcJLLwyv .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-s0KcJLLwyv .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-s0KcJLLwyv .mbr-shop .text-modal .price-block span {
  display: inline-block;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-s0KcJLLwyv .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-s0KcJLLwyv .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-s0KcJLLwyv .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-s0KcJLLwyv .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-s0KcJLLwyv .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-s0KcJLLwyv .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-s0KcJLLwyv .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-s0KcJLLwyv .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-s0KcJLLwyv .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-s0KcJLLwyv .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-s0KcJLLwyv .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-s0KcJLLwyv .mbr-shop .shop-items .onsale,
.cid-s0KcJLLwyv .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-s0KcJLLwyv .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-s0KcJLLwyv .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-s0KcJLLwyv .mbr-shop .price-range {
  display: inline-block;
}
.cid-s0KcJLLwyv .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-s0KcJLLwyv .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-s0KcJLLwyv .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-s0KcJLLwyv .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-s0KcJLLwyv .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-s0KcJLLwyv .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-s0KcJLLwyv .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-s0KcJLLwyv .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-s0KcJLLwyv .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-s0KcJLLwyv .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-s0KcJLLwyv .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-s0KcJLLwyv .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-s0KcJLLwyv .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-s0KcJLLwyv .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-s0KcJLLwyv .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-s0KcJLLwyv .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-s0KcJLLwyv .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-s0KcJLLwyv .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-s0KcJLLwyv .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-s0KcJLLwyv .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-s0KcJLLwyv .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-s0KcJLLwyv .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-s0KcJLLwyv .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-s0KcJLLwyv .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-s0KcJLLwyv .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-s0KcJLLwyv .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-s0KcJLLwyv .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-s0KcJLLwyv .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-s0KcJLLwyv .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-s0KcJLLwyv .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-s0KcJLLwyv .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-s0KcJLLwyv .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-s0KcJLLwyv .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-s0KcJLLwyv .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-s0KcJLLwyv .mbr-gallery-item .sidebar_wraper .mbr-section-btn {
  text-align: left;
}
.cid-s0KcJLLwyv .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  padding-bottom: .5rem;
}
.cid-s0KcJLLwyv .mbr-gallery-item .sidebar_wraper .item-subtitle {
  text-align: left;
}
.cid-s0KcJLLwyv .mbr-gallery-item .sidebar_wraper .price-block {
  text-align: left;
}
.cid-s0KcJLLwyv .range-controls {
  display: block !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s0KcJLLwyv .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-s0KcJLLwyv .card-description {
  color: #000000;
}
.cid-s0KcJLLwyv .item-title {
  color: #f84db8;
}
.cid-s0KcJMSGf7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2d10a3;
}
.cid-s0KcJMSGf7 .mbr-section-title span {
  display: block;
}
.cid-s0KcJMSGf7 .first-column,
.cid-s0KcJMSGf7 .second-column {
  margin-bottom: 1rem;
}
.cid-s0KcJMSGf7 .first-column ul,
.cid-s0KcJMSGf7 .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-s0KcJMSGf7 .first-column ul li,
.cid-s0KcJMSGf7 .second-column ul li {
  margin-bottom: 1rem;
}
.cid-s0KcJMSGf7 .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-s0KcJMSGf7 .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-s0KcJMSGf7 .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-s0KcJMSGf7 .card-support {
    text-align: center;
  }
}
.cid-s0KcJMSGf7 .mbr-section-title,
.cid-s0KcJMSGf7 .card-support {
  color: #ffffff;
}
.cid-s0KcJMSGf7 .first-column-item {
  color: #ffffff;
}
.cid-s2mscKFuMB .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s2mscKFuMB .nav-item:focus,
.cid-s2mscKFuMB .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-s2mscKFuMB .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-s2mscKFuMB .nav-item .nav-link {
    position: relative;
  }
  .cid-s2mscKFuMB .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #f84db8, #ffef00);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-s2mscKFuMB .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-s2mscKFuMB .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s2mscKFuMB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s2mscKFuMB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s2mscKFuMB .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-s2mscKFuMB .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-s2mscKFuMB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s2mscKFuMB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s2mscKFuMB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s2mscKFuMB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s2mscKFuMB .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f84db8;
}
.cid-s2mscKFuMB .navbar.opened {
  transition: all .3s;
  background: #f84db8 !important;
}
.cid-s2mscKFuMB .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-s2mscKFuMB .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-s2mscKFuMB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s2mscKFuMB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s2mscKFuMB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-s2mscKFuMB .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-s2mscKFuMB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s2mscKFuMB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s2mscKFuMB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s2mscKFuMB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s2mscKFuMB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s2mscKFuMB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s2mscKFuMB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s2mscKFuMB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s2mscKFuMB .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-s2mscKFuMB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s2mscKFuMB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s2mscKFuMB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s2mscKFuMB .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s2mscKFuMB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s2mscKFuMB .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s2mscKFuMB .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-s2mscKFuMB .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s2mscKFuMB .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s2mscKFuMB .navbar.navbar-short {
  background: #f84db8 !important;
  min-height: 60px;
}
.cid-s2mscKFuMB .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s2mscKFuMB .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s2mscKFuMB .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s2mscKFuMB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s2mscKFuMB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s2mscKFuMB .dropdown-item.active,
.cid-s2mscKFuMB .dropdown-item:active {
  background-color: transparent;
}
.cid-s2mscKFuMB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s2mscKFuMB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s2mscKFuMB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s2mscKFuMB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f84db8;
}
.cid-s2mscKFuMB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s2mscKFuMB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s2mscKFuMB ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s2mscKFuMB .navbar-buttons {
  text-align: center;
}
.cid-s2mscKFuMB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s2mscKFuMB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s2mscKFuMB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s2mscKFuMB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s2mscKFuMB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s2mscKFuMB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s2mscKFuMB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s2mscKFuMB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s2mscKFuMB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s2mscKFuMB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s2mscKFuMB .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s2mscKFuMB a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s2mscKFuMB .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s2mscKFuMB .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-s2mscKFuMB .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s2mscKFuMB .navbar {
    height: 77px;
  }
  .cid-s2mscKFuMB .navbar.opened {
    height: auto;
  }
  .cid-s2mscKFuMB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s2mscLdCTu {
  padding-top: 150px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/divasonthewall-2000x1500.jpg");
}
.cid-s2mscLdCTu .container-fluid {
  padding: 0 3rem;
}
.cid-s2mscLdCTu .media-container-column {
  padding: 0 2rem;
}
.cid-s2mscLdCTu .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #2d10a3;
}
@media (max-width: 767px) {
  .cid-s2mscLdCTu .container-fluid {
    padding: 0 1rem;
  }
}
.cid-s2mscLdCTu .mbr-section-subtitle {
  color: #2d10a3;
}
.cid-s2mscMuU7r {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2d10a3;
}
.cid-s2mscMuU7r .mbr-section-title span {
  display: block;
}
.cid-s2mscMuU7r .first-column,
.cid-s2mscMuU7r .second-column {
  margin-bottom: 1rem;
}
.cid-s2mscMuU7r .first-column ul,
.cid-s2mscMuU7r .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-s2mscMuU7r .first-column ul li,
.cid-s2mscMuU7r .second-column ul li {
  margin-bottom: 1rem;
}
.cid-s2mscMuU7r .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-s2mscMuU7r .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-s2mscMuU7r .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-s2mscMuU7r .card-support {
    text-align: center;
  }
}
.cid-s2mscMuU7r .mbr-section-title,
.cid-s2mscMuU7r .card-support {
  color: #ffffff;
}
.cid-s2mscMuU7r .first-column-item {
  color: #ffffff;
}
.cid-rYN12h5KuH .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rYN12h5KuH .nav-item:focus,
.cid-rYN12h5KuH .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rYN12h5KuH .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rYN12h5KuH .nav-item .nav-link {
    position: relative;
  }
  .cid-rYN12h5KuH .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #f84db8, #ffef00);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rYN12h5KuH .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rYN12h5KuH .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rYN12h5KuH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rYN12h5KuH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rYN12h5KuH .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rYN12h5KuH .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rYN12h5KuH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rYN12h5KuH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rYN12h5KuH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rYN12h5KuH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rYN12h5KuH .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f84db8;
}
.cid-rYN12h5KuH .navbar.opened {
  transition: all .3s;
  background: #f84db8 !important;
}
.cid-rYN12h5KuH .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rYN12h5KuH .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rYN12h5KuH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rYN12h5KuH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rYN12h5KuH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-rYN12h5KuH .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rYN12h5KuH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rYN12h5KuH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rYN12h5KuH .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rYN12h5KuH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rYN12h5KuH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rYN12h5KuH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rYN12h5KuH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rYN12h5KuH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rYN12h5KuH .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rYN12h5KuH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rYN12h5KuH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rYN12h5KuH .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rYN12h5KuH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rYN12h5KuH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rYN12h5KuH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rYN12h5KuH .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rYN12h5KuH .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rYN12h5KuH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rYN12h5KuH .navbar.navbar-short {
  background: #f84db8 !important;
  min-height: 60px;
}
.cid-rYN12h5KuH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rYN12h5KuH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rYN12h5KuH .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rYN12h5KuH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rYN12h5KuH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rYN12h5KuH .dropdown-item.active,
.cid-rYN12h5KuH .dropdown-item:active {
  background-color: transparent;
}
.cid-rYN12h5KuH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rYN12h5KuH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rYN12h5KuH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rYN12h5KuH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f84db8;
}
.cid-rYN12h5KuH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rYN12h5KuH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rYN12h5KuH ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rYN12h5KuH .navbar-buttons {
  text-align: center;
}
.cid-rYN12h5KuH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rYN12h5KuH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rYN12h5KuH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rYN12h5KuH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rYN12h5KuH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rYN12h5KuH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rYN12h5KuH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rYN12h5KuH nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rYN12h5KuH nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rYN12h5KuH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rYN12h5KuH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rYN12h5KuH a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rYN12h5KuH .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rYN12h5KuH .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rYN12h5KuH .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rYN12h5KuH .navbar {
    height: 77px;
  }
  .cid-rYN12h5KuH .navbar.opened {
    height: auto;
  }
  .cid-rYN12h5KuH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rYNiHRUH5e {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rYNiHRUH5e .container-fluid {
  padding: 0 3rem;
}
.cid-rYNiHRUH5e .media-container-column {
  padding: 0 2rem;
}
.cid-rYNiHRUH5e .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #f84db8;
}
@media (max-width: 767px) {
  .cid-rYNiHRUH5e .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rYN12hW2dN {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rYN12hW2dN .mbr-section-subtitle {
  color: #767676;
}
.cid-rYN12hW2dN .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rYN12hW2dN .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #f84db8, #ffef00);
  display: inline-block;
}
.cid-rYN12hW2dN .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-rYN12hW2dN .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rYN12hW2dN .wrapper {
  padding: 2rem 1rem 1rem 1rem;
  background: #bbbbbb;
}
.cid-rYN12hW2dN .card-overlay {
  display: none;
}
.cid-rYN12hW2dN .mbr-section-title,
.cid-rYN12hW2dN .underline,
.cid-rYN12hW2dN .mbr-section-subtitle {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .cid-rYN12hW2dN .image-element:hover .card-overlay {
    opacity: .5;
    border-bottom-right-radius: 7rem;
  }
  .cid-rYN12hW2dN .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-rYN12hW2dN .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-rYN12hW2dN .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-rYN12hW2dN .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rYN12hW2dN .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rYN12hW2dN .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rYN12hW2dN .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rYN12hW2dN .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: transparent;
  }
  .cid-rYN12hW2dN .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-rYN12hW2dN .card-overlay {
    transition: all .5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-rYN12hW2dN .underline .line {
    height: 2px;
  }
  .cid-rYN12hW2dN .card-title,
  .cid-rYN12hW2dN .underline,
  .cid-rYN12hW2dN .mbr-text,
  .cid-rYN12hW2dN .mbr-section-btn,
  .cid-rYN12hW2dN .mbr-section-subtitle,
  .cid-rYN12hW2dN .mbr-section-title {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .cid-rYN12hW2dN .main {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .cid-rYN12hW2dN .mbr-section-title,
  .cid-rYN12hW2dN .underline,
  .cid-rYN12hW2dN .mbr-section-subtitle {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-rYN12hW2dN .mbr-section-title,
.cid-rYN12hW2dN .underline {
  color: #f84db8;
}
.cid-rYN12iBOSo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYN12iBOSo .counter-container {
  color: #767676;
}
.cid-rYN12iBOSo .counter-container ul {
  margin-bottom: 0;
}
.cid-rYN12iBOSo .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rYN12iBOSo .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #f84db8;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f84db8, #ffef00);
  background: none;
  border: 1px solid #f84db8;
  color: #f84db8;
  content: '✓';
}
.cid-rYN12iXD0V {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rYN12iXD0V .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-rYN12iXD0V .mbr-section-subtitle,
.cid-rYN12iXD0V .mbr-section-btn {
  color: #f84db8;
}
.cid-rYN12ksYax {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2d10a3;
}
.cid-rYN12ksYax .mbr-section-title span {
  display: block;
}
.cid-rYN12ksYax .first-column,
.cid-rYN12ksYax .second-column {
  margin-bottom: 1rem;
}
.cid-rYN12ksYax .first-column ul,
.cid-rYN12ksYax .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-rYN12ksYax .first-column ul li,
.cid-rYN12ksYax .second-column ul li {
  margin-bottom: 1rem;
}
.cid-rYN12ksYax .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-rYN12ksYax .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-rYN12ksYax .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-rYN12ksYax .card-support {
    text-align: center;
  }
}
.cid-rYN12ksYax .mbr-section-title,
.cid-rYN12ksYax .card-support {
  color: #ffffff;
}
.cid-rYN12ksYax .first-column-item {
  color: #ffffff;
}
.cid-s31Ho64Ajj .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s31Ho64Ajj .nav-item:focus,
.cid-s31Ho64Ajj .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-s31Ho64Ajj .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-s31Ho64Ajj .nav-item .nav-link {
    position: relative;
  }
  .cid-s31Ho64Ajj .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #f84db8, #ffef00);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-s31Ho64Ajj .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-s31Ho64Ajj .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s31Ho64Ajj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s31Ho64Ajj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s31Ho64Ajj .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-s31Ho64Ajj .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-s31Ho64Ajj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s31Ho64Ajj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s31Ho64Ajj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s31Ho64Ajj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s31Ho64Ajj .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f84db8;
}
.cid-s31Ho64Ajj .navbar.opened {
  transition: all .3s;
  background: #f84db8 !important;
}
.cid-s31Ho64Ajj .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-s31Ho64Ajj .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-s31Ho64Ajj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s31Ho64Ajj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s31Ho64Ajj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-s31Ho64Ajj .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-s31Ho64Ajj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s31Ho64Ajj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s31Ho64Ajj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s31Ho64Ajj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s31Ho64Ajj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s31Ho64Ajj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s31Ho64Ajj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s31Ho64Ajj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s31Ho64Ajj .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-s31Ho64Ajj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s31Ho64Ajj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s31Ho64Ajj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s31Ho64Ajj .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s31Ho64Ajj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s31Ho64Ajj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s31Ho64Ajj .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-s31Ho64Ajj .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s31Ho64Ajj .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s31Ho64Ajj .navbar.navbar-short {
  background: #f84db8 !important;
  min-height: 60px;
}
.cid-s31Ho64Ajj .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s31Ho64Ajj .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s31Ho64Ajj .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s31Ho64Ajj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s31Ho64Ajj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s31Ho64Ajj .dropdown-item.active,
.cid-s31Ho64Ajj .dropdown-item:active {
  background-color: transparent;
}
.cid-s31Ho64Ajj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s31Ho64Ajj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s31Ho64Ajj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s31Ho64Ajj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f84db8;
}
.cid-s31Ho64Ajj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s31Ho64Ajj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s31Ho64Ajj ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s31Ho64Ajj .navbar-buttons {
  text-align: center;
}
.cid-s31Ho64Ajj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s31Ho64Ajj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s31Ho64Ajj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s31Ho64Ajj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s31Ho64Ajj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s31Ho64Ajj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s31Ho64Ajj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s31Ho64Ajj nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s31Ho64Ajj nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s31Ho64Ajj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s31Ho64Ajj .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s31Ho64Ajj a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s31Ho64Ajj .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s31Ho64Ajj .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-s31Ho64Ajj .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s31Ho64Ajj .navbar {
    height: 77px;
  }
  .cid-s31Ho64Ajj .navbar.opened {
    height: auto;
  }
  .cid-s31Ho64Ajj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s31Ho6xzRl {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-s31Ho6xzRl .container-fluid {
  padding: 0 3rem;
}
.cid-s31Ho6xzRl .media-container-column {
  padding: 0 2rem;
}
.cid-s31Ho6xzRl .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #f84db8;
}
@media (max-width: 767px) {
  .cid-s31Ho6xzRl .container-fluid {
    padding: 0 1rem;
  }
}
.cid-s31SYaGHOq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/divasonthewall-white-bg-nologo-2000x2000.jpg");
}
.cid-s31SYaGHOq .container-fluid {
  padding: 0 3rem;
}
.cid-s31SYaGHOq .card {
  display: block;
}
.cid-s31SYaGHOq .card .card-wrapper {
  height: 1%;
}
.cid-s31SYaGHOq .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-s31SYaGHOq .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-s31SYaGHOq .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-s31SYaGHOq .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-s31SYaGHOq .container-fluid {
    padding: 0 1rem;
  }
  .cid-s31SYaGHOq .text-row {
    padding-bottom: 1rem;
  }
}
.cid-s31Ho7eL4S {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s31Ho7eL4S .counter-container {
  color: #767676;
}
.cid-s31Ho7eL4S .counter-container ul {
  margin-bottom: 0;
}
.cid-s31Ho7eL4S .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-s31Ho7eL4S .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #f84db8;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f84db8, #ffef00);
  background: none;
  border: 1px solid #f84db8;
  color: #f84db8;
  content: '✓';
}
.cid-s31Ho7v8z6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s31Ho7v8z6 .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-s31Ho7v8z6 .mbr-section-subtitle,
.cid-s31Ho7v8z6 .mbr-section-btn {
  color: #f84db8;
}
.cid-s31Ho7MqoT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2d10a3;
}
.cid-s31Ho7MqoT .mbr-section-title span {
  display: block;
}
.cid-s31Ho7MqoT .first-column,
.cid-s31Ho7MqoT .second-column {
  margin-bottom: 1rem;
}
.cid-s31Ho7MqoT .first-column ul,
.cid-s31Ho7MqoT .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-s31Ho7MqoT .first-column ul li,
.cid-s31Ho7MqoT .second-column ul li {
  margin-bottom: 1rem;
}
.cid-s31Ho7MqoT .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-s31Ho7MqoT .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-s31Ho7MqoT .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-s31Ho7MqoT .card-support {
    text-align: center;
  }
}
.cid-s31Ho7MqoT .mbr-section-title,
.cid-s31Ho7MqoT .card-support {
  color: #ffffff;
}
.cid-s31Ho7MqoT .first-column-item {
  color: #ffffff;
}
.cid-s6pRlEG8L7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s6pRlEG8L7 .nav-item:focus,
.cid-s6pRlEG8L7 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-s6pRlEG8L7 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-s6pRlEG8L7 .nav-item .nav-link {
    position: relative;
  }
  .cid-s6pRlEG8L7 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #f84db8, #ffef00);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-s6pRlEG8L7 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-s6pRlEG8L7 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s6pRlEG8L7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s6pRlEG8L7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s6pRlEG8L7 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-s6pRlEG8L7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-s6pRlEG8L7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s6pRlEG8L7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s6pRlEG8L7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s6pRlEG8L7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s6pRlEG8L7 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f84db8;
}
.cid-s6pRlEG8L7 .navbar.opened {
  transition: all .3s;
  background: #f84db8 !important;
}
.cid-s6pRlEG8L7 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-s6pRlEG8L7 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-s6pRlEG8L7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s6pRlEG8L7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s6pRlEG8L7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-s6pRlEG8L7 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-s6pRlEG8L7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s6pRlEG8L7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s6pRlEG8L7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s6pRlEG8L7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s6pRlEG8L7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s6pRlEG8L7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s6pRlEG8L7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s6pRlEG8L7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s6pRlEG8L7 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-s6pRlEG8L7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s6pRlEG8L7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s6pRlEG8L7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s6pRlEG8L7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s6pRlEG8L7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s6pRlEG8L7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s6pRlEG8L7 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-s6pRlEG8L7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s6pRlEG8L7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s6pRlEG8L7 .navbar.navbar-short {
  background: #f84db8 !important;
  min-height: 60px;
}
.cid-s6pRlEG8L7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s6pRlEG8L7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s6pRlEG8L7 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s6pRlEG8L7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s6pRlEG8L7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s6pRlEG8L7 .dropdown-item.active,
.cid-s6pRlEG8L7 .dropdown-item:active {
  background-color: transparent;
}
.cid-s6pRlEG8L7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s6pRlEG8L7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s6pRlEG8L7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s6pRlEG8L7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f84db8;
}
.cid-s6pRlEG8L7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s6pRlEG8L7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s6pRlEG8L7 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s6pRlEG8L7 .navbar-buttons {
  text-align: center;
}
.cid-s6pRlEG8L7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s6pRlEG8L7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s6pRlEG8L7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s6pRlEG8L7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s6pRlEG8L7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s6pRlEG8L7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s6pRlEG8L7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s6pRlEG8L7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s6pRlEG8L7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s6pRlEG8L7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s6pRlEG8L7 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s6pRlEG8L7 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s6pRlEG8L7 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s6pRlEG8L7 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-s6pRlEG8L7 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s6pRlEG8L7 .navbar {
    height: 77px;
  }
  .cid-s6pRlEG8L7 .navbar.opened {
    height: auto;
  }
  .cid-s6pRlEG8L7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svjLwgIIy0 {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svjLwgIIy0 p {
  color: #767676;
}
.cid-svjLwgIIy0 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-svjLwgIIy0 .row-element,
.cid-svjLwgIIy0 .image-element {
  padding: 0;
}
.cid-svjLwgIIy0 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-svjLwgIIy0 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-svjLwgIIy0 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-svjLwgIIy0 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #f84db8, #ffef00);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-svjLwgIIy0 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-svjLwgIIy0 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-svjLwgIIy0 .text-content {
    padding: 2rem 1rem;
  }
  .cid-svjLwgIIy0 .underline .line {
    height: 2px;
  }
  .cid-svjLwgIIy0 .mbr-title,
  .cid-svjLwgIIy0 .underline,
  .cid-svjLwgIIy0 .mbr-text,
  .cid-svjLwgIIy0 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-svjLwgIIy0 .mbr-title,
.cid-svjLwgIIy0 .underline {
  color: #f84db8;
}
.cid-svjLwgIIy0 .mbr-text,
.cid-svjLwgIIy0 .mbr-section-btn {
  color: #2d10a3;
}
.cid-s6pSvgQWiW {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-s6pSvgQWiW .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s6pSvgQWiW .carousel-control-prev {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.cid-s6pSvgQWiW .carousel-control-next {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.cid-s6pSvgQWiW .carousel-item.active,
.cid-s6pSvgQWiW .carousel-item-next,
.cid-s6pSvgQWiW .carousel-item-prev {
  display: flex;
}
.cid-s6pSvgQWiW .carousel-controls a {
  transition: opacity .5s;
}
.cid-s6pSvgQWiW .carousel-controls a:hover span,
.cid-s6pSvgQWiW .carousel-controls a:focus span {
  opacity: 1;
}
.cid-s6pSvgQWiW .carousel-controls a:hover svg,
.cid-s6pSvgQWiW .carousel-controls a:focus svg {
  transition: all .25s;
  stroke-width: 3;
}
.cid-s6pSvgQWiW .carousel-controls a:active svg {
  transition: all .1s;
  stroke-width: 5;
}
.cid-s6pSvgQWiW .user_image {
  overflow: hidden;
  display: flex;
}
.cid-s6pSvgQWiW .user_image .user_image_inner {
  max-width: 200px;
  max-height: 200px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  margin: 0 auto 3rem auto;
}
.cid-s6pSvgQWiW .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-s6pSvgQWiW .user_text {
  color: #767676;
}
.cid-s6pSvgQWiW .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-s6pSvgQWiW .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #f84db8, #ffef00);
  display: inline-block;
}
.cid-s6pSvgQWiW .testimonials-quote svg {
  height: 30px;
  width: 30px;
}
.cid-s6pSvgQWiW svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-s6pSvgQWiW .user_name {
  color: #5a31fb;
}
.cid-s6pSvgQWiW .carousel-controls svg {
  height: 60px;
}
@media (max-width: 230px) {
  .cid-s6pSvgQWiW .user_image_inner {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 991px) {
  .cid-s6pSvgQWiW .testimonials-quote,
  .cid-s6pSvgQWiW .user_text,
  .cid-s6pSvgQWiW .user_name,
  .cid-s6pSvgQWiW .user_desk {
    text-align: center !important;
  }
  .cid-s6pSvgQWiW .carousel-controls a span {
    top: auto;
    bottom: 0;
  }
}
@media (min-width: 768px) {
  .cid-s6pSvgQWiW .mbr-section-title,
  .cid-s6pSvgQWiW .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1200px) {
  .cid-s6pSvgQWiW .carousel-control-prev span {
    right: -1rem;
  }
  .cid-s6pSvgQWiW .carousel-control-next span {
    left: -1rem;
  }
  .cid-s6pSvgQWiW .user-text {
    padding-right: 2rem;
  }
  .cid-s6pSvgQWiW .carousel-control-prev,
  .cid-s6pSvgQWiW .carousel-control-next {
    -webkit-align-items: center;
    align-items: center;
  }
}
.cid-s6pSvgQWiW .mbr-section-title,
.cid-s6pSvgQWiW .underline {
  color: #f84db8;
}
.cid-s6pRlHCcwQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s6pRlHCcwQ .counter-container {
  color: #767676;
}
.cid-s6pRlHCcwQ .counter-container ul {
  margin-bottom: 0;
}
.cid-s6pRlHCcwQ .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-s6pRlHCcwQ .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #f84db8;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f84db8, #ffef00);
  background: none;
  border: 1px solid #f84db8;
  color: #f84db8;
  content: '✓';
}
.cid-s6pRlIaMNJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s6pRlIaMNJ .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-s6pRlIaMNJ .mbr-section-subtitle,
.cid-s6pRlIaMNJ .mbr-section-btn {
  color: #f84db8;
}
.cid-s6pRlINnff {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2d10a3;
}
.cid-s6pRlINnff .mbr-section-title span {
  display: block;
}
.cid-s6pRlINnff .first-column,
.cid-s6pRlINnff .second-column {
  margin-bottom: 1rem;
}
.cid-s6pRlINnff .first-column ul,
.cid-s6pRlINnff .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-s6pRlINnff .first-column ul li,
.cid-s6pRlINnff .second-column ul li {
  margin-bottom: 1rem;
}
.cid-s6pRlINnff .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-s6pRlINnff .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-s6pRlINnff .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-s6pRlINnff .card-support {
    text-align: center;
  }
}
.cid-s6pRlINnff .mbr-section-title,
.cid-s6pRlINnff .card-support {
  color: #ffffff;
}
.cid-s6pRlINnff .first-column-item {
  color: #ffffff;
}
.cid-sboF9EULLn .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sboF9EULLn .nav-item:focus,
.cid-sboF9EULLn .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sboF9EULLn .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sboF9EULLn .nav-item .nav-link {
    position: relative;
  }
  .cid-sboF9EULLn .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #f84db8, #ffef00);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-sboF9EULLn .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-sboF9EULLn .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sboF9EULLn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sboF9EULLn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sboF9EULLn .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-sboF9EULLn .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sboF9EULLn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sboF9EULLn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sboF9EULLn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sboF9EULLn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sboF9EULLn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f84db8;
}
.cid-sboF9EULLn .navbar.opened {
  transition: all .3s;
  background: #f84db8 !important;
}
.cid-sboF9EULLn .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sboF9EULLn .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sboF9EULLn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sboF9EULLn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sboF9EULLn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sboF9EULLn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sboF9EULLn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sboF9EULLn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sboF9EULLn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sboF9EULLn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sboF9EULLn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sboF9EULLn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sboF9EULLn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sboF9EULLn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sboF9EULLn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sboF9EULLn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sboF9EULLn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sboF9EULLn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sboF9EULLn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sboF9EULLn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sboF9EULLn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sboF9EULLn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sboF9EULLn .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sboF9EULLn .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sboF9EULLn .navbar.navbar-short {
  background: #f84db8 !important;
  min-height: 60px;
}
.cid-sboF9EULLn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sboF9EULLn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sboF9EULLn .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sboF9EULLn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sboF9EULLn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sboF9EULLn .dropdown-item.active,
.cid-sboF9EULLn .dropdown-item:active {
  background-color: transparent;
}
.cid-sboF9EULLn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sboF9EULLn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sboF9EULLn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sboF9EULLn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f84db8;
}
.cid-sboF9EULLn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sboF9EULLn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sboF9EULLn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sboF9EULLn .navbar-buttons {
  text-align: center;
}
.cid-sboF9EULLn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sboF9EULLn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sboF9EULLn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sboF9EULLn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sboF9EULLn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sboF9EULLn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sboF9EULLn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sboF9EULLn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sboF9EULLn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sboF9EULLn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sboF9EULLn .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sboF9EULLn a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sboF9EULLn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sboF9EULLn .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sboF9EULLn .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sboF9EULLn .navbar {
    height: 77px;
  }
  .cid-sboF9EULLn .navbar.opened {
    height: auto;
  }
  .cid-sboF9EULLn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svjKB5wZLI {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-svjKB5wZLI .container-fluid {
  padding: 0 3rem;
}
.cid-svjKB5wZLI .media-container-column {
  padding: 0 2rem;
}
.cid-svjKB5wZLI .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #2d10a3;
}
@media (max-width: 767px) {
  .cid-svjKB5wZLI .container-fluid {
    padding: 0 1rem;
  }
}
.cid-svjKB5wZLI .mbr-section-subtitle {
  color: #f84db8;
}
.cid-svjJDqxvRK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f84db8;
}
.cid-svjJDqxvRK .container-fluid {
  padding: 0 3rem;
}
.cid-svjJDqxvRK .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #f84db8, #ffef00);
  display: inline-block;
}
.cid-svjJDqxvRK .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-svjJDqxvRK .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-svjJDqxvRK .card .card-wrapper {
  height: 1%;
}
.cid-svjJDqxvRK .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-svjJDqxvRK .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-svjJDqxvRK .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #f84db8;
}
.cid-svjJDqxvRK .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-svjJDqxvRK .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-svjJDqxvRK .container-fluid {
    padding: 0 1rem;
  }
}
.cid-svjJDqxvRK .mbr-section-title,
.cid-svjJDqxvRK .underline {
  color: #ffffff;
  text-align: center;
}
.cid-svjJDqxvRK .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-sboF9HDvPT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2d10a3;
}
.cid-sboF9HDvPT .mbr-section-title span {
  display: block;
}
.cid-sboF9HDvPT .first-column,
.cid-sboF9HDvPT .second-column {
  margin-bottom: 1rem;
}
.cid-sboF9HDvPT .first-column ul,
.cid-sboF9HDvPT .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-sboF9HDvPT .first-column ul li,
.cid-sboF9HDvPT .second-column ul li {
  margin-bottom: 1rem;
}
.cid-sboF9HDvPT .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-sboF9HDvPT .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-sboF9HDvPT .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-sboF9HDvPT .card-support {
    text-align: center;
  }
}
.cid-sboF9HDvPT .mbr-section-title,
.cid-sboF9HDvPT .card-support {
  color: #ffffff;
}
.cid-sboF9HDvPT .first-column-item {
  color: #ffffff;
}
