@charset "UTF-8";

:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  -webkit-animation: f-spinner-rotate 2s linear infinite;
  animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  -webkit-animation: f-spinner-dash 2s ease-in-out infinite;
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@-webkit-keyframes f-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes f-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

.f-zoomInUp {
  -webkit-animation: 0.2s ease-out 0.1s both f-zoomInUp;
  animation: 0.2s ease-out 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  -webkit-animation: 0.2s ease-out both f-zoomOutDown;
  animation: 0.2s ease-out both f-zoomOutDown;
}

@-webkit-keyframes f-zoomInUp {
  from {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-zoomInUp {
  from {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes f-zoomOutDown {
  to {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}

@keyframes f-zoomOutDown {
  to {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}

.f-throwOutUp {
  -webkit-animation: 0.175s ease-out both f-throwOutUp;
  animation: 0.175s ease-out both f-throwOutUp;
}

.f-throwOutDown {
  -webkit-animation: 0.175s ease-out both f-throwOutDown;
  animation: 0.175s ease-out both f-throwOutDown;
}

@-webkit-keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -150px, 0);
    transform: translate3d(0, -150px, 0);
    opacity: 0;
  }
}

@keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -150px, 0);
    transform: translate3d(0, -150px, 0);
    opacity: 0;
  }
}

@-webkit-keyframes f-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 150px, 0);
    transform: translate3d(0, 150px, 0);
    opacity: 0;
  }
}

@keyframes f-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 150px, 0);
    transform: translate3d(0, 150px, 0);
    opacity: 0;
  }
}

.f-fadeIn {
  -webkit-animation: 0.2s ease both f-fadeIn;
  animation: 0.2s ease both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  -webkit-animation: 0.2s ease both f-fadeOut;
  animation: 0.2s ease both f-fadeOut;
  z-index: 1;
}

@-webkit-keyframes f-fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}

.f-fadeSlowIn {
  -webkit-animation: 0.5s ease both f-fadeSlowIn;
  animation: 0.5s ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  -webkit-animation: 0.5s ease both f-fadeSlowOut;
  animation: 0.5s ease both f-fadeSlowOut;
  z-index: 1;
}

@-webkit-keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}

.f-fadeFastIn {
  -webkit-animation: 0.2s ease-out both f-fadeFastIn;
  animation: 0.2s ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  -webkit-animation: 0.2s ease-out both f-fadeFastOut;
  animation: 0.2s ease-out both f-fadeFastOut;
  z-index: 2;
}

@-webkit-keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}

.f-crossfadeIn {
  -webkit-animation: 0.2s ease-out both f-crossfadeIn;
  animation: 0.2s ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  -webkit-animation: 0.1s linear 0.1s both f-crossfadeOut;
  animation: 0.1s linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

@-webkit-keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}

.f-slideIn.from-next {
  -webkit-animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  -webkit-animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  -webkit-animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  -webkit-animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@-webkit-keyframes f-slideInPrev {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes f-slideInPrev {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.f-classicIn.from-next {
  -webkit-animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  -webkit-animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  -webkit-animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  -webkit-animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@-webkit-keyframes f-classicInNext {
  0% {
    -webkit-transform: translateX(-75px);
    transform: translateX(-75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-classicInNext {
  0% {
    -webkit-transform: translateX(-75px);
    transform: translateX(-75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes f-classicInPrev {
  0% {
    -webkit-transform: translateX(75px);
    transform: translateX(75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-classicInPrev {
  0% {
    -webkit-transform: translateX(75px);
    transform: translateX(75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes f-classicOutNext {
  100% {
    -webkit-transform: translateX(-75px);
    transform: translateX(-75px);
    opacity: 0;
  }
}

@keyframes f-classicOutNext {
  100% {
    -webkit-transform: translateX(-75px);
    transform: translateX(-75px);
    opacity: 0;
  }
}

@-webkit-keyframes f-classicOutPrev {
  100% {
    -webkit-transform: translateX(75px);
    transform: translateX(75px);
    opacity: 0;
  }
}

@keyframes f-classicOutPrev {
  100% {
    -webkit-transform: translateX(75px);
    transform: translateX(75px);
    opacity: 0;
  }
}

:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65;
}

.f-button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  transition: var(--f-button-transition);
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}

.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
  outline: none;
}

.f-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.15s ease;
  -webkit-transform: var(--f-button-transform);
  transform: var(--f-button-transform);
  -webkit-filter: var(--f-button-svg-filter);
  filter: var(--f-button-svg-filter);
  pointer-events: none;
}

.f-button[disabled] {
  cursor: default;
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}

html.with-fancybox body {
  -ms-touch-action: none;
  touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: 1050;
  outline: none;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

.fancybox__container *,
.fancybox__container *::before,
.fancybox__container *::after {
  box-sizing: inherit;
}

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  box-sizing: border-box;
  -ms-flex: 1;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

.fancybox__track {
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video {
  overflow: hidden;
}

.fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide::before,
.fancybox__slide::after {
  content: "";
  -ms-flex: 0 0 0px;
  flex: 0 0 0;
  margin: auto;
}

.fancybox__content {
  -ms-flex-item-align: center;
  align-self: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__content [data-selectable],
.fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content,
.is-zooming-out .fancybox__slide:not(.is-selected) .fancybox__content {
  visibility: hidden;
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
  -webkit-filter: blur(0px);
  filter: blur(0px);
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox__caption {
  -ms-flex-item-align: center;
  align-self: center;
  max-width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}

.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px;
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
}

.is-idle .fancybox__nav {
  -webkit-animation: 0.15s ease-out both f-fadeOut;
  animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  -webkit-animation: 0.15s ease-out both f-fadeOut;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 40;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  -webkit-animation: 0.25s ease 0.1s backwards f-fadeIn;
  animation: 0.25s ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  -webkit-animation: 0.35s ease backwards f-fadeIn;
  animation: 0.35s ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  -webkit-animation: 0.15s ease forwards f-fadeOut;
  animation: 0.15s ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  -webkit-animation: 0.35s ease forwards f-fadeOut;
  animation: 0.35s ease forwards f-fadeOut;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  max-width: 100%;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.fancybox__container:not(.is-compact) .has-iframe .fancybox__content,
.fancybox__container:not(.is-compact) .has-map .fancybox__content,
.fancybox__container:not(.is-compact) .has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 20px;
  --f-thumb-clip-width: 46px;
}

.f-thumbs {
  position: relative;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}

.f-thumbs .f-spinner svg {
  display: none;
}

.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.f-thumbs__track {
  display: -ms-flexbox;
  display: flex;
  will-change: transform;
}

.f-thumbs__slide {
  position: relative;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  min-width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--left, 0) * 1px);
  width: calc(100% - var(--width, 0) * 1px);
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  --clip-path: inset( 0 calc( (var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0)) * 0.5 * (1 - var(--progress, 0)) ) round var(--f-thumb-border-radius, 0) );
  -webkit-transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}

.is-modern .f-thumbs__slide:focus-within:not(.is-selected) {
  -webkit-filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
  filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.is-modern .f-thumbs__slide > * {
  -webkit-clip-path: var(--clip-path);
  clip-path: var(--clip-path);
}

.is-modern.in-touch .f-thumbs__slide {
  -webkit-filter: none;
  filter: none;
}

.is-modern.is-resting .f-thumbs__slide {
  transition: all 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide > * {
  transition: all 0.33s ease;
}

.f-thumbs__slide__button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  -webkit-animation: f-fadeIn 0.2s ease-out;
  animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  -o-object-fit: cover;
  object-fit: cover;
}

.f-thumbs.is-horizontal .f-thumbs__track {
  margin: 0 auto;
  padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: auto 0;
  padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 20px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px;
}

.fancybox__thumbs.is-hidden {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  -webkit-animation: 0.15s ease-out both f-fadeOut;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox__infobar span {
  padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: -ms-flexbox;
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: -ms-flexbox;
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: -ms-flexbox;
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:-moz-full-screen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:-ms-fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}

:-moz-full-screen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}

:-ms-fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -ms-flexbox;
  display: flex;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -ms-flexbox;
  display: flex;
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0;
  transform-origin: 0;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-slide:focus {
  outline: none;
}

body.no-scroll {
  overflow: hidden;
}

.nmp-last-el h1:last-child,
.nmp-last-el h2:last-child,
.nmp-last-el h3:last-child,
.nmp-last-el h4:last-child,
.nmp-last-el h5:last-child,
.nmp-last-el h6:last-child,
.nmp-last-el ul:last-child,
.nmp-last-el ol:last-child,
.nmp-last-el p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.has-row-gap {
  row-gap: 30px;
}

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #3F1046;
  --pink: #FC5088;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #FFF;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1178px;
  --font-family-sans-serif: Montserrat, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: Montserrat, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #212529;
  text-align: left;
  background-color: #FFF;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: rgb(0, 86.1, 178.5);
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 19px;
  padding-left: 19px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -19px;
  margin-left: -19px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto,
.col-xl-12,
.col-xl-11,
.col-xl-10,
.col-xl-9,
.col-xl-8,
.col-xl-7,
.col-xl-6,
.col-xl-5,
.col-xl-4,
.col-xl-3,
.col-xl-2,
.col-xl-1,
.col-lg,
.col-lg-auto,
.col-lg-12,
.col-lg-11,
.col-lg-10,
.col-lg-9,
.col-lg-8,
.col-lg-7,
.col-lg-6,
.col-lg-5,
.col-lg-4,
.col-lg-3,
.col-lg-2,
.col-lg-1,
.col-md,
.col-md-auto,
.col-md-12,
.col-md-11,
.col-md-10,
.col-md-9,
.col-md-8,
.col-md-7,
.col-md-6,
.col-md-5,
.col-md-4,
.col-md-3,
.col-md-2,
.col-md-1,
.col-sm,
.col-sm-auto,
.col-sm-12,
.col-sm-11,
.col-sm-10,
.col-sm-9,
.col-sm-8,
.col-sm-7,
.col-sm-6,
.col-sm-5,
.col-sm-4,
.col-sm-3,
.col-sm-2,
.col-sm-1,
.col,
.col-auto,
.col-12,
.col-11,
.col-10,
.col-9,
.col-8,
.col-7,
.col-6,
.col-5,
.col-4,
.col-3,
.col-2,
.col-1 {
  position: relative;
  width: 100%;
  padding-right: 19px;
  padding-left: 19px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  -ms-flex: 0 0 33.3333333333%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  -ms-flex: 0 0 16.6666666667%;
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -ms-flex: 0 0 8.33333333%;
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  -ms-flex: 0 0 16.66666667%;
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.33333333%;
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  -ms-flex: 0 0 41.66666667%;
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.33333333%;
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  -ms-flex: 0 0 66.66666667%;
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.33333333%;
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  -ms-flex: 0 0 91.66666667%;
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background-color: transparent;
  border: 1px solid transparent;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #FFF;
  border-color: #dee2e6 #dee2e6 #FFF;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #FFF;
  background-color: #007bff;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar .container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50%/100% 100% no-repeat;
}

.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 1177.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

.navbar-expand {
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  -ms-flex-direction: row;
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #FFF;
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
  color: #FFF;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #FFF;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #FFF;
}

.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #FFF;
}

.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.collapsing.width {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing.width {
    transition: none;
  }
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: rgb(0, 98.4, 204) !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785) !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: rgb(30.1449275362, 125.8550724638, 52) !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667) !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: rgb(211, 158.25, 0) !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987) !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: rgb(218.25, 223.5, 228.75) !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: rgb(29.1379310345, 32.5, 35.8620689655) !important;
}

.bg-white {
  background-color: #FFF !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #FFF !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  -ms-user-select: all !important;
  user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #FFF !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover,
a.text-primary:focus {
  color: rgb(0, 86.1, 178.5) !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
  color: rgb(72.5407725322, 78.5858369099, 83.9592274678) !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover,
a.text-success:focus {
  color: rgb(25.2173913043, 105.2826086957, 43.5) !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover,
a.text-info:focus {
  color: rgb(14.5, 102.1304347826, 116) !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover,
a.text-warning:focus {
  color: rgb(185.5, 139.125, 0) !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover,
a.text-danger:focus {
  color: rgb(167.4810126582, 29.0189873418, 42.2848101266) !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover,
a.text-light:focus {
  color: rgb(203.375, 210.75, 218.125) !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover,
a.text-dark:focus {
  color: rgb(17.7068965517, 19.75, 21.7931034483) !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 2rem;
}

h2,
.h2 {
  font-size: 1.8rem;
}

h3,
.h3 {
  font-size: 1.6rem;
}

h4,
.h4 {
  font-size: 1.4rem;
}

h5,
.h5 {
  font-size: 1.2rem;
}

h6,
.h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 0.875em;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 0.875em;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "— ";
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.6em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #495057;
  background-color: #FFF;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #FFF;
  border-color: rgb(127.5, 189, 255);
  outline: 0;
  box-shadow: 0;
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #FFF;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.6;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

select.form-control[size],
select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #FFF;
  background-color: rgba(40, 167, 69, 0.9);
}

.form-row > .col > .valid-tooltip,
.form-row > [class*=col-] > .valid-tooltip {
  left: 5px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid,
.form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.6em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.4em + 0.1875rem) center;
  background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}

.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated select.form-control:valid,
select.form-control.is-valid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
  padding-right: calc(1.6em + 0.75rem);
  background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
}

.was-validated .custom-select:valid,
.custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #FFF url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem) no-repeat;
}

.was-validated .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip,
.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label,
.custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before,
.custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: rgb(51.6956521739, 206.3043478261, 87);
  background-color: rgb(51.6956521739, 206.3043478261, 87);
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
.custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label,
.custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label,
.custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #FFF;
  background-color: rgba(220, 53, 69, 0.9);
}

.form-row > .col > .invalid-tooltip,
.form-row > [class*=col-] > .invalid-tooltip {
  left: 5px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.6em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.4em + 0.1875rem) center;
  background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated select.form-control:invalid,
select.form-control.is-invalid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  padding-right: calc(1.6em + 0.75rem);
  background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
}

.was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #FFF url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem) no-repeat;
}

.was-validated .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip,
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label,
.custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before,
.custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: rgb(227.5316455696, 96.4683544304, 109.0253164557);
  background-color: rgb(227.5316455696, 96.4683544304, 109.0253164557);
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label,
.custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
.custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-align: center;
  align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

.btn,
body .gform_wrapper.gravity-theme .gform_button_select_files {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  body .gform_wrapper.gravity-theme .gform_button_select_files {
    transition: none;
  }
}

.btn:hover,
body .gform_wrapper.gravity-theme .gform_button_select_files:hover {
  color: #212529;
  text-decoration: none;
}

.btn:focus,
body .gform_wrapper.gravity-theme .gform_button_select_files:focus,
.btn.focus,
body .gform_wrapper.gravity-theme .focus.gform_button_select_files {
  outline: 0;
  box-shadow: 0;
}

.btn.disabled,
body .gform_wrapper.gravity-theme .disabled.gform_button_select_files,
.btn:disabled,
body .gform_wrapper.gravity-theme .gform_button_select_files:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled),
body .gform_wrapper.gravity-theme .gform_button_select_files:not(:disabled):not(.disabled) {
  cursor: pointer;
}

a.btn.disabled,
body .gform_wrapper.gravity-theme a.disabled.gform_button_select_files,
fieldset:disabled a.btn,
fieldset:disabled body .gform_wrapper.gravity-theme a.gform_button_select_files,
body .gform_wrapper.gravity-theme fieldset:disabled a.gform_button_select_files {
  pointer-events: none;
}

.btn-primary {
  color: #FFF;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  color: #FFF;
  background-color: rgb(0, 104.55, 216.75);
  border-color: rgb(0, 98.4, 204);
}

.btn-primary:focus,
.btn-primary.focus {
  color: #FFF;
  background-color: rgb(0, 104.55, 216.75);
  border-color: rgb(0, 98.4, 204);
  box-shadow: 0 0 0 0 rgba(38.25, 142.8, 255, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #FFF;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #FFF;
  background-color: rgb(0, 98.4, 204);
  border-color: rgb(0, 92.25, 191.25);
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(38.25, 142.8, 255, 0.5);
}

.btn-secondary {
  color: #FFF;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  color: #FFF;
  background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
  border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
}

.btn-secondary:focus,
.btn-secondary.focus {
  color: #FFF;
  background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
  border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  box-shadow: 0 0 0 0 rgba(130.05, 137.7, 144.5, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #FFF;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #FFF;
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  border-color: rgb(78.4506437768, 84.9881974249, 90.7993562232);
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(130.05, 137.7, 144.5, 0.5);
}

.btn-success {
  color: #FFF;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  color: #FFF;
  background-color: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
}

.btn-success:focus,
.btn-success.focus {
  color: #FFF;
  background-color: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
  box-shadow: 0 0 0 0 rgba(72.25, 180.2, 96.9, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #FFF;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #FFF;
  background-color: rgb(30.1449275362, 125.8550724638, 52);
  border-color: rgb(27.6811594203, 115.5688405797, 47.75);
}

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(72.25, 180.2, 96.9, 0.5);
}

.btn-info {
  color: #FFF;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #FFF;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}

.btn-info:focus,
.btn-info.focus {
  color: #FFF;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  box-shadow: 0 0 0 0 rgba(57.8, 175.95, 194.65, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #FFF;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #FFF;
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  border-color: rgb(15.9166666667, 112.1086956522, 127.3333333333);
}

.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(57.8, 175.95, 194.65, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #212529;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
}

.btn-warning:focus,
.btn-warning.focus {
  color: #212529;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
  box-shadow: 0 0 0 0 rgba(221.7, 169.6, 12.1, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: rgb(211, 158.25, 0);
  border-color: rgb(198.25, 148.6875, 0);
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(221.7, 169.6, 12.1, 0.5);
}

.btn-danger {
  color: #FFF;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  color: #FFF;
  background-color: rgb(200.082278481, 34.667721519, 50.5158227848);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}

.btn-danger:focus,
.btn-danger.focus {
  color: #FFF;
  background-color: rgb(200.082278481, 34.667721519, 50.5158227848);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  box-shadow: 0 0 0 0 rgba(225.25, 83.3, 96.9, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #FFF;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #FFF;
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  border-color: rgb(178.3481012658, 30.9018987342, 45.0284810127);
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(225.25, 83.3, 96.9, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #212529;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
}

.btn-light:focus,
.btn-light.focus {
  color: #212529;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
  box-shadow: 0 0 0 0 rgba(215.75, 217.2, 218.65, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: rgb(218.25, 223.5, 228.75);
  border-color: rgb(210.8125, 217.125, 223.4375);
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(215.75, 217.2, 218.65, 0.5);
}

.btn-dark {
  color: #FFF;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #FFF;
  background-color: rgb(34.8534482759, 38.875, 42.8965517241);
  border-color: rgb(29.1379310345, 32.5, 35.8620689655);
}

.btn-dark:focus,
.btn-dark.focus {
  color: #FFF;
  background-color: rgb(34.8534482759, 38.875, 42.8965517241);
  border-color: rgb(29.1379310345, 32.5, 35.8620689655);
  box-shadow: 0 0 0 0 rgba(82.45, 87.55, 92.65, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #FFF;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #FFF;
  background-color: rgb(29.1379310345, 32.5, 35.8620689655);
  border-color: rgb(23.4224137931, 26.125, 28.8275862069);
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(82.45, 87.55, 92.65, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:hover {
  color: #FFF;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #FFF;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #FFF;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #FFF;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:hover {
  color: #FFF;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
  box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #FFF;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #FFF;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
  box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #FFF;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
  box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  color: #FFF;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
  box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #FFF;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:focus,
.btn-outline-light.focus {
  box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #FFF;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
  box-shadow: 0 0 0 0 rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #FFF;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
}

.btn-link:hover {
  color: rgb(0, 86.1, 178.5);
  text-decoration: underline;
}

.btn-link:focus,
.btn-link.focus {
  text-decoration: underline;
}

.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.media-body {
  -ms-flex: 1;
  flex: 1;
}

.list-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item.disabled,
.list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #FFF;
}

.list-group-item.active {
  z-index: 2;
  color: #FFF;
  background-color: #007bff;
  border-color: #007bff;
}

.list-group-item + .list-group-item {
  border-top-width: 0;
}

.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  -ms-flex-direction: row;
  flex-direction: row;
}

.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}

.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: rgb(0, 63.96, 132.6);
  background-color: rgb(183.6, 218.04, 255);
}

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
  color: rgb(0, 63.96, 132.6);
  background-color: rgb(158.1, 204.84, 255);
}

.list-group-item-primary.list-group-item-action.active {
  color: #FFF;
  background-color: rgb(0, 63.96, 132.6);
  border-color: rgb(0, 63.96, 132.6);
}

.list-group-item-secondary {
  color: rgb(56.16, 60.84, 65);
  background-color: rgb(213.84, 216.36, 218.6);
}

.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
  color: rgb(56.16, 60.84, 65);
  background-color: rgb(200.3075090253, 203.6560288809, 206.6324909747);
}

.list-group-item-secondary.list-group-item-action.active {
  color: #FFF;
  background-color: rgb(56.16, 60.84, 65);
  border-color: rgb(56.16, 60.84, 65);
}

.list-group-item-success {
  color: rgb(20.8, 86.84, 35.88);
  background-color: rgb(194.8, 230.36, 202.92);
}

.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
  color: rgb(20.8, 86.84, 35.88);
  background-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}

.list-group-item-success.list-group-item-action.active {
  color: #FFF;
  background-color: rgb(20.8, 86.84, 35.88);
  border-color: rgb(20.8, 86.84, 35.88);
}

.list-group-item-info {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(190.04, 228.96, 235.12);
}

.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}

.list-group-item-info.list-group-item-action.active {
  color: #FFF;
  background-color: rgb(11.96, 84.24, 95.68);
  border-color: rgb(11.96, 84.24, 95.68);
}

.list-group-item-warning {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 237.64, 185.56);
}

.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 231.265, 160.06);
}

.list-group-item-warning.list-group-item-action.active {
  color: #FFF;
  background-color: rgb(132.6, 100.36, 3.64);
  border-color: rgb(132.6, 100.36, 3.64);
}

.list-group-item-danger {
  color: rgb(114.4, 27.56, 35.88);
  background-color: rgb(245.2, 198.44, 202.92);
}

.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
  color: rgb(114.4, 27.56, 35.88);
  background-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
}

.list-group-item-danger.list-group-item-action.active {
  color: #FFF;
  background-color: rgb(114.4, 27.56, 35.88);
  border-color: rgb(114.4, 27.56, 35.88);
}

.list-group-item-light {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(253.04, 253.32, 253.6);
}

.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(238.165, 240.57, 242.975);
}

.list-group-item-light.list-group-item-action.active {
  color: #FFF;
  background-color: rgb(128.96, 129.48, 130);
  border-color: rgb(128.96, 129.48, 130);
}

.list-group-item-dark {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(198.16, 199.84, 201.52);
}

.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}

.list-group-item-dark.list-group-item-action.active {
  color: #FFF;
  background-color: rgb(27.04, 30.16, 33.28);
  border-color: rgb(27.04, 30.16, 33.28);
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #FFF;
  opacity: 0.5;
}

.close:hover {
  color: #000;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

@page {
    size: a3;
}

  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td,
  .table th {
    background-color: #FFF !important;
  }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }

  .table-dark {
    color: inherit;
  }

  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

@media (max-width: 767.98px) {
  .admin-bar #wpadminbar {
    position: fixed;
  }
}

html {
  color: #636b6f;
  font-size: 14px;
  height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  position: relative;
}

/**
Disable W3C & Bootstrap standard styles for the abbr tag
 */

abbr[title].required {
  border-bottom: none;
  text-decoration: none;
}

.monofont {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

#site-header.has-fixed-top-navbar {
  padding-top: 85px;
}

@media screen and (max-width: 1177.98px) and (max-width: 782px) {
  body.admin-bar #site-header nav.navbar.fixed-top {
    top: 46px !important;
  }
}

#site-footer {
  background: #f4f5f7;
}

#site-footer #wc-footer-main {
  padding: 65px 15px 80px;
}

#site-footer .wc-footer-image {
  margin-bottom: 20px;
}

#site-footer .footer-menu {
  margin-bottom: 20px;
}

#site-footer .footer-menu-title {
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

#site-footer .footer-menu a {
  display: block;
  color: #212529;
  line-height: 1.7;
}

#site-footer .footer-menu a:hover {
  text-decoration: none;
  color: rgb(225.3581081081, 228.25, 231.1418918919);
}

#site-footer .location {
  margin-bottom: 10px;
}

#site-footer .location .footer-location-title {
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

#site-footer .location .location-line-1,
#site-footer .location .location-line-2,
#site-footer .location a {
  display: block;
}

#site-footer .location a {
  color: #212529;
}

#site-footer .location a:hover {
  text-decoration: none;
  color: rgb(225.3581081081, 228.25, 231.1418918919);
}

#site-footer .opening-hours {
  margin-bottom: 20px;
}

#site-footer .opening-hours-title {
  font-weight: 600;
  margin-bottom: 10px;
}

#site-footer .opening-hours span {
  display: block;
}

#site-footer .wc-footer-social {
  margin-bottom: 20px;
}

#site-footer .wc-footer-social span {
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

#site-footer .wc-footer-social a {
  margin: 0 15px 0 0;
  font-size: 1.4rem;
  color: #212529;
}

#site-footer .wc-footer-social a:hover {
  text-decoration: none;
  color: rgb(225.3581081081, 228.25, 231.1418918919);
}

#wc-bottom-bar {
  padding: 20px 0;
  background: #FFF;
}

@media (max-width: 575.98px) {
  #wc-bottom-bar .wc-footer-copyright {
    display: block;
    margin-bottom: 1rem;
    text-align: center;
  }
}

#wc-bottom-bar .bottom-bar-menu {
  width: 100%;
  text-align: center;
}

#wc-bottom-bar .bottom-bar-menu a {
  color: #212529;
  margin: 10px;
  font-size: 1rem;
}

#wc-bottom-bar .bottom-bar-menu a:hover {
  color: rgb(225.3581081081, 228.25, 231.1418918919);
  text-decoration: none;
}

html {
  overflow-x: initial;
  width: auto;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

.main.default-page .sections-holder section:first-of-type {
  padding: 200px 0 150px 0;
}

@media (max-width: 1180px) {
  .main.default-page .sections-holder section:first-of-type {
    padding: 150px 0;
  }
}

body:has(.main-header.header-disabled) .main.default-page .sections-holder section:first-of-type {
  padding: 100px 0 150px 0;
}

@media (max-width: 767px) {
  body:has(.main-header.header-disabled) .main.default-page .sections-holder section:first-of-type {
    padding: 50px 0 100px 0;
  }
}

body:has(.main-header.header-disabled) .header-section-content .section-inner {
  padding: 60px 0;
}

* {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span {
  font-family: "Ubuntu", sans-serif;
}

h1 {
  margin: 0;
  font-family: "Ubuntu", sans-serif;
  font-size: 64px;
  font-weight: 500;
  color: #3F1046;
}

h2 {
  margin: 0;
  font-family: "Ubuntu", sans-serif;
  font-size: 45px;
  font-weight: 500;
  color: #3F1046;
}

h3 {
  margin: 0;
  font-family: "Ubuntu", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #3F1046;
}

h4 {
  margin: 0;
  font-family: "Ubuntu", sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #3F1046;
}

p,
li {
  font-size: 16px;
  color: #464646;
}

p a,
li a {
  color: #FC5088;
}

p a:hover,
li a:hover {
  color: #FC5088;
}

.svg-arrow-down {
  background: url("sprites.svg") no-repeat;
  background-position: 0 0;
}

.svg-arrow-down-dims {
  width: 10px;
  height: 5px;
}

.svg-arrow-left {
  background: url("sprites.svg") no-repeat;
  background-position: 0.0706314451% 0.0459221161%;
}

.svg-arrow-left-dims {
  width: 17px;
  height: 13px;
}

.svg-arrow-right {
  background: url("sprites.svg") no-repeat;
  background-position: 0.1906779661% 0.1653196179%;
}

.svg-arrow-right-dims {
  width: 15px;
  height: 13px;
}

.svg-arrow-right-pink {
  background: url("sprites.svg") no-repeat;
  background-position: 0.2966101695% 0.2847171198%;
}

.svg-arrow-right-pink-dims {
  width: 15px;
  height: 13px;
}

.svg-border-bottom-pink {
  background: url("sprites.svg") no-repeat;
  background-position: 0.4381581982% 0.4037808571%;
}

.svg-border-bottom-pink-dims {
  width: 1166px;
  height: 4px;
}

.svg-calendar-icon {
  background: url("sprites.svg") no-repeat;
  background-position: 8.6363957348% 0.4409738172%;
}

.svg-calendar-icon-dims {
  width: 14px;
  height: 16px;
}

.svg-chevron-left {
  background: url("sprites.svg") no-repeat;
  background-position: 8.7321756318% 0.5878570772%;
}

.svg-chevron-left-dims {
  width: 9px;
  height: 14px;
}

.svg-chevron-right {
  background: url("sprites.svg") no-repeat;
  background-position: 8.7950871744% 0.7163192212%;
}

.svg-chevron-right-dims {
  width: 8px;
  height: 12px;
}

.svg-chevron-up {
  background: url("sprites.svg") no-repeat;
  background-position: 8.8521812791% 0.8259911894%;
}

.svg-chevron-up-dims {
  width: 9px;
  height: 5px;
}

.svg-content-elipse {
  background: url("sprites.svg") no-repeat;
  background-position: 9.9629249823% 0.9952854898%;
}

.svg-content-elipse-dims {
  width: 1498px;
  height: 1356px;
}

.svg-dark-tick {
  background: url("sprites.svg") no-repeat;
  background-position: 19.4985875706% 13.3253742309%;
}

.svg-dark-tick-dims {
  width: 15px;
  height: 12px;
}

.svg-eclipse {
  background: url("sprites.svg") no-repeat;
  background-position: 20.1363702307% 13.8975966562%;
}

.svg-eclipse-dims {
  width: 389px;
  height: 374px;
}

.svg-facebook {
  background: url("sprites.svg") no-repeat;
  background-position: 22.3406981168% 16.8748696722%;
}

.svg-facebook-dims {
  width: 8.03px;
  height: 14.99px;
}

.svg-footer-elipse-big {
  background: url("sprites.svg") no-repeat;
  background-position: 23.3554083885% 17.7479635841%;
}

.svg-footer-elipse-big-dims {
  width: 585px;
  height: 466px;
}

.svg-footer-elipse-mask {
  background: url("sprites.svg") no-repeat;
  background-position: 28.7715269805% 22.2137038812%;
}

.svg-footer-elipse-mask-dims {
  width: 1110px;
  height: 466px;
}

.svg-footer-elipse-small {
  background: url("sprites.svg") no-repeat;
  background-position: 34.8532569792% 26.1432998404%;
}

.svg-footer-elipse-small-dims {
  width: 205px;
  height: 252px;
}

.svg-footer-logo {
  background: url("sprites.svg") no-repeat;
  background-position: 36.3050944476% 27.9841460042%;
}

.svg-footer-logo-dims {
  width: 199px;
  height: 52px;
}

.svg-header-elipse-left {
  background: url("sprites.svg") no-repeat;
  background-position: 41.3698415189% 31.2962399919%;
}

.svg-header-elipse-left-dims {
  width: 1429px;
  height: 1034px;
}

.svg-header-elipse-mask {
  background: url("sprites.svg") no-repeat;
  background-position: 53.296222664% 42.59584582%;
}

.svg-header-elipse-mask-dims {
  width: 1600px;
  height: 1224px;
}

.svg-header-elipse-middle {
  background: url("sprites.svg") no-repeat;
  background-position: 62.2385486168% 53.826016915%;
}

.svg-header-elipse-middle-dims {
  width: 836px;
  height: 969px;
}

.svg-header-elipse-right {
  background: url("sprites.svg") no-repeat;
  background-position: 66.0212412398% 60.534892638%;
}

.svg-header-elipse-right-dims {
  width: 334px;
  height: 469px;
}

.svg-headphones {
  background: url("sprites.svg") no-repeat;
  background-position: 66.8832085864% 62.2956841139%;
}

.svg-headphones-dims {
  width: 13px;
  height: 11px;
}

.svg-icon-arrow-down {
  background: url("sprites.svg") no-repeat;
  background-position: 66.9750035306% 62.4253559945%;
}

.svg-icon-arrow-down-dims {
  width: 13px;
  height: 16px;
}

.svg-icon-arrow-left {
  background: url("sprites.svg") no-repeat;
  background-position: 67.1236749117% 62.5493617412%;
}

.svg-icon-arrow-left-dims {
  width: 25px;
  height: 12px;
}

.svg-icon-check-green {
  background: url("sprites.svg") no-repeat;
  background-position: 67.2290857748% 62.6365555862%;
}

.svg-icon-check-green-dims {
  width: 10px;
  height: 8px;
}

.svg-icon-chevron-down-pink {
  background: url("sprites.svg") no-repeat;
  background-position: 67.3234463277% 62.7099972459%;
}

.svg-icon-chevron-down-pink-dims {
  width: 15px;
  height: 8px;
}

.svg-icon-close-red {
  background: url("sprites.svg") no-repeat;
  background-position: 67.4246169056% 62.8180398641%;
}

.svg-icon-close-red-dims {
  width: 14px;
  height: 14px;
}

.svg-linkedin {
  background: url("sprites.svg") no-repeat;
  background-position: 67.5282485876% 62.9524159471%;
}

.svg-linkedin-dims {
  width: 15px;
  height: 15px;
}

.svg-mail {
  background: url("sprites.svg") no-repeat;
  background-position: 67.6294047031% 63.0670339761%;
}

.svg-mail-dims {
  width: 14px;
  height: 11px;
}

.svg-mail-big {
  background: url("sprites.svg") no-repeat;
  background-position: 67.7617634591% 63.1970601746%;
}

.svg-mail-big-dims {
  width: 21px;
  height: 16px;
}

.svg-mail-white {
  background: url("sprites.svg") no-repeat;
  background-position: 67.9101314116% 63.3440514469%;
}

.svg-mail-white-dims {
  width: 21px;
  height: 16px;
}

.svg-minus-pink {
  background: url("sprites.svg") no-repeat;
  background-position: 68.0584993641% 63.4153055607%;
}

.svg-minus-pink-dims {
  width: 21px;
  height: 3px;
}

.svg-phone {
  background: url("sprites.svg") no-repeat;
  background-position: 68.1683378054% 63.5011021308%;
}

.svg-phone-dims {
  width: 13px;
  height: 13px;
}

.svg-phone-big {
  background: url("sprites.svg") no-repeat;
  background-position: 68.2938890851% 63.6672794118%;
}

.svg-phone-big-dims {
  width: 20px;
  height: 21px;
}

.svg-phone-white {
  background: url("sprites.svg") no-repeat;
  background-position: 68.4351819145% 63.8602941176%;
}

.svg-phone-white-dims {
  width: 20px;
  height: 21px;
}

.svg-pin {
  background: url("sprites.svg") no-repeat;
  background-position: 68.5329003106% 64.0121245522%;
}

.svg-pin-dims {
  width: 11px;
  height: 14px;
}

.svg-pink-arrow-chevron-right {
  background: url("sprites.svg") no-repeat;
  background-position: 68.5960330345% 64.1289374598%;
}

.svg-pink-arrow-chevron-right-dims {
  width: 8px;
  height: 12px;
}

.svg-pink-arrow-down {
  background: url("sprites.svg") no-repeat;
  background-position: 68.6912917579% 64.2155512715%;
}

.svg-pink-arrow-down-dims {
  width: 16px;
  height: 8px;
}

.svg-pink-arrow-up {
  background: url("sprites.svg") no-repeat;
  background-position: 68.7702950727% 64.2712922173%;
}

.svg-pink-arrow-up-dims {
  width: 9px;
  height: 5px;
}

.svg-pink-checkmark {
  background: url("sprites.svg") no-repeat;
  background-position: 68.8581314879% 64.3821773082%;
}

.svg-pink-checkmark-dims {
  width: 14px;
  height: 16px;
}

.svg-pink-tick {
  background: url("sprites.svg") no-repeat;
  background-position: 68.9618644068% 64.50546423%;
}

.svg-pink-tick-dims {
  width: 15px;
  height: 12px;
}

.svg-play-button {
  background: url("sprites.svg") no-repeat;
  background-position: 69.3666217462% 64.9976905312%;
}

.svg-play-button-dims {
  width: 76px;
  height: 76px;
}

.svg-plus-pink {
  background: url("sprites.svg") no-repeat;
  background-position: 69.6340257171% 65.3676470588%;
}

.svg-plus-pink-dims {
  width: 21px;
  height: 21px;
}

.svg-price-elipse {
  background: url("sprites.svg") no-repeat;
  background-position: 76.5006583533% 72.8675043416%;
}

.svg-price-elipse-dims {
  width: 1264px;
  height: 1112px;
}

.svg-price-mask {
  background: url("sprites.svg") no-repeat;
  background-position: 84.974448936% 83.7651122625%;
}

.svg-price-mask-dims {
  width: 1064px;
  height: 1058px;
}

.svg-section-bottom-el {
  background: url("sprites.svg") no-repeat;
  background-position: 88.3140376266% 88.2637571157%;
}

.svg-section-bottom-el-dims {
  width: 355px;
  height: 361px;
}

.svg-single-header-mask {
  background: url("sprites.svg") no-repeat;
  background-position: 99.8807157058% 99.8656608453%;
}

.svg-single-header-mask-dims {
  width: 1600px;
  height: 1224px;
}

.svg-twitter {
  background: url("sprites.svg") no-repeat;
  background-position: 99.9999293786% 99.9924693401%;
}

.svg-twitter-dims {
  width: 14.99px;
  height: 12.18px;
}

.btn,
body .gform_wrapper.gravity-theme .gform_button_select_files {
  color: #000;
}

.round-button {
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 50px;
  height: 50px;
  border: 1px solid #FC5088;
  border-radius: 50%;
  outline: none;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.round-button:after {
  content: "";
  margin: auto;
}

.round-button.arrow-down:after {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-arrow-down.svg);
}

.round-button.arrow-right:after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-arrow-down.svg);
}

.round-button.solid {
  background-color: #FC5088;
}

.round-button:hover,
.round-button:focus {
  background-color: #FC5088;
  text-decoration: none;
}

.buttons-wrapper {
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 20px;
}

.buttons-wrapper .btn,
.buttons-wrapper body .gform_wrapper.gravity-theme .gform_button_select_files,
body .gform_wrapper.gravity-theme .buttons-wrapper .gform_button_select_files {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 27px;
  color: #FFF;
  font-size: 18px;
  border-radius: 100px;
  background-color: #FC5088;
  transition: all 0.5s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.buttons-wrapper .btn span,
.buttons-wrapper body .gform_wrapper.gravity-theme .gform_button_select_files span,
body .gform_wrapper.gravity-theme .buttons-wrapper .gform_button_select_files span {
  transition: color 0.5s ease;
}

.buttons-wrapper .btn.ghost,
.buttons-wrapper body .gform_wrapper.gravity-theme .ghost.gform_button_select_files,
body .gform_wrapper.gravity-theme .buttons-wrapper .ghost.gform_button_select_files {
  background-color: transparent;
  border: 1px solid #FC5088;
}

@media (max-width: 767px) {
  .buttons-wrapper .btn,
  .buttons-wrapper body .gform_wrapper.gravity-theme .gform_button_select_files,
  body .gform_wrapper.gravity-theme .buttons-wrapper .gform_button_select_files {
    font-size: 16px;
  }
}

.buttons-wrapper .btn:hover,
.buttons-wrapper body .gform_wrapper.gravity-theme .gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .buttons-wrapper .gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.buttons-wrapper .btn.ghost:hover,
.buttons-wrapper body .gform_wrapper.gravity-theme .ghost.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .buttons-wrapper .ghost.gform_button_select_files:hover {
  background-color: #FC5088;
}

.buttons-wrapper .btn:after,
.buttons-wrapper body .gform_wrapper.gravity-theme .gform_button_select_files:after,
body .gform_wrapper.gravity-theme .buttons-wrapper .gform_button_select_files:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right.svg);
  transition: all 0.5s ease-in-out;
}

.buttons-wrapper .btn.light-bg:hover,
.buttons-wrapper body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .buttons-wrapper .light-bg.gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.buttons-wrapper .btn.light-bg:hover:after,
.buttons-wrapper body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .buttons-wrapper .light-bg.gform_button_select_files:hover:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.buttons-wrapper .btn.light-bg:hover span,
.buttons-wrapper body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .buttons-wrapper .light-bg.gform_button_select_files:hover span {
  color: #FC5088;
}

.buttons-wrapper .btn.ghost-light,
.buttons-wrapper body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files,
body .gform_wrapper.gravity-theme .buttons-wrapper .ghost-light.gform_button_select_files {
  background-color: transparent;
  border: 1px solid #FC5088;
}

.buttons-wrapper .btn.ghost-light span,
.buttons-wrapper body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files span,
body .gform_wrapper.gravity-theme .buttons-wrapper .ghost-light.gform_button_select_files span {
  color: #FC5088;
}

.buttons-wrapper .btn.ghost-light:after,
.buttons-wrapper body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:after,
body .gform_wrapper.gravity-theme .buttons-wrapper .ghost-light.gform_button_select_files:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.buttons-wrapper .btn.ghost-light:hover,
.buttons-wrapper body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .buttons-wrapper .ghost-light.gform_button_select_files:hover {
  background-color: #FC5088;
}

.buttons-wrapper .btn.ghost-light:hover span,
.buttons-wrapper body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .buttons-wrapper .ghost-light.gform_button_select_files:hover span {
  color: #FFF;
}

.buttons-wrapper .btn.ghost-light:hover:after,
.buttons-wrapper body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .buttons-wrapper .ghost-light.gform_button_select_files:hover:after {
  background-image: url(../../resources/images/svg/arrow-right.svg);
}

.sections-holder .bg-white .buttons-wrapper .btn.default:hover,
.sections-holder .bg-white .buttons-wrapper body .gform_wrapper.gravity-theme .default.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .sections-holder .bg-white .buttons-wrapper .default.gform_button_select_files:hover {
  color: #FC5088;
}

.sections-holder .bg-white .buttons-wrapper .btn.default:hover:after,
.sections-holder .bg-white .buttons-wrapper body .gform_wrapper.gravity-theme .default.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .sections-holder .bg-white .buttons-wrapper .default.gform_button_select_files:hover:after {
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.sections-holder .bg-white .buttons-wrapper .btn.ghost,
.sections-holder .bg-white .buttons-wrapper body .gform_wrapper.gravity-theme .ghost.gform_button_select_files,
body .gform_wrapper.gravity-theme .sections-holder .bg-white .buttons-wrapper .ghost.gform_button_select_files {
  color: #FC5088;
}

.sections-holder .bg-white .buttons-wrapper .btn.ghost:after,
.sections-holder .bg-white .buttons-wrapper body .gform_wrapper.gravity-theme .ghost.gform_button_select_files:after,
body .gform_wrapper.gravity-theme .sections-holder .bg-white .buttons-wrapper .ghost.gform_button_select_files:after {
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.sections-holder .bg-white .buttons-wrapper .btn.ghost:hover,
.sections-holder .bg-white .buttons-wrapper body .gform_wrapper.gravity-theme .ghost.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .sections-holder .bg-white .buttons-wrapper .ghost.gform_button_select_files:hover {
  color: #FFF;
}

.sections-holder .bg-white .buttons-wrapper .btn.ghost:hover:after,
.sections-holder .bg-white .buttons-wrapper body .gform_wrapper.gravity-theme .ghost.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .sections-holder .bg-white .buttons-wrapper .ghost.gform_button_select_files:hover:after {
  background-image: url(../../resources/images/svg/arrow-right.svg);
}

a.btn.short-code,
body .gform_wrapper.gravity-theme a.short-code.gform_button_select_files {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 27px;
  color: #FFF;
  font-size: 18px;
  border-radius: 100px;
  background-color: #FC5088;
  transition: all 0.5s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 767px) {
  a.btn.short-code,
  body .gform_wrapper.gravity-theme a.short-code.gform_button_select_files {
    font-size: 16px;
  }
}

a.btn.short-code:hover,
body .gform_wrapper.gravity-theme a.short-code.gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
  color: #464646;
}

a.btn.short-code:after,
body .gform_wrapper.gravity-theme a.short-code.gform_button_select_files:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right.svg);
}

.sliding-text {
  display: inline-block;
  position: relative;
  height: 62px;
  overflow: hidden;
  -webkit-transform: translateY(9px);
  transform: translateY(9px);
  color: #FC5088;
}

@media (max-width: 480px) {
  .sliding-text {
    height: 40px;
    -webkit-transform: translateY(7px);
    transform: translateY(7px);
  }
}

.sliding-text .sliding-text-line {
  position: relative;
  text-align: left;
}

.sliding-text .sliding-text-line span {
  font-family: "Ubuntu", sans-serif;
  display: inline-block;
  line-height: 1.1;
  will-change: transform;
}

@media (max-width: 767px) {
  .sliding-text .sliding-text-line span {
    line-height: 1.3;
  }
}

.animationSw span {
  -webkit-animation: textSlidingAnimation cubic-bezier(0.76, 0, 0.24, 1) forwards;
  animation: textSlidingAnimation cubic-bezier(0.76, 0, 0.24, 1) forwards;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1300ms;
  animation-duration: 1300ms;
}

@-webkit-keyframes textSlidingAnimation {
  0% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }

  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes textSlidingAnimation {
  0% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }

  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.breadcrumbs {
  padding: 17px 0;
  border-bottom: 1px solid rgba(63, 16, 70, 0.1);
  color: rgba(26, 4, 30, 0.5);
  font-size: 14px;
  font-weight: 400;
}

.breadcrumbs span {
  color: rgba(26, 4, 30, 0.5);
  font-family: "Ubuntu", sans-serif;
}

.breadcrumbs span.current-item {
  color: #1A041E;
}

.main-header {
  position: relative;
  width: 100%;
  z-index: 999;
  /* Header typography*/
  /* top part styles*/
}

.main-header.header-disabled {
  display: none;
}

.main-header ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-header ul a {
  position: relative;
  z-index: 2;
  color: #FFF;
  line-height: 1;
  text-decoration: none;
  font-weight: 300;
}

.main-header ul a:after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FFF;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}

.main-header ul a:hover {
  text-decoration: none;
}

.main-header ul a:hover:after {
  width: 100%;
}

.main-header .top-part {
  position: absolute;
  width: 100%;
  height: 60px;
}

@media (max-width: 500px) {
  .main-header .top-part {
    height: 40px;
  }
}

.main-header .top-part .inner-wrapper {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 500px) {
  .main-header .top-part .inner-wrapper {
    padding: 0;
  }
}

.main-header .top-part .inner-wrapper .top-nav {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background: none;
}

.main-header .top-part .inner-wrapper .top-nav .menu-item {
  padding-right: 25px;
}

.main-header .top-part .inner-wrapper .top-nav .menu-item-weglot {
  padding-right: 0;
}

.main-header .top-part .inner-wrapper .top-nav .menu-item-weglot a {
  opacity: 0.5;
}

.main-header .top-part .inner-wrapper .top-nav .menu-item-weglot a:hover:after {
  content: none;
}

.main-header .top-part .inner-wrapper .top-nav .menu-item-weglot.weglot-nl {
  padding-right: 14px;
}

.main-header .top-part .inner-wrapper .top-nav .menu-item-weglot.weglot-nl:after {
  position: absolute;
  top: 2px;
  right: 22px;
  content: "";
  width: 1px;
  height: 18px;
  background-color: #fff;
}

.main-header .top-part .inner-wrapper .top-nav a {
  font-size: 14px;
}

@media (max-width: 1178px) {
  .main-header .top-part .top-nav .menu-item {
    display: none;
  }

  .main-header .top-part .top-nav .menu-item.weglot-lang {
    display: block;
  }
}

.main-header .main-header-part {
  position: absolute;
  width: 100%;
  top: 70px;
}

@media (max-width: 1178px) {
  .main-header .main-header-part {
    top: 42px;
  }
}

.main-header .main-header-part .main-header-inner {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
}

.main-header .main-header-part .main-header-inner .logo img {
  margin-top: -23px;
}

@media (max-width: 1178px) {
  .main-header .main-header-part .main-header-inner .right-part-holder {
    -ms-flex-order: 3;
    order: 3;
  }
}

.main-header .main-header-part .main-header-inner .right-part-holder .main-nav {
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.main-header .main-header-part .main-header-inner .right-part-holder .main-nav a {
  font-size: 18px;
}

.main-header .main-header-part .main-header-inner .right-part-holder .main-nav .menu-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  padding: 25px 0;
  margin-bottom: 0 !important;
}

.main-header .main-header-part .main-header-inner .right-part-holder .main-nav .menu-item.menu-item-has-children {
  position: relative;
}

.main-header .main-header-part .main-header-inner .right-part-holder .main-nav .menu-item.menu-item-has-children:after {
  content: " ";
  height: 5px;
  width: 9px;
  background-image: url(../../resources/images/svg/arrow-down.svg);
  transition: all 0.5s ease-in-out;
}

.main-header .main-header-part .main-header-inner .right-part-holder .main-nav .menu-item.menu-item-has-children .sub-menu {
  position: absolute;
  left: -33px;
  top: 100%;
  padding: 10px 0;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
}

.main-header .main-header-part .main-header-inner .right-part-holder .main-nav .menu-item.menu-item-has-children .sub-menu .menu-item {
  width: 100%;
  display: block;
  padding: 10px 15px;
}

.main-header .main-header-part .main-header-inner .right-part-holder .main-nav .menu-item.menu-item-has-children .sub-menu .menu-item a {
  height: 100%;
  color: #464646;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.main-header .main-header-part .main-header-inner .right-part-holder .main-nav .menu-item.menu-item-has-children .sub-menu .menu-item a:before {
  display: block;
  content: " ";
  height: 5px;
  width: 9px;
  background-image: url(../../resources/images/svg/pink-arrow-up.svg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.main-header .main-header-part .main-header-inner .right-part-holder .main-nav .menu-item.menu-item-has-children .sub-menu .menu-item a:after {
  display: none;
}

.main-header .main-header-part .main-header-inner .right-part-holder .main-nav .menu-item.menu-item-has-children .sub-menu .menu-item a:hover {
  color: #FC5088;
}

.main-header .main-header-part .main-header-inner .right-part-holder .main-nav .menu-item.menu-item-has-children:hover:after {
  background-image: url(../../resources/images/svg/pink-arrow-up.svg);
}

.main-header .main-header-part .main-header-inner .right-part-holder .main-nav .menu-item.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 1177px) {
  .main-header .main-header-part .main-header-inner .right-part-holder .main-nav-container {
    display: none;
  }
}

.main-header .main-header-part .main-header-inner .right-part-holder .ham-icon-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-left: 15px;
}

@media (max-width: 767px) {
  .main-header .main-header-part .main-header-inner .right-part-holder .ham-icon-wrapper {
    margin-left: auto;
  }
}

.main-header .main-header-part .main-header-inner .right-part-holder .ham-icon {
  position: relative;
  width: 20px;
  height: 16px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  cursor: pointer;
  text-align: center;
}

.main-header .main-header-part .main-header-inner .right-part-holder .ham-icon span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.main-header .main-header-part .main-header-inner .right-part-holder .ham-icon span:nth-child(1) {
  top: 0;
}

.main-header .main-header-part .main-header-inner .right-part-holder .ham-icon span:nth-child(2),
.main-header .main-header-part .main-header-inner .right-part-holder .ham-icon span:nth-child(3) {
  top: 7px;
}

.main-header .main-header-part .main-header-inner .right-part-holder .ham-icon span:nth-child(4) {
  top: 14px;
}

.main-header .main-header-part .main-header-inner .right-part-holder .ham-icon.light span {
  background-color: #FFF;
}

.main-header .main-header-part .main-header-inner .right-part-holder .ham-icon.open:after {
  content: "";
  display: inline-block;
}

.main-header .main-header-part .main-header-inner .right-part-holder .ham-icon.open span {
  left: 0;
}

.main-header .main-header-part .main-header-inner .right-part-holder .ham-icon.open span:nth-child(1) {
  top: 7px;
  left: 50%;
  width: 0;
}

.main-header .main-header-part .main-header-inner .right-part-holder .ham-icon.open span:nth-child(2) {
  top: 7px;
  width: 100%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.main-header .main-header-part .main-header-inner .right-part-holder .ham-icon.open span:nth-child(3) {
  top: 7px;
  width: 100%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.main-header .main-header-part .main-header-inner .right-part-holder .ham-icon.open span:nth-child(4) {
  top: 7px;
  left: 50%;
  width: 0;
}

.main-header .main-header-part .main-header-inner .btn-wrapper {
  display: grid;
  place-content: center center;
  width: 165px;
  height: 50px;
  border-radius: 100px;
  background-color: #FC5088;
  border: 1px solid #FC5088;
}

@media (max-width: 1178px) {
  .main-header .main-header-part .main-header-inner .btn-wrapper {
    display: none;
  }
}

.main-header .main-header-part .main-header-inner .btn-wrapper .btn,
.main-header .main-header-part .main-header-inner .btn-wrapper body .gform_wrapper.gravity-theme .gform_button_select_files,
body .gform_wrapper.gravity-theme .main-header .main-header-part .main-header-inner .btn-wrapper .gform_button_select_files {
  padding: 0;
  margin: 0;
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
}

.main-header .main-header-part .main-header-inner .btn-wrapper:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
}

.mobile-nav-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  width: 100%;
  height: 100%;
  background-color: grey;
  overflow: auto;
}

.mobile-nav-container .mobile-top-nav-container {
  padding-bottom: 30px;
}

.mobile-nav-container .mobile-top-nav-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav-container .mobile-top-nav-container ul li {
  margin-bottom: 0 !important;
}

.mobile-nav-container .mobile-top-nav-container ul li.weglot-lang {
  display: none;
}

.mobile-nav-container .mobile-top-nav-container ul li a {
  font-size: 15px;
  line-height: 1;
  color: #FFF;
}

.mobile-nav-container .mobile-nav-holder {
  transition: all 0.3s ease-in-out;
}

.mobile-nav-container .btn-wrapper {
  display: grid;
  place-content: center center;
  width: 165px;
  height: 50px;
  border-radius: 100px;
  background-color: #FC5088;
  margin: 0 auto;
}

.mobile-nav-container .btn-wrapper .btn,
.mobile-nav-container .btn-wrapper body .gform_wrapper.gravity-theme .gform_button_select_files,
body .gform_wrapper.gravity-theme .mobile-nav-container .btn-wrapper .gform_button_select_files {
  padding: 0;
  margin: 0;
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
}

.mobile-nav-container .btn-wrapper:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.mobile-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  padding: 0 0 30px;
}

.mobile-nav .menu-item {
  position: relative;
  border-top: 1px solid #e4e4e8;
  line-height: 1.3;
}

.mobile-nav .menu-item:last-child {
  border-bottom: 1px solid #e4e4e8;
}

.mobile-nav .menu-item .arrow {
  display: none;
  position: absolute;
  top: 22px;
  right: 10px;
  z-index: 1;
  transition: all 0.4s ease-in-out;
  width: 10px;
  height: 6px;
  background-size: 10px 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-down.svg);
}

.mobile-nav .menu-item a {
  display: block;
  position: relative;
  color: #fff;
  font-size: 18px;
  z-index: 2;
  padding: 10px 0;
  text-decoration: none;
}

.mobile-nav .menu-item.menu-item-has-children > .arrow {
  display: block;
}

.mobile-nav .menu-item.menu-item-has-children > .arrow.active {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.mobile-nav .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  padding: 0 0 0 38px;
}

.mobile-nav .sub-menu .menu-item {
  border: none;
}

.mobile-nav .sub-menu .menu-item a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.mobile-nav .sub-menu .menu-item a:before {
  display: block;
  content: " ";
  height: 5px;
  width: 9px;
  background-image: url(../../resources/images/svg/chevron-up.svg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mobile-nav .sub-menu .menu-item:last-child {
  padding-bottom: 0;
}

html[lang=nl-NL] .weglot-lang.weglot-nl a {
  opacity: 1 !important;
}

html[lang=en] .weglot-lang.weglot-en a {
  opacity: 1 !important;
}

.main-header.news-header {
  height: 190px;
  background-color: #3F1046;
  overflow: visible;
}

@media (max-width: 1178px) {
  .main-header.news-header {
    height: 120px;
  }
}

.main-header.news-header:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1600px;
  height: 1200px;
  background-size: 1600px 1200px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/single-header-mask.svg);
  height: 100%;
  width: 100%;
  z-index: 0;
}

.main-header.news-header.active-mobile-nav {
  background-color: transparent;
}

.main-header.news-header.active-mobile-nav:after {
  content: none;
}

.main-header.news-header .main-header-inner {
  z-index: 10;
}

.main-header.news-header .main-header-inner .btn-wrapper {
  background-color: transparent;
}

.main-header.news-header .main-header-inner .btn-wrapper:hover {
  background-color: #FC5088;
}

.sections-holder {
  position: relative;
  z-index: 5;
}

.sections-holder section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 100px 0 150px 0;
}

@media (max-width: 767px) {
  .sections-holder section {
    padding: 50px 0 100px 0;
  }
}

.sections-holder section li {
  margin-bottom: 10px !important;
}

.sections-holder section .no-padding {
  padding: 0;
}

.sections-holder section.no-top-padding {
  padding-top: 0;
}

.sections-holder section.no-bottom-padding {
  padding-bottom: 0;
}

.sections-holder section .content-wrapper * {
  margin-bottom: 20px;
}

.sections-holder section h2.section-title {
  font-size: 45px;
  font-weight: 500;
}

.sections-holder section .section-title h2 {
  font-size: 45px;
  font-weight: 500;
}

@media (max-width: 950px) {
  .sections-holder section .section-title h2 {
    font-size: 35px;
  }
}

@media (max-width: 600px) {
  .sections-holder section .section-title h2 {
    font-size: 30px;
  }
}

.pagination-wrapper .page-numbers {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.pagination-wrapper .page-numbers li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.pagination-wrapper .page-numbers li span,
.pagination-wrapper .page-numbers li a {
  display: grid;
  place-content: center center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  color: #464646;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.pagination-wrapper .page-numbers li span.current,
.pagination-wrapper .page-numbers li a.current {
  background-color: #FC5088;
  color: #FFF;
}

.pagination-wrapper .page-numbers li span:hover,
.pagination-wrapper .page-numbers li a:hover {
  text-decoration: none;
}

.pagination-wrapper .page-numbers li .prev .arrow-list-icon,
.pagination-wrapper .page-numbers li .next .arrow-list-icon {
  width: 17px;
  height: 13px;
  width: 17px;
  height: 13px;
  background-size: 17px 13px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-left.svg);
}

.pagination-wrapper .page-numbers li .next .arrow-list-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.main-footer {
  position: relative;
  min-height: 465px;
  background-color: #3F1046;
  overflow: hidden;
}

.main-footer .footer-bg .elipse {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  width: 100%;
  background-image: url(../../resources/images/svg/footer-elipse-mask.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.main-footer .container {
  position: relative;
  z-index: 5;
}

.main-footer .container.main {
  padding-top: 70px;
}

.main-footer .container .logo {
  padding-bottom: 20px;
}

.main-footer .container .footer-columns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 995px) {
  .main-footer .container .footer-columns {
    gap: 20px;
  }
}

.main-footer .container .footer-columns .footer-column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main-footer .container .footer-columns .footer-column.contact {
  width: auto;
}

.main-footer .container .footer-columns .footer-column.content {
  width: 165px;
}

.main-footer .container .footer-columns .footer-column.content .footer-title {
  margin-bottom: 0;
}

.main-footer .container .footer-columns .footer-column .footer-title {
  padding-bottom: 17px;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
}

.main-footer .container .footer-columns .footer-column .content-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  gap: 5px;
}

.main-footer .container .footer-columns .footer-column .content-wrapper a {
  color: #FFF;
  font-weight: 300;
  font-size: 12px;
}

.main-footer .container .footer-columns .footer-column .contact-link {
  position: relative;
  padding-left: 30px;
  padding-bottom: 5px;
  color: #FFF;
  font-weight: 300;
  font-size: 12px;
}

.main-footer .container .footer-columns .footer-column .contact-link::before {
  position: absolute;
  top: 2px;
  left: 0;
}

.main-footer .container .footer-columns .footer-column .contact-link.address {
  line-height: 22px;
}

.main-footer .container .footer-columns .footer-column .contact-link.address::before {
  content: url(../../resources/images/svg/pin.svg);
}

.main-footer .container .footer-columns .footer-column .contact-link.phone::before {
  content: url(../../resources/images/svg/phone.svg);
}

.main-footer .container .footer-columns .footer-column .contact-link.email::before {
  content: url(../../resources/images/svg/mail.svg);
}

.main-footer .container .footer-columns .footer-column .contact-link.support::before {
  content: url(../../resources/images/svg/headphones.svg);
}

.main-footer .container .footer-logos {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 40px;
  padding-top: 70px;
}

@media (max-width: 768px) {
  .main-footer .container .footer-logos {
    padding-top: 30px;
  }
}

.main-footer .container .footer-logos .bottom-logo a {
  width: 100%;
  height: 100%;
}

.main-footer .bottom-part {
  margin-top: 35px;
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.main-footer .bottom-part .footer-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #FFF;
  font-size: 15px;
  font-weight: 400;
}

@media (max-width: 1180px) {
  .main-footer .bottom-part .footer-inner {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}

.main-footer .bottom-part .footer-inner .copyright {
  font-size: 12px;
}

@media (max-width: 1180px) {
  .main-footer .bottom-part .footer-inner .copyright {
    -ms-flex-order: 3;
    order: 3;
  }
}

@media (max-width: 1180px) {
  .main-footer .bottom-part .footer-inner .footer-bottom-nav-container {
    -ms-flex-order: 1;
    order: 1;
  }
}

.main-footer .bottom-part .footer-inner .footer-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-footer .bottom-part .footer-inner .footer-nav li {
  margin-bottom: 0 !important;
}

.main-footer .bottom-part .footer-inner .footer-nav a {
  font-size: 12px;
  color: #FFF;
}

@media (max-width: 1180px) {
  .main-footer .bottom-part .footer-inner .socials-col {
    -ms-flex-order: 2;
    order: 2;
  }
}

.main-footer .bottom-part .footer-inner .socials-col .socials-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -20px;
}

.main-footer .bottom-part .footer-inner .socials-col .socials-wrapper .social {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin: 0 18px;
  text-decoration: none;
}

.main-footer .bottom-part .footer-inner .socials-col .socials-wrapper .social:before,
.main-footer .bottom-part .footer-inner .socials-col .socials-wrapper .social:after {
  content: "";
  display: inline-block;
  transition: all 0.3s ease-in-out;
}

.main-footer .bottom-part .footer-inner .socials-col .socials-wrapper .social.icon-facebook:before {
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/facebook.svg);
}

.main-footer .bottom-part .footer-inner .socials-col .socials-wrapper .social.icon-linkedin:before {
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/linkedin.svg);
}

.main-footer .bottom-part .footer-inner .socials-col .socials-wrapper .social.icon-twitter:before {
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/twitter.svg);
}

.header-section-home {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 500px) {
  .header-section-home {
    min-height: 80vh;
  }
}

.header-section-home:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(21, 0, 24, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.13) 100%);
}

.header-section-home .section-inner {
  display: grid;
  place-content: center center;
  width: 100%;
}

.header-section-home .section-inner .part {
  z-index: 5;
}

.header-section-home .section-inner .part .section-title {
  text-align: center;
  font-size: 74px;
  line-height: 1.11;
  font-weight: 500;
  color: #FFF;
  padding: 15px 0;
}

@media (max-width: 767px) {
  .header-section-home .section-inner .part .section-title {
    font-size: 52px;
  }
}

@media (max-width: 480px) {
  .header-section-home .section-inner .part .section-title {
    font-size: 32px;
  }
}

.header-section-home .section-inner .part .description {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-section-home .section-inner .part .description .section-description {
  max-width: 650px;
  text-align: center;
}

.header-section-home .section-inner .part .description .section-description p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #FFF;
}

@media (max-width: 767px) {
  .header-section-home .section-inner .part .description .section-description p {
    font-size: 16px;
  }
}

.header-section-home .section-inner .part .section-button {
  display: grid;
  place-content: center center;
  padding-top: 25px;
}

.header-section-home .section-inner .part .section-button .btn,
.header-section-home .section-inner .part .section-button body .gform_wrapper.gravity-theme .gform_button_select_files,
body .gform_wrapper.gravity-theme .header-section-home .section-inner .part .section-button .gform_button_select_files {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 27px;
  color: #FFF;
  font-size: 18px;
  border-radius: 100px;
  background-color: #FC5088;
  transition: all 0.5s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.header-section-home .section-inner .part .section-button .btn span,
.header-section-home .section-inner .part .section-button body .gform_wrapper.gravity-theme .gform_button_select_files span,
body .gform_wrapper.gravity-theme .header-section-home .section-inner .part .section-button .gform_button_select_files span {
  transition: color 0.5s ease;
}

.header-section-home .section-inner .part .section-button .btn.ghost,
.header-section-home .section-inner .part .section-button body .gform_wrapper.gravity-theme .ghost.gform_button_select_files,
body .gform_wrapper.gravity-theme .header-section-home .section-inner .part .section-button .ghost.gform_button_select_files {
  background-color: transparent;
  border: 1px solid #FC5088;
}

@media (max-width: 767px) {
  .header-section-home .section-inner .part .section-button .btn,
  .header-section-home .section-inner .part .section-button body .gform_wrapper.gravity-theme .gform_button_select_files,
  body .gform_wrapper.gravity-theme .header-section-home .section-inner .part .section-button .gform_button_select_files {
    font-size: 16px;
  }
}

.header-section-home .section-inner .part .section-button .btn:hover,
.header-section-home .section-inner .part .section-button body .gform_wrapper.gravity-theme .gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .header-section-home .section-inner .part .section-button .gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.header-section-home .section-inner .part .section-button .btn.ghost:hover,
.header-section-home .section-inner .part .section-button body .gform_wrapper.gravity-theme .ghost.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .header-section-home .section-inner .part .section-button .ghost.gform_button_select_files:hover {
  background-color: #FC5088;
}

.header-section-home .section-inner .part .section-button .btn:after,
.header-section-home .section-inner .part .section-button body .gform_wrapper.gravity-theme .gform_button_select_files:after,
body .gform_wrapper.gravity-theme .header-section-home .section-inner .part .section-button .gform_button_select_files:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right.svg);
  transition: all 0.5s ease-in-out;
}

.header-section-home .section-inner .part .section-button .btn.light-bg:hover,
.header-section-home .section-inner .part .section-button body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .header-section-home .section-inner .part .section-button .light-bg.gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.header-section-home .section-inner .part .section-button .btn.light-bg:hover:after,
.header-section-home .section-inner .part .section-button body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .header-section-home .section-inner .part .section-button .light-bg.gform_button_select_files:hover:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.header-section-home .section-inner .part .section-button .btn.light-bg:hover span,
.header-section-home .section-inner .part .section-button body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .header-section-home .section-inner .part .section-button .light-bg.gform_button_select_files:hover span {
  color: #FC5088;
}

.header-section-home .section-inner .part .section-button .btn.ghost-light,
.header-section-home .section-inner .part .section-button body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files,
body .gform_wrapper.gravity-theme .header-section-home .section-inner .part .section-button .ghost-light.gform_button_select_files {
  background-color: transparent;
  border: 1px solid #FC5088;
}

.header-section-home .section-inner .part .section-button .btn.ghost-light span,
.header-section-home .section-inner .part .section-button body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files span,
body .gform_wrapper.gravity-theme .header-section-home .section-inner .part .section-button .ghost-light.gform_button_select_files span {
  color: #FC5088;
}

.header-section-home .section-inner .part .section-button .btn.ghost-light:after,
.header-section-home .section-inner .part .section-button body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:after,
body .gform_wrapper.gravity-theme .header-section-home .section-inner .part .section-button .ghost-light.gform_button_select_files:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.header-section-home .section-inner .part .section-button .btn.ghost-light:hover,
.header-section-home .section-inner .part .section-button body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .header-section-home .section-inner .part .section-button .ghost-light.gform_button_select_files:hover {
  background-color: #FC5088;
}

.header-section-home .section-inner .part .section-button .btn.ghost-light:hover span,
.header-section-home .section-inner .part .section-button body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .header-section-home .section-inner .part .section-button .ghost-light.gform_button_select_files:hover span {
  color: #FFF;
}

.header-section-home .section-inner .part .section-button .btn.ghost-light:hover:after,
.header-section-home .section-inner .part .section-button body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .header-section-home .section-inner .part .section-button .ghost-light.gform_button_select_files:hover:after {
  background-image: url(../../resources/images/svg/arrow-right.svg);
}

.header-section-home .section-inner .part.bottom {
  position: absolute;
  bottom: 50px;
  left: calc(50% - 50px);
}

@media (max-width: 500px) {
  .header-section-home .section-inner .part.bottom {
    display: none;
  }
}

.header-section-home .section-inner .part .bottom-elements-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 50px;
}

.header-section-home .section-inner .part .bottom-elements-row .scroll-part {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
}

.header-section-home .section-inner .part .bottom-elements-row .scroll-part .text {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}

.header-section-home .section-inner .part.eclipse {
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url(../../resources/images/svg/eclipse.svg);
  height: 374px;
  width: 389px;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: cover;
  z-index: 1;
}

@media (max-width: 767px) {
  .header-section-home .section-inner .part.eclipse {
    background-size: cover;
    height: 187px;
    width: 194.5px;
  }
}

.header-section-home .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.header-section-home .video-background video {
  padding: 0px;
  margin: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.header-section-home .video-background .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(21, 0, 24, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.13) 100%);
}

.header-section-content.image {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 500px) {
  .header-section-content.image {
    min-height: 80vh;
  }
}

.header-section-content.image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(21, 0, 24, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.13) 100%);
}

.header-section-content.no-image {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 6;
  min-height: 80vh;
  background-color: #3F1046;
}

@media (max-width: 500px) {
  .header-section-content.no-image {
    min-height: 90vh;
  }
}

.header-section-content.no-image .elipse {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-image: url(../../resources/images/svg/header-elipse-mask.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.header-section-content .section-inner {
  padding-top: 160px;
  padding-bottom: 60px;
}

.header-section-content .form-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.section-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  width: 100%;
}

.section-inner .part {
  z-index: 5;
}

.section-inner .part .section-title {
  text-align: left;
  font-size: 64px;
  font-weight: 500;
  color: #FFF;
  padding: 15px 0;
}

@media (max-width: 767px) {
  .section-inner .part .section-title {
    font-size: 48px;
  }
}

@media (max-width: 480px) {
  .section-inner .part .section-title {
    font-size: 40px;
  }
}

.section-inner .part .section-title .colored-title {
  color: #FC5088;
}

.section-inner .part .section-description {
  max-width: 535px;
  text-align: left;
}

.section-inner .part .section-description p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #FFF;
}

@media (max-width: 767px) {
  .section-inner .part .section-description p {
    font-size: 16px;
  }
}

.section-inner .part .section-description li {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #FFF;
}

@media (max-width: 767px) {
  .section-inner .part .section-description li {
    font-size: 16px;
  }
}

.section-inner .part .buttons-wrapper {
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 20px;
}

.section-inner .part .buttons-wrapper .btn,
.section-inner .part .buttons-wrapper body .gform_wrapper.gravity-theme .gform_button_select_files,
body .gform_wrapper.gravity-theme .section-inner .part .buttons-wrapper .gform_button_select_files {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 27px;
  color: #FFF;
  font-size: 18px;
  border-radius: 100px;
  background-color: #FC5088;
  transition: all 0.5s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.section-inner .part .buttons-wrapper .btn span,
.section-inner .part .buttons-wrapper body .gform_wrapper.gravity-theme .gform_button_select_files span,
body .gform_wrapper.gravity-theme .section-inner .part .buttons-wrapper .gform_button_select_files span {
  transition: color 0.5s ease;
}

.section-inner .part .buttons-wrapper .btn.ghost,
.section-inner .part .buttons-wrapper body .gform_wrapper.gravity-theme .ghost.gform_button_select_files,
body .gform_wrapper.gravity-theme .section-inner .part .buttons-wrapper .ghost.gform_button_select_files {
  background-color: transparent;
  border: 1px solid #FC5088;
}

@media (max-width: 767px) {
  .section-inner .part .buttons-wrapper .btn,
  .section-inner .part .buttons-wrapper body .gform_wrapper.gravity-theme .gform_button_select_files,
  body .gform_wrapper.gravity-theme .section-inner .part .buttons-wrapper .gform_button_select_files {
    font-size: 16px;
  }
}

.section-inner .part .buttons-wrapper .btn:hover,
.section-inner .part .buttons-wrapper body .gform_wrapper.gravity-theme .gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .section-inner .part .buttons-wrapper .gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.section-inner .part .buttons-wrapper .btn.ghost:hover,
.section-inner .part .buttons-wrapper body .gform_wrapper.gravity-theme .ghost.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .section-inner .part .buttons-wrapper .ghost.gform_button_select_files:hover {
  background-color: #FC5088;
}

.section-inner .part .buttons-wrapper .btn:after,
.section-inner .part .buttons-wrapper body .gform_wrapper.gravity-theme .gform_button_select_files:after,
body .gform_wrapper.gravity-theme .section-inner .part .buttons-wrapper .gform_button_select_files:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right.svg);
  transition: all 0.5s ease-in-out;
}

.section-inner .part .buttons-wrapper .btn.light-bg:hover,
.section-inner .part .buttons-wrapper body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .section-inner .part .buttons-wrapper .light-bg.gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.section-inner .part .buttons-wrapper .btn.light-bg:hover:after,
.section-inner .part .buttons-wrapper body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .section-inner .part .buttons-wrapper .light-bg.gform_button_select_files:hover:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.section-inner .part .buttons-wrapper .btn.light-bg:hover span,
.section-inner .part .buttons-wrapper body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .section-inner .part .buttons-wrapper .light-bg.gform_button_select_files:hover span {
  color: #FC5088;
}

.section-inner .part .buttons-wrapper .btn.ghost-light,
.section-inner .part .buttons-wrapper body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files,
body .gform_wrapper.gravity-theme .section-inner .part .buttons-wrapper .ghost-light.gform_button_select_files {
  background-color: transparent;
  border: 1px solid #FC5088;
}

.section-inner .part .buttons-wrapper .btn.ghost-light span,
.section-inner .part .buttons-wrapper body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files span,
body .gform_wrapper.gravity-theme .section-inner .part .buttons-wrapper .ghost-light.gform_button_select_files span {
  color: #FC5088;
}

.section-inner .part .buttons-wrapper .btn.ghost-light:after,
.section-inner .part .buttons-wrapper body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:after,
body .gform_wrapper.gravity-theme .section-inner .part .buttons-wrapper .ghost-light.gform_button_select_files:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.section-inner .part .buttons-wrapper .btn.ghost-light:hover,
.section-inner .part .buttons-wrapper body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .section-inner .part .buttons-wrapper .ghost-light.gform_button_select_files:hover {
  background-color: #FC5088;
}

.section-inner .part .buttons-wrapper .btn.ghost-light:hover span,
.section-inner .part .buttons-wrapper body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .section-inner .part .buttons-wrapper .ghost-light.gform_button_select_files:hover span {
  color: #FFF;
}

.section-inner .part .buttons-wrapper .btn.ghost-light:hover:after,
.section-inner .part .buttons-wrapper body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .section-inner .part .buttons-wrapper .ghost-light.gform_button_select_files:hover:after {
  background-image: url(../../resources/images/svg/arrow-right.svg);
}

.section-inner .part .form-wrapper {
  --form-offset: 182px;
  background-color: #45154A;
  border-radius: 10px;
  padding: 30px 15px;
}

.section-inner .part .form-wrapper .form-title {
  display: block;
  color: #fff;
  font-family: "Ubuntu", sans-serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 32px;
  line-height: 1;
}

.section-inner .part .form-wrapper .gform_wrapper .gform_heading {
  display: none;
}

.section-inner .part .form-wrapper .gform_wrapper .gfield_label {
  color: #fff;
}

.section-inner .part .form-wrapper .gform_wrapper .gfield_checkbox .gchoice label,
.section-inner .part .form-wrapper .gform_wrapper .gfield_radio .gchoice label {
  color: #fff;
}

.section-inner .part .form-wrapper .gform_wrapper .gfield_checkbox .gchoice label:before,
.section-inner .part .form-wrapper .gform_wrapper .gfield_radio .gchoice label:before {
  border: 2px solid #FC5088;
}

.section-inner .part .form-wrapper .gform_wrapper .gfield_checkbox .gchoice input[type=checkbox]:checked + label:before {
  background-color: #FC5088;
}

.section-inner .part .form-wrapper .gform_wrapper .gfield_radio .gchoice input[type=radio]:checked + label:before {
  background-color: #fff;
  box-shadow: inset 0px 0px 0px 3px #fff;
}

.text-image-video-section .row {
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.text-image-video-section .row.position-left {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.text-image-video-section .content-inner .section-title {
  color: #3F1046;
  padding-bottom: 20px;
}

.text-image-video-section .content-inner .section-title .colored {
  color: #FC5088;
}

.text-image-video-section .content-inner .content-wrapper {
  font-size: 16px;
  color: #3F1046;
  padding-bottom: 10px;
}

.text-image-video-section .content-inner .bullets {
  margin: 0;
  padding: 0;
  list-style: none;
}

.text-image-video-section .content-inner .bullets .bullet {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #464646;
}

.text-image-video-section .content-inner .bullets .bullet .tick {
  height: 12px;
  width: 10%;
  background-repeat: no-repeat;
  background-image: url(../../resources/images/svg/pink-tick.svg);
}

.text-image-video-section .content-inner .bullets .bullet .text {
  width: 90%;
}

.text-image-video-section.bg-purple {
  background-color: #3F1046;
  background-image: url(../../resources/images/svg/header-elipse-mask.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.text-image-video-section.bg-purple .content-inner .section-title {
  color: #FFF;
}

.text-image-video-section.bg-purple .content-inner .content-wrapper p {
  color: #FFF;
}

.text-image-video-section.bg-purple .content-inner .content-wrapper li {
  color: #FFF;
}

.text-image-video-section.bg-purple .content-inner .bullets .bullet {
  color: #FFF;
}

.text-image-video-section .row-content .content {
  -ms-flex: unset;
  flex: unset;
  max-width: unset;
  width: 44%;
}

@media (max-width: 989px) {
  .text-image-video-section .row-content .content {
    width: 100%;
  }
}

.text-image-video-section .row-content .media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex: unset;
  flex: unset;
  max-width: unset;
  width: 50%;
}

@media (max-width: 989px) {
  .text-image-video-section .row-content .media {
    width: 100%;
    padding-top: 20px;
  }
}

.text-image-video-section .row-content .media .image-wrapper {
  position: relative;
  font-size: 0;
  margin: auto;
}

.text-image-video-section .row-content .media .image-wrapper img {
  position: relative;
  border-radius: 15px;
  z-index: 2;
}

.text-image-video-section .row-content .media .image-wrapper .open-fancy {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-content: center center;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: rgba(63, 16, 70, 0.65);
  border-radius: 15px;
}

.text-image-video-section .row-content .media .image-wrapper .open-fancy:after {
  display: block;
  content: "";
  height: 76px;
  width: 76px;
  background-image: url(../../resources/images/svg/play-button.svg);
}

.text-image-video-section .row-content .media .image-wrapper .open-fancy:hover:after {
  opacity: 0.9;
}

.click-section {
  position: relative;
}

.click-section .eclipse {
  position: absolute;
  bottom: 0;
  left: -10px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background-image: url(../../resources/images/svg/eclipse.svg);
  height: 374px;
  width: 389px;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: cover;
  z-index: -1;
}

.click-section .click-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 138px;
}

.click-section .click-wrapper .section-title {
  text-align: center;
}

.click-section .click-wrapper .colored {
  color: #FC5088;
}

.click-section .click-wrapper .click_header {
  margin-left: -19px;
  margin-right: -19px;
  position: relative;
}

.click-section .click-wrapper .click_header .slick-arrow {
  position: absolute;
  z-index: 5;
  top: calc(50% - 25px);
  display: grid;
  place-content: center center;
  width: 50px;
  height: 50px;
  background-color: #FC5088;
  border: 1px solid #FC5088;
  border-radius: 50%;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .click-section .click-wrapper .click_header .slick-arrow {
    top: calc(100% + 25px);
  }
}

.click-section .click-wrapper .click_header .slick-arrow.slick-disabled {
  background-color: transparent;
}

.click-section .click-wrapper .click_header .slick-arrow:before {
  display: block;
  content: "";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right.svg);
  transition: all 0.5s;
}

.click-section .click-wrapper .click_header .slick-prev {
  right: 60px;
}

@media (max-width: 1024px) {
  .click-section .click-wrapper .click_header .slick-prev {
    right: auto;
    left: 15px;
  }
}

.click-section .click-wrapper .click_header .slick-prev:before {
  rotate: 180deg;
}

.click-section .click-wrapper .click_header .slick-next {
  right: 0;
}

@media (max-width: 1024px) {
  .click-section .click-wrapper .click_header .slick-next {
    right: 15px;
  }
}

.click-section .click-wrapper .slick-track {
  display: -ms-flexbox !important;
  display: flex !important;
}

.click-section .click-wrapper .slick-slide {
  height: inherit !important;
  padding-top: 100px;
  text-align: center;
  margin-right: 15px;
  margin-left: 15px;
}

.click-section .click-wrapper .slick-slide .block {
  position: relative;
  border-radius: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  background: rgba(252, 80, 136, 0.05);
  padding: 70px 65px 35px;
  text-align: center;
  height: 100%;
  width: 100%;
}

.click-section .click-wrapper .slick-slide .block img {
  height: 142px;
  margin-top: -167px;
  -o-object-fit: cover;
  object-fit: cover;
}

.click-section .click-wrapper .slick-slide .block .block-title {
  font-size: 32px;
  color: #3F1046;
  font-weight: 700;
}

.click-section .click-wrapper .slick-slide .block .block-description {
  font-size: 16px;
  color: #464646;
  font-weight: 400;
}

.click-section .click-wrapper .slick-slide .block .block-button .btn,
.click-section .click-wrapper .slick-slide .block .block-button body .gform_wrapper.gravity-theme .gform_button_select_files,
body .gform_wrapper.gravity-theme .click-section .click-wrapper .slick-slide .block .block-button .gform_button_select_files {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 27px;
  color: #FFF;
  font-size: 18px;
  border-radius: 100px;
  background-color: #FC5088;
  transition: all 0.5s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.click-section .click-wrapper .slick-slide .block .block-button .btn span,
.click-section .click-wrapper .slick-slide .block .block-button body .gform_wrapper.gravity-theme .gform_button_select_files span,
body .gform_wrapper.gravity-theme .click-section .click-wrapper .slick-slide .block .block-button .gform_button_select_files span {
  transition: color 0.5s ease;
}

.click-section .click-wrapper .slick-slide .block .block-button .btn.ghost,
.click-section .click-wrapper .slick-slide .block .block-button body .gform_wrapper.gravity-theme .ghost.gform_button_select_files,
body .gform_wrapper.gravity-theme .click-section .click-wrapper .slick-slide .block .block-button .ghost.gform_button_select_files {
  background-color: transparent;
  border: 1px solid #FC5088;
}

@media (max-width: 767px) {
  .click-section .click-wrapper .slick-slide .block .block-button .btn,
  .click-section .click-wrapper .slick-slide .block .block-button body .gform_wrapper.gravity-theme .gform_button_select_files,
  body .gform_wrapper.gravity-theme .click-section .click-wrapper .slick-slide .block .block-button .gform_button_select_files {
    font-size: 16px;
  }
}

.click-section .click-wrapper .slick-slide .block .block-button .btn:hover,
.click-section .click-wrapper .slick-slide .block .block-button body .gform_wrapper.gravity-theme .gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .click-section .click-wrapper .slick-slide .block .block-button .gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.click-section .click-wrapper .slick-slide .block .block-button .btn.ghost:hover,
.click-section .click-wrapper .slick-slide .block .block-button body .gform_wrapper.gravity-theme .ghost.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .click-section .click-wrapper .slick-slide .block .block-button .ghost.gform_button_select_files:hover {
  background-color: #FC5088;
}

.click-section .click-wrapper .slick-slide .block .block-button .btn:after,
.click-section .click-wrapper .slick-slide .block .block-button body .gform_wrapper.gravity-theme .gform_button_select_files:after,
body .gform_wrapper.gravity-theme .click-section .click-wrapper .slick-slide .block .block-button .gform_button_select_files:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right.svg);
  transition: all 0.5s ease-in-out;
}

.click-section .click-wrapper .slick-slide .block .block-button .btn.light-bg:hover,
.click-section .click-wrapper .slick-slide .block .block-button body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .click-section .click-wrapper .slick-slide .block .block-button .light-bg.gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.click-section .click-wrapper .slick-slide .block .block-button .btn.light-bg:hover:after,
.click-section .click-wrapper .slick-slide .block .block-button body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .click-section .click-wrapper .slick-slide .block .block-button .light-bg.gform_button_select_files:hover:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.click-section .click-wrapper .slick-slide .block .block-button .btn.light-bg:hover span,
.click-section .click-wrapper .slick-slide .block .block-button body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .click-section .click-wrapper .slick-slide .block .block-button .light-bg.gform_button_select_files:hover span {
  color: #FC5088;
}

.click-section .click-wrapper .slick-slide .block .block-button .btn.ghost-light,
.click-section .click-wrapper .slick-slide .block .block-button body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files,
body .gform_wrapper.gravity-theme .click-section .click-wrapper .slick-slide .block .block-button .ghost-light.gform_button_select_files {
  background-color: transparent;
  border: 1px solid #FC5088;
}

.click-section .click-wrapper .slick-slide .block .block-button .btn.ghost-light span,
.click-section .click-wrapper .slick-slide .block .block-button body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files span,
body .gform_wrapper.gravity-theme .click-section .click-wrapper .slick-slide .block .block-button .ghost-light.gform_button_select_files span {
  color: #FC5088;
}

.click-section .click-wrapper .slick-slide .block .block-button .btn.ghost-light:after,
.click-section .click-wrapper .slick-slide .block .block-button body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:after,
body .gform_wrapper.gravity-theme .click-section .click-wrapper .slick-slide .block .block-button .ghost-light.gform_button_select_files:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.click-section .click-wrapper .slick-slide .block .block-button .btn.ghost-light:hover,
.click-section .click-wrapper .slick-slide .block .block-button body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .click-section .click-wrapper .slick-slide .block .block-button .ghost-light.gform_button_select_files:hover {
  background-color: #FC5088;
}

.click-section .click-wrapper .slick-slide .block .block-button .btn.ghost-light:hover span,
.click-section .click-wrapper .slick-slide .block .block-button body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .click-section .click-wrapper .slick-slide .block .block-button .ghost-light.gform_button_select_files:hover span {
  color: #FFF;
}

.click-section .click-wrapper .slick-slide .block .block-button .btn.ghost-light:hover:after,
.click-section .click-wrapper .slick-slide .block .block-button body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .click-section .click-wrapper .slick-slide .block .block-button .ghost-light.gform_button_select_files:hover:after {
  background-image: url(../../resources/images/svg/arrow-right.svg);
}

.click-section.background-purple {
  background-color: #3F1046;
}

.click-section.background-purple .section-title h2 {
  color: #FFF;
}

.click-section.background-purple .blocks-wrapper .block {
  background: #FFF;
}

.faq-section .row {
  -ms-flex-pack: justify;
  justify-content: space-between;
  row-gap: 30px;
}

.faq-section .content .section-title {
  padding-bottom: 20px;
  color: #3F1046;
}

.faq-section .content .section-title .colored {
  color: #FC5088;
}

.faq-section .content .section-description {
  font-size: 16px;
  color: #464646;
}

.faq-section .faqs .faq-inner {
  padding-bottom: 50px;
}

.faq-section .faqs .faq-inner .faq-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 22px;
  font-size: 18px;
  color: #3F1046;
  font-weight: 500;
  cursor: pointer;
}

.faq-section .faqs .faq-inner .faq-title:before {
  content: " ";
  width: 16px;
  height: 6px;
  background-size: 16px 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/pink-arrow-down.svg);
  transition: 0.5s ease-in-out;
}

.faq-section .faqs .faq-inner.active .faq-title:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq-section .faqs .faq-inner .faq-content {
  padding-top: 15px;
  padding-left: 38px;
  color: #464646;
}

.cta-section .container {
  max-width: 1450px;
}

.cta-section .container .cta-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid rgba(63, 16, 70, 0.05);
  border-top: 12px solid #FC5088;
  border-radius: 10px;
  box-shadow: 10px 10px 10px 5px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .cta-section .container .cta-wrapper {
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 0 0;
  }

  .cta-section .container .cta-wrapper .cta-title,
  .cta-section .container .cta-wrapper .cta-btn {
    width: 100% !important;
    height: 130px;
  }
}

.cta-section .container .cta-wrapper .cta-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 100px;
  height: 175px;
}

.cta-section .container .cta-wrapper .cta-title h2 {
  color: #3F1046;
  font-size: 30px;
  font-weight: 500;
  line-height: 55px;
}

@media (max-width: 767px) {
  .cta-section .container .cta-wrapper .cta-title h2 {
    line-height: 30px;
  }
}

@media (max-width: 1178px) {
  .cta-section .container .cta-wrapper .cta-title {
    padding-left: 50px;
  }
}

@media (max-width: 991px) {
  .cta-section .container .cta-wrapper .cta-title {
    text-align: center;
    padding: 0 10px;
  }

  .cta-section .container .cta-wrapper .cta-title h2 {
    font-size: 25px;
  }
}

.cta-section .container .cta-wrapper .cta-btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 30px 0px;
  width: 385px;
  height: 175px;
  border-radius: 119px 0px 0px 119px;
  background: rgba(252, 80, 136, 0.05);
}

.cta-section .container .cta-wrapper .cta-btn .btn,
.cta-section .container .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .gform_button_select_files,
body .gform_wrapper.gravity-theme .cta-section .container .cta-wrapper .cta-btn .gform_button_select_files {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 27px;
  color: #FFF;
  font-size: 18px;
  border-radius: 100px;
  background-color: #FC5088;
  transition: all 0.5s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.cta-section .container .cta-wrapper .cta-btn .btn span,
.cta-section .container .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .gform_button_select_files span,
body .gform_wrapper.gravity-theme .cta-section .container .cta-wrapper .cta-btn .gform_button_select_files span {
  transition: color 0.5s ease;
}

.cta-section .container .cta-wrapper .cta-btn .btn.ghost,
.cta-section .container .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .ghost.gform_button_select_files,
body .gform_wrapper.gravity-theme .cta-section .container .cta-wrapper .cta-btn .ghost.gform_button_select_files {
  background-color: transparent;
  border: 1px solid #FC5088;
}

@media (max-width: 767px) {
  .cta-section .container .cta-wrapper .cta-btn .btn,
  .cta-section .container .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .gform_button_select_files,
  body .gform_wrapper.gravity-theme .cta-section .container .cta-wrapper .cta-btn .gform_button_select_files {
    font-size: 16px;
  }
}

.cta-section .container .cta-wrapper .cta-btn .btn:hover,
.cta-section .container .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .cta-section .container .cta-wrapper .cta-btn .gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.cta-section .container .cta-wrapper .cta-btn .btn.ghost:hover,
.cta-section .container .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .ghost.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .cta-section .container .cta-wrapper .cta-btn .ghost.gform_button_select_files:hover {
  background-color: #FC5088;
}

.cta-section .container .cta-wrapper .cta-btn .btn:after,
.cta-section .container .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .gform_button_select_files:after,
body .gform_wrapper.gravity-theme .cta-section .container .cta-wrapper .cta-btn .gform_button_select_files:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right.svg);
  transition: all 0.5s ease-in-out;
}

.cta-section .container .cta-wrapper .cta-btn .btn.light-bg:hover,
.cta-section .container .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .cta-section .container .cta-wrapper .cta-btn .light-bg.gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.cta-section .container .cta-wrapper .cta-btn .btn.light-bg:hover:after,
.cta-section .container .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .cta-section .container .cta-wrapper .cta-btn .light-bg.gform_button_select_files:hover:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.cta-section .container .cta-wrapper .cta-btn .btn.light-bg:hover span,
.cta-section .container .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .cta-section .container .cta-wrapper .cta-btn .light-bg.gform_button_select_files:hover span {
  color: #FC5088;
}

.cta-section .container .cta-wrapper .cta-btn .btn.ghost-light,
.cta-section .container .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files,
body .gform_wrapper.gravity-theme .cta-section .container .cta-wrapper .cta-btn .ghost-light.gform_button_select_files {
  background-color: transparent;
  border: 1px solid #FC5088;
}

.cta-section .container .cta-wrapper .cta-btn .btn.ghost-light span,
.cta-section .container .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files span,
body .gform_wrapper.gravity-theme .cta-section .container .cta-wrapper .cta-btn .ghost-light.gform_button_select_files span {
  color: #FC5088;
}

.cta-section .container .cta-wrapper .cta-btn .btn.ghost-light:after,
.cta-section .container .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:after,
body .gform_wrapper.gravity-theme .cta-section .container .cta-wrapper .cta-btn .ghost-light.gform_button_select_files:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.cta-section .container .cta-wrapper .cta-btn .btn.ghost-light:hover,
.cta-section .container .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .cta-section .container .cta-wrapper .cta-btn .ghost-light.gform_button_select_files:hover {
  background-color: #FC5088;
}

.cta-section .container .cta-wrapper .cta-btn .btn.ghost-light:hover span,
.cta-section .container .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .cta-section .container .cta-wrapper .cta-btn .ghost-light.gform_button_select_files:hover span {
  color: #FFF;
}

.cta-section .container .cta-wrapper .cta-btn .btn.ghost-light:hover:after,
.cta-section .container .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .cta-section .container .cta-wrapper .cta-btn .ghost-light.gform_button_select_files:hover:after {
  background-image: url(../../resources/images/svg/arrow-right.svg);
}

@media (max-width: 991px) {
  .cta-section .container .cta-wrapper .cta-btn {
    border-radius: 119px;
    padding: 20px 10px;
    height: auto;
  }
}

.cta-section .container .cta-wrapper .cta-btn .btn:hover,
.cta-section .container .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .cta-section .container .cta-wrapper .cta-btn .gform_button_select_files:hover {
  color: #FC5088;
}

.cta-section .container .cta-wrapper .cta-btn .btn:hover:after,
.cta-section .container .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .cta-section .container .cta-wrapper .cta-btn .gform_button_select_files:hover:after {
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.gutenberg-cta-block {
  padding: 40px 0;
}

.gutenberg-cta-block p {
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.gutenberg-cta-block .cta-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid rgba(63, 16, 70, 0.05);
  border-top: 12px solid #FC5088;
  border-radius: 10px;
  box-shadow: 10px 10px 10px 5px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .gutenberg-cta-block .cta-wrapper {
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 0 0;
  }

  .gutenberg-cta-block .cta-wrapper .cta-title,
  .gutenberg-cta-block .cta-wrapper .cta-btn {
    width: 100% !important;
    height: 130px;
  }
}

.gutenberg-cta-block .cta-wrapper .cta-title {
  width: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 100px;
  padding-right: 50px;
  height: 175px;
}

.gutenberg-cta-block .cta-wrapper .cta-title h2 {
  color: #3F1046;
  font-size: 30px !important;
  font-weight: 500;
  line-height: 55px;
}

@media (max-width: 767px) {
  .gutenberg-cta-block .cta-wrapper .cta-title h2 {
    line-height: 30px;
  }
}

@media (max-width: 1178px) {
  .gutenberg-cta-block .cta-wrapper .cta-title {
    padding-left: 50px;
  }
}

@media (max-width: 991px) {
  .gutenberg-cta-block .cta-wrapper .cta-title {
    text-align: center;
    padding: 0 10px;
  }

  .gutenberg-cta-block .cta-wrapper .cta-title h2 {
    font-size: 25px;
  }
}

.gutenberg-cta-block .cta-wrapper .cta-btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 30px 0px;
  width: 50%;
  height: 175px;
  border-radius: 119px 0px 0px 119px;
  background: rgba(252, 80, 136, 0.05);
}

.gutenberg-cta-block .cta-wrapper .cta-btn .btn,
.gutenberg-cta-block .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .gform_button_select_files,
body .gform_wrapper.gravity-theme .gutenberg-cta-block .cta-wrapper .cta-btn .gform_button_select_files {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 27px;
  color: #FFF;
  font-size: 18px;
  border-radius: 100px;
  background-color: #FC5088;
  transition: all 0.5s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.gutenberg-cta-block .cta-wrapper .cta-btn .btn span,
.gutenberg-cta-block .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .gform_button_select_files span,
body .gform_wrapper.gravity-theme .gutenberg-cta-block .cta-wrapper .cta-btn .gform_button_select_files span {
  transition: color 0.5s ease;
}

.gutenberg-cta-block .cta-wrapper .cta-btn .btn.ghost,
.gutenberg-cta-block .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .ghost.gform_button_select_files,
body .gform_wrapper.gravity-theme .gutenberg-cta-block .cta-wrapper .cta-btn .ghost.gform_button_select_files {
  background-color: transparent;
  border: 1px solid #FC5088;
}

@media (max-width: 767px) {
  .gutenberg-cta-block .cta-wrapper .cta-btn .btn,
  .gutenberg-cta-block .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .gform_button_select_files,
  body .gform_wrapper.gravity-theme .gutenberg-cta-block .cta-wrapper .cta-btn .gform_button_select_files {
    font-size: 16px;
  }
}

.gutenberg-cta-block .cta-wrapper .cta-btn .btn:hover,
.gutenberg-cta-block .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .gutenberg-cta-block .cta-wrapper .cta-btn .gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.gutenberg-cta-block .cta-wrapper .cta-btn .btn.ghost:hover,
.gutenberg-cta-block .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .ghost.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .gutenberg-cta-block .cta-wrapper .cta-btn .ghost.gform_button_select_files:hover {
  background-color: #FC5088;
}

.gutenberg-cta-block .cta-wrapper .cta-btn .btn:after,
.gutenberg-cta-block .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .gform_button_select_files:after,
body .gform_wrapper.gravity-theme .gutenberg-cta-block .cta-wrapper .cta-btn .gform_button_select_files:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right.svg);
  transition: all 0.5s ease-in-out;
}

.gutenberg-cta-block .cta-wrapper .cta-btn .btn.light-bg:hover,
.gutenberg-cta-block .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .gutenberg-cta-block .cta-wrapper .cta-btn .light-bg.gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.gutenberg-cta-block .cta-wrapper .cta-btn .btn.light-bg:hover:after,
.gutenberg-cta-block .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .gutenberg-cta-block .cta-wrapper .cta-btn .light-bg.gform_button_select_files:hover:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.gutenberg-cta-block .cta-wrapper .cta-btn .btn.light-bg:hover span,
.gutenberg-cta-block .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .gutenberg-cta-block .cta-wrapper .cta-btn .light-bg.gform_button_select_files:hover span {
  color: #FC5088;
}

.gutenberg-cta-block .cta-wrapper .cta-btn .btn.ghost-light,
.gutenberg-cta-block .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files,
body .gform_wrapper.gravity-theme .gutenberg-cta-block .cta-wrapper .cta-btn .ghost-light.gform_button_select_files {
  background-color: transparent;
  border: 1px solid #FC5088;
}

.gutenberg-cta-block .cta-wrapper .cta-btn .btn.ghost-light span,
.gutenberg-cta-block .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files span,
body .gform_wrapper.gravity-theme .gutenberg-cta-block .cta-wrapper .cta-btn .ghost-light.gform_button_select_files span {
  color: #FC5088;
}

.gutenberg-cta-block .cta-wrapper .cta-btn .btn.ghost-light:after,
.gutenberg-cta-block .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:after,
body .gform_wrapper.gravity-theme .gutenberg-cta-block .cta-wrapper .cta-btn .ghost-light.gform_button_select_files:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.gutenberg-cta-block .cta-wrapper .cta-btn .btn.ghost-light:hover,
.gutenberg-cta-block .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .gutenberg-cta-block .cta-wrapper .cta-btn .ghost-light.gform_button_select_files:hover {
  background-color: #FC5088;
}

.gutenberg-cta-block .cta-wrapper .cta-btn .btn.ghost-light:hover span,
.gutenberg-cta-block .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .gutenberg-cta-block .cta-wrapper .cta-btn .ghost-light.gform_button_select_files:hover span {
  color: #FFF;
}

.gutenberg-cta-block .cta-wrapper .cta-btn .btn.ghost-light:hover:after,
.gutenberg-cta-block .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .gutenberg-cta-block .cta-wrapper .cta-btn .ghost-light.gform_button_select_files:hover:after {
  background-image: url(../../resources/images/svg/arrow-right.svg);
}

@media (max-width: 991px) {
  .gutenberg-cta-block .cta-wrapper .cta-btn {
    border-radius: 119px;
    padding: 20px 10px;
    height: auto;
  }
}

.gutenberg-cta-block .cta-wrapper .cta-btn .btn:hover,
.gutenberg-cta-block .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .gutenberg-cta-block .cta-wrapper .cta-btn .gform_button_select_files:hover {
  color: #FC5088;
}

.gutenberg-cta-block .cta-wrapper .cta-btn .btn:hover:after,
.gutenberg-cta-block .cta-wrapper .cta-btn body .gform_wrapper.gravity-theme .gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .gutenberg-cta-block .cta-wrapper .cta-btn .gform_button_select_files:hover:after {
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.default-text-section .section-title {
  margin-bottom: 25px;
  font-size: 45px;
  color: #3F1046;
  font-weight: 500;
}

.default-text-section .content-column {
  margin-bottom: 30px;
}

.default-text-section .content-column .content-wrapper {
  font-size: 16px;
  color: #464646;
}

.default-text-section .content-column .btn,
.default-text-section .content-column body .gform_wrapper.gravity-theme .gform_button_select_files,
body .gform_wrapper.gravity-theme .default-text-section .content-column .gform_button_select_files {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 27px;
  color: #FFF;
  font-size: 18px;
  border-radius: 100px;
  background-color: #FC5088;
  transition: all 0.5s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.default-text-section .content-column .btn span,
.default-text-section .content-column body .gform_wrapper.gravity-theme .gform_button_select_files span,
body .gform_wrapper.gravity-theme .default-text-section .content-column .gform_button_select_files span {
  transition: color 0.5s ease;
}

.default-text-section .content-column .btn.ghost,
.default-text-section .content-column body .gform_wrapper.gravity-theme .ghost.gform_button_select_files,
body .gform_wrapper.gravity-theme .default-text-section .content-column .ghost.gform_button_select_files {
  background-color: transparent;
  border: 1px solid #FC5088;
}

@media (max-width: 767px) {
  .default-text-section .content-column .btn,
  .default-text-section .content-column body .gform_wrapper.gravity-theme .gform_button_select_files,
  body .gform_wrapper.gravity-theme .default-text-section .content-column .gform_button_select_files {
    font-size: 16px;
  }
}

.default-text-section .content-column .btn:hover,
.default-text-section .content-column body .gform_wrapper.gravity-theme .gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .default-text-section .content-column .gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.default-text-section .content-column .btn.ghost:hover,
.default-text-section .content-column body .gform_wrapper.gravity-theme .ghost.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .default-text-section .content-column .ghost.gform_button_select_files:hover {
  background-color: #FC5088;
}

.default-text-section .content-column .btn:after,
.default-text-section .content-column body .gform_wrapper.gravity-theme .gform_button_select_files:after,
body .gform_wrapper.gravity-theme .default-text-section .content-column .gform_button_select_files:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right.svg);
  transition: all 0.5s ease-in-out;
}

.default-text-section .content-column .btn.light-bg:hover,
.default-text-section .content-column body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .default-text-section .content-column .light-bg.gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.default-text-section .content-column .btn.light-bg:hover:after,
.default-text-section .content-column body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .default-text-section .content-column .light-bg.gform_button_select_files:hover:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.default-text-section .content-column .btn.light-bg:hover span,
.default-text-section .content-column body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .default-text-section .content-column .light-bg.gform_button_select_files:hover span {
  color: #FC5088;
}

.default-text-section .content-column .btn.ghost-light,
.default-text-section .content-column body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files,
body .gform_wrapper.gravity-theme .default-text-section .content-column .ghost-light.gform_button_select_files {
  background-color: transparent;
  border: 1px solid #FC5088;
}

.default-text-section .content-column .btn.ghost-light span,
.default-text-section .content-column body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files span,
body .gform_wrapper.gravity-theme .default-text-section .content-column .ghost-light.gform_button_select_files span {
  color: #FC5088;
}

.default-text-section .content-column .btn.ghost-light:after,
.default-text-section .content-column body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:after,
body .gform_wrapper.gravity-theme .default-text-section .content-column .ghost-light.gform_button_select_files:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.default-text-section .content-column .btn.ghost-light:hover,
.default-text-section .content-column body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .default-text-section .content-column .ghost-light.gform_button_select_files:hover {
  background-color: #FC5088;
}

.default-text-section .content-column .btn.ghost-light:hover span,
.default-text-section .content-column body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .default-text-section .content-column .ghost-light.gform_button_select_files:hover span {
  color: #FFF;
}

.default-text-section .content-column .btn.ghost-light:hover:after,
.default-text-section .content-column body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .default-text-section .content-column .ghost-light.gform_button_select_files:hover:after {
  background-image: url(../../resources/images/svg/arrow-right.svg);
}

.default-text-section .content-column .btn,
.default-text-section .content-column body .gform_wrapper.gravity-theme .gform_button_select_files,
body .gform_wrapper.gravity-theme .default-text-section .content-column .gform_button_select_files {
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.default-text-section .content-column .btn span,
.default-text-section .content-column body .gform_wrapper.gravity-theme .gform_button_select_files span,
body .gform_wrapper.gravity-theme .default-text-section .content-column .gform_button_select_files span {
  margin-bottom: 0;
}

.default-text-section .content-column .btn.short-code:hover,
.default-text-section .content-column body .gform_wrapper.gravity-theme .short-code.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .default-text-section .content-column .short-code.gform_button_select_files:hover {
  color: #FC5088;
}

.default-text-section .content-column .btn.short-code:hover:after,
.default-text-section .content-column body .gform_wrapper.gravity-theme .short-code.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .default-text-section .content-column .short-code.gform_button_select_files:hover:after {
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.default-text-section .align-left {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.default-text-section .align-right {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.default-text-section .align-center {
  -ms-flex-pack: center;
  justify-content: center;
}

.form-section {
  background: rgba(252, 80, 136, 0.05);
}

.form-section .section-title {
  padding-bottom: 40px;
  color: #3F1046;
}

.form-section .form .gform_heading {
  display: none;
}

@media (max-width: 991px) {
  body .gform_wrapper.gravity-theme .gfield:not(.gfield--width-full) {
    grid-column: 1/-1;
  }
}

body .gform_wrapper.gravity-theme .gform_fields {
  grid-column-gap: 38px;
  grid-row-gap: 26px;
}

@media (max-width: 767px) {
  body .gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: 0;
  }
}

body .gform_wrapper.gravity-theme input[type=color],
body .gform_wrapper.gravity-theme input[type=date],
body .gform_wrapper.gravity-theme input[type=datetime-local],
body .gform_wrapper.gravity-theme input[type=datetime],
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=month],
body .gform_wrapper.gravity-theme input[type=number],
body .gform_wrapper.gravity-theme input[type=password],
body .gform_wrapper.gravity-theme input[type=search],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=time],
body .gform_wrapper.gravity-theme input[type=url],
body .gform_wrapper.gravity-theme input[type=week],
body .gform_wrapper.gravity-theme select,
body .gform_wrapper.gravity-theme textarea {
  background-color: #fff;
  border-radius: 10px;
  border: 0.3px solid rgba(151, 151, 151, 0.3);
  color: #464646;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  padding: 9px 24px;
}

body .gform_wrapper.gravity-theme .gfield_required_asterisk {
  color: #F01C1C;
  font-size: 14px;
}

body .gform_wrapper.gravity-theme .gfield_label {
  color: #464646;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 11px;
}

body .gform_wrapper.gravity-theme .gfield select {
  background-image: url(../../resources/images/svg/icon-chevron-down.svg);
  background-position: calc(100% - 24px) 50%;
  background-repeat: no-repeat;
  background-size: 14px 10px;
  padding-right: 64px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

body .gform_wrapper.gravity-theme .ginput_container_date input {
  width: 100%;
  background-position: calc(100% - 24px) 50%;
  background-repeat: no-repeat;
  background-size: 15px 16px;
  padding-right: 54px;
}

body .gform_wrapper.gravity-theme .ginput_complex label,
body .gform_wrapper.gravity-theme .ginput_complex legend {
  font-size: 14px;
  line-height: 1;
}

body .gform_wrapper.gravity-theme .ginput_complex .ginput_container_date {
  -ms-flex-preferred-size: fit-content;
  flex-basis: fit-content;
}

body .gform_wrapper.gravity-theme .ginput_complex .ginput_container_date select {
  background-position: calc(100% - 18px) 50%;
}

body .gform_wrapper.gravity-theme .ginput_container_textarea {
  position: relative;
}

body .gform_wrapper.gravity-theme .ginput_container_textarea textarea {
  display: block;
  padding-bottom: 45px;
}

body .gform_wrapper.gravity-theme .ginput_container_textarea .ginput_counter {
  position: absolute;
  bottom: 19px;
  right: 19px;
  color: #464646;
  font-size: 12px;
  font-weight: 500;
  text-align: right;
}

body .gform_wrapper.gravity-theme .gfield_checkbox,
body .gform_wrapper.gravity-theme .gfield_radio {
  margin: 0;
}

body .gform_wrapper.gravity-theme .gfield_checkbox .gchoice,
body .gform_wrapper.gravity-theme .gfield_radio .gchoice {
  overflow: visible;
}

body .gform_wrapper.gravity-theme .gfield_checkbox .gchoice input[type=radio] + label:before,
body .gform_wrapper.gravity-theme .gfield_radio .gchoice input[type=radio] + label:before {
  border-radius: 50%;
}

body .gform_wrapper.gravity-theme .gfield_checkbox .gchoice input[type=checkbox],
body .gform_wrapper.gravity-theme .gfield_checkbox .gchoice input[type=radio],
body .gform_wrapper.gravity-theme .gfield_radio .gchoice input[type=checkbox],
body .gform_wrapper.gravity-theme .gfield_radio .gchoice input[type=radio] {
  display: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

body .gform_wrapper.gravity-theme .gfield_checkbox .gchoice label,
body .gform_wrapper.gravity-theme .gfield_radio .gchoice label {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 30px;
  color: #464646;
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  padding-left: 40px;
  cursor: pointer;
}

body .gform_wrapper.gravity-theme .gfield_checkbox .gchoice label:before,
body .gform_wrapper.gravity-theme .gfield_radio .gchoice label:before {
  content: "";
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 3px;
  left: 0;
  width: 25px;
  height: 25px;
  background-color: transparent;
  border-radius: 4px;
  border: 2px solid #3F1046;
}

body .gform_wrapper.gravity-theme .gfield_checkbox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-row-gap: 20px;
}

body .gform_wrapper.gravity-theme .gfield_checkbox .gchoice input[type=checkbox]:checked + label:before {
  background-color: #3F1046;
}

body .gform_wrapper.gravity-theme .gfield_radio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-row-gap: 20px;
}

body .gform_wrapper.gravity-theme .gfield_radio .gchoice input[type=radio]:checked + label:before {
  background-color: #3F1046;
  box-shadow: inset 0px 0px 0px 3px #fff;
}

body .gform_wrapper.gravity-theme .ginput_container_consent input[type=checkbox] {
  display: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

body .gform_wrapper.gravity-theme .ginput_container_consent input[type=checkbox] + label {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 500;
}

body .gform_wrapper.gravity-theme .ginput_container_consent input[type=checkbox] + label .checkbox {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 0;
  border: 1px solid #e8e8ef;
}

body .gform_wrapper.gravity-theme .ginput_container_consent input[type=checkbox]:checked + label .checkbox:before {
  content: "";
  margin: auto;
  width: 10px;
  height: 8px;
  background-size: 10px 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-check.svg);
}

body .gform_wrapper.gravity-theme .gform_drop_area {
  border: 1px solid #f1f1f1;
  background-color: #fff;
}

body .gform_wrapper.gravity-theme .gform_footer,
body .gform_wrapper.gravity-theme .gform_page_footer {
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 0;
}

body .gform_wrapper.gravity-theme .gform_footer button,
body .gform_wrapper.gravity-theme .gform_footer input,
body .gform_wrapper.gravity-theme .gform_page_footer button,
body .gform_wrapper.gravity-theme .gform_page_footer input {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 27px;
  color: #FFF;
  font-size: 18px;
  border-radius: 100px;
  background-color: #FC5088;
  border: 1px solid #FC5088;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 767px) {
  body .gform_wrapper.gravity-theme .gform_footer button,
  body .gform_wrapper.gravity-theme .gform_footer input,
  body .gform_wrapper.gravity-theme .gform_page_footer button,
  body .gform_wrapper.gravity-theme .gform_page_footer input {
    font-size: 16px;
  }
}

body .gform_wrapper.gravity-theme .gform_footer button:hover,
body .gform_wrapper.gravity-theme .gform_footer input:hover,
body .gform_wrapper.gravity-theme .gform_page_footer button:hover,
body .gform_wrapper.gravity-theme .gform_page_footer input:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
  color: #FC5088;
}

body .gform_wrapper.gravity-theme .gform_footer button:after,
body .gform_wrapper.gravity-theme .gform_footer input:after,
body .gform_wrapper.gravity-theme .gform_page_footer button:after,
body .gform_wrapper.gravity-theme .gform_page_footer input:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right.svg);
}

body .gform_wrapper.gravity-theme .gfield_error.gfield_contains_required .gfield_label {
  color: #F01C1C;
}

body .gform_wrapper.gravity-theme .gfield_error.gfield_contains_required input {
  background-image: url(../../resources/images/svg/icon-close-red.svg);
  background-position: calc(100% - 24px) 50%;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  border-color: #F01C1C;
  background-color: #FDDDDD;
  padding-right: 64px;
}

body .gform_wrapper.gravity-theme .gfield_error.gfield_contains_required textarea {
  border-color: #DB0000;
}

body .gform_wrapper.gravity-theme .gfield_error.gfield_contains_required select {
  border-color: #DB0000;
}

body .gform_wrapper.gravity-theme.gform_validation_error .gfield:not(.gfield_error) input:not([value=""]):not([type=file]) {
  border-radius: 10px;
  border: 1px solid #20D452;
  background-color: #DEF9E5;
  background-image: url(../../resources/images/svg/icon-check-green.svg);
  background-position: calc(100% - 24px) 50%;
  background-repeat: no-repeat;
  background-size: 14px 10px;
}

body .gform_wrapper.gravity-theme.gform_validation_error .gfield:not(.gfield_error) textarea:not(:empty) {
  border-color: #28a745;
}

body .gform_wrapper.gravity-theme.gform_validation_error .gfield:not(.gfield_error) select:not(.no-value) {
  border-color: #28a745;
}

body .gform_wrapper.gravity-theme .gform_validation_errors {
  background-color: #FDDDDD;
  border: 1px solid #F01C1C;
  border-radius: 10px;
  box-shadow: none;
  padding: 23px 27px 23px 50px;
  margin: 0 0 25px;
}

body .gform_wrapper.gravity-theme .gform_validation_errors h2 {
  color: #F01C1C;
  font-size: 14px;
  font-weight: 500;
}

body .gform_wrapper.gravity-theme .gform_validation_errors .gform-icon--close {
  display: none !important;
}

body .gform_wrapper.gravity-theme .gform_validation_errors ol li {
  color: #ff1717;
}

body .gform_wrapper.gravity-theme .gform_validation_errors ol li a {
  color: inherit;
}

body .gform_wrapper.gravity-theme .gfield_validation_message,
body .gform_wrapper.gravity-theme .validation_message {
  background-color: transparent;
  border: none;
  color: #DB0000;
  font-size: 14px !important;
  font-weight: 500;
  padding: 0 !important;
}

.review-section h2.section-title {
  color: #3F1046;
  text-align: center;
  padding-bottom: 40px;
}

.review-section .colored {
  color: #FC5088;
}

.review-section .slider-holder .review-slider {
  text-align: center;
}

.review-section .slider-holder .review-slider .slick-slide {
  display: grid;
  place-content: center;
}

.review-section .slider-holder .review-slider .review-content {
  max-width: 900px;
  padding-bottom: 24px;
  font-size: 22px;
  color: #464646;
}

@media (max-width: 950px) {
  .review-section .slider-holder .review-slider .review-content {
    max-width: 550px;
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .review-section .slider-holder .review-slider .review-content {
    max-width: 350px;
    font-size: 18px;
  }
}

@media (max-width: 440px) {
  .review-section .slider-holder .review-slider .review-content {
    max-width: 300px;
  }
}

.review-section .slider-holder .review-slider .reviewer_info {
  padding: 24px 0;
  position: relative;
}

.review-section .slider-holder .review-slider .reviewer_info:before {
  position: absolute;
  content: "";
  width: 25px;
  height: 3px;
  border-radius: 5px;
  margin: 0 auto;
  top: 0;
  left: 0;
  right: 0;
  background-color: #FC5088;
}

.review-section .slider-holder .review-slider .reviewer_info .reviewer_image {
  margin-right: 12px;
}

.review-section .slider-holder .review-slider .reviewer_info .reviewer_image img {
  border-radius: 50%;
  width: 56px;
  height: 56px;
}

.review-section .slider-holder .review-slider .reviewer_info .reviewer_details {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: #464646;
}

.review-section .slider-holder .review-slider .reviewer_info .reviewer_details .review-name {
  font-size: 20px;
  line-height: 24px;
  color: #3F1046;
  font-weight: 700;
  margin-bottom: 0;
}

.review-section .slider-holder .review-slider .reviewer_info .reviewer_details .custom-details {
  font-weight: 400;
}

.review-section .slider-col {
  position: relative;
}

.review-section .slider-col .slider-nav-holder .slick-arrow {
  position: absolute;
  z-index: 5;
  top: calc(50% - 25px);
  display: grid;
  place-content: center center;
  width: 50px;
  height: 50px;
  background-color: #FC5088;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

@media (max-width: 600px) {
  .review-section .slider-col .slider-nav-holder .slick-arrow {
    top: calc(50% - 18px);
    width: 36px;
    height: 36px;
  }
}

.review-section .slider-col .slider-nav-holder .slick-arrow:after {
  display: block;
  content: "";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right.svg);
  transition: all 0.5s;
}

.review-section .slider-col .slider-nav-holder .slick-arrow:hover:after {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

.review-section .slider-col .slider-nav-holder .slick-arrow.slick-prev {
  left: 0;
}

@media (max-width: 1180px) {
  .review-section .slider-col .slider-nav-holder .slick-arrow.slick-prev {
    left: -25px;
  }
}

@media (max-width: 600px) {
  .review-section .slider-col .slider-nav-holder .slick-arrow.slick-prev {
    left: 0;
  }
}

.review-section .slider-col .slider-nav-holder .slick-arrow.slick-prev:after {
  rotate: 180deg;
}

.review-section .slider-col .slider-nav-holder .slick-arrow.slick-next {
  right: 0;
}

@media (max-width: 1180px) {
  .review-section .slider-col .slider-nav-holder .slick-arrow.slick-next {
    right: -25px;
  }
}

@media (max-width: 600px) {
  .review-section .slider-col .slider-nav-holder .slick-arrow.slick-next {
    right: 0;
  }
}

.video-section .content-inner {
  padding-bottom: 35px;
}

.video-section .content-inner .section-title {
  color: #3F1046;
  text-align: center;
}

.video-section .image-wrapper {
  position: relative;
  font-size: 0;
  margin: auto;
}

.video-section .image-wrapper img {
  position: relative;
  border-radius: 15px;
  z-index: 2;
}

.video-section .image-wrapper .open-fancy {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-content: center center;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: rgba(63, 16, 70, 0.65);
  border-radius: 15px;
}

.video-section .image-wrapper .open-fancy:after {
  display: block;
  content: "";
  height: 76px;
  width: 76px;
  background-image: url(../../resources/images/svg/play-button.svg);
}

.video-section .image-wrapper .open-fancy:hover:after {
  opacity: 0.9;
}

.video-section .image-wrapper {
  max-height: 490px;
  display: grid;
  place-content: center center;
  overflow: hidden;
}

.video-section .image-wrapper img {
  max-height: 490px;
  -o-object-fit: cover;
  object-fit: cover;
}

.video-section .image-wrapper .open-fancy:after {
  display: block;
  content: "";
  height: 409px;
  width: 408px;
  background-image: url(../../resources/images/png/btnplay.png);
}

@media (max-width: 1150px) {
  .video-section .image-wrapper .open-fancy:after {
    height: 300px;
    width: 300px;
    background-size: contain;
  }
}

@media (max-width: 767px) {
  .video-section .image-wrapper .open-fancy:after {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 500px) {
  .video-section .image-wrapper .open-fancy:after {
    width: 150px;
    height: 150px;
  }
}

.block-section .section-title {
  text-align: center;
  color: #3F1046;
  padding-bottom: 50px;
}

.block-section .blocks-wrapper {
  display: grid;
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
}

@media (max-width: 550px) {
  .block-section .blocks-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}

.block-section .blocks-wrapper .block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  background: rgba(252, 80, 136, 0.05);
  padding: 0 40px 40px;
  text-align: center;
}

@media (max-width: 750px) {
  .block-section .blocks-wrapper .block {
    padding: 0 20px 20px;
  }
}

.block-section .blocks-wrapper .block img {
  max-height: 70px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-top: -40px;
}

.block-section .blocks-wrapper .block .block-title {
  font-size: 50px;
  font-weight: 700;
  color: #3F1046;
}

@media (max-width: 975px) {
  .block-section .blocks-wrapper .block .block-title {
    font-size: 40px;
  }
}

.block-section .blocks-wrapper .block .block-description p {
  font-size: 22px;
  color: #464646;
  margin: 0;
}

.ups-section .section-title {
  text-align: center;
  color: #3F1046;
  padding-bottom: 60px;
}

.ups-section .section-title.color-pink {
  color: #FC5088;
}

.ups-section .section-description {
  margin-bottom: 30px;
}

.ups-section .ups-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 30px;
}

.ups-section .ups-wrapper .ups-block {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 70px 60px minmax(90px, 1fr);
  justify-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  width: 22%;
}

.ups-section .ups-wrapper .ups-block.rows-1 {
  grid-template-rows: 1fr;
}

.ups-section .ups-wrapper .ups-block.rows-1 img {
  max-height: 200px;
}

.ups-section .ups-wrapper .ups-block.rows-2 {
  grid-template-rows: 70px minmax(60px, 1fr);
}

.ups-section .ups-wrapper .ups-block img {
  max-height: 70px;
  -o-object-fit: cover;
  object-fit: cover;
}

.ups-section .ups-wrapper .ups-block .ups-title {
  font-size: 25px;
  font-weight: 700;
  color: #3F1046;
}

.ups-section .ups-wrapper .ups-block .ups-description {
  font-size: 18px;
  color: #464646;
}

@media (max-width: 985px) {
  .ups-section .ups-wrapper .ups-block {
    width: 32%;
  }
}

@media (max-width: 757px) {
  .ups-section .ups-wrapper .ups-block {
    width: 45%;
  }
}

@media (max-width: 500px) {
  .ups-section .ups-wrapper .ups-block {
    width: 100%;
  }
}

.ups-section .ups-wrapper.count-6 .ups-block,
.ups-section .ups-wrapper.count-9 .ups-block {
  width: 33%;
}

@media (max-width: 985px) {
  .ups-section .ups-wrapper.count-6 .ups-block,
  .ups-section .ups-wrapper.count-9 .ups-block {
    width: 32%;
  }
}

@media (max-width: 757px) {
  .ups-section .ups-wrapper.count-6 .ups-block,
  .ups-section .ups-wrapper.count-9 .ups-block {
    width: 45%;
  }
}

@media (max-width: 500px) {
  .ups-section .ups-wrapper.count-6 .ups-block,
  .ups-section .ups-wrapper.count-9 .ups-block {
    width: 100%;
  }
}

.ups-section .button {
  display: grid;
  place-content: center center;
  padding-top: 40px;
}

.ups-section .button .ups-button .btn,
.ups-section .button .ups-button body .gform_wrapper.gravity-theme .gform_button_select_files,
body .gform_wrapper.gravity-theme .ups-section .button .ups-button .gform_button_select_files {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 27px;
  color: #FFF;
  font-size: 18px;
  border-radius: 100px;
  background-color: #FC5088;
  transition: all 0.5s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.ups-section .button .ups-button .btn span,
.ups-section .button .ups-button body .gform_wrapper.gravity-theme .gform_button_select_files span,
body .gform_wrapper.gravity-theme .ups-section .button .ups-button .gform_button_select_files span {
  transition: color 0.5s ease;
}

.ups-section .button .ups-button .btn.ghost,
.ups-section .button .ups-button body .gform_wrapper.gravity-theme .ghost.gform_button_select_files,
body .gform_wrapper.gravity-theme .ups-section .button .ups-button .ghost.gform_button_select_files {
  background-color: transparent;
  border: 1px solid #FC5088;
}

@media (max-width: 767px) {
  .ups-section .button .ups-button .btn,
  .ups-section .button .ups-button body .gform_wrapper.gravity-theme .gform_button_select_files,
  body .gform_wrapper.gravity-theme .ups-section .button .ups-button .gform_button_select_files {
    font-size: 16px;
  }
}

.ups-section .button .ups-button .btn:hover,
.ups-section .button .ups-button body .gform_wrapper.gravity-theme .gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .ups-section .button .ups-button .gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.ups-section .button .ups-button .btn.ghost:hover,
.ups-section .button .ups-button body .gform_wrapper.gravity-theme .ghost.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .ups-section .button .ups-button .ghost.gform_button_select_files:hover {
  background-color: #FC5088;
}

.ups-section .button .ups-button .btn:after,
.ups-section .button .ups-button body .gform_wrapper.gravity-theme .gform_button_select_files:after,
body .gform_wrapper.gravity-theme .ups-section .button .ups-button .gform_button_select_files:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right.svg);
  transition: all 0.5s ease-in-out;
}

.ups-section .button .ups-button .btn.light-bg:hover,
.ups-section .button .ups-button body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .ups-section .button .ups-button .light-bg.gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.ups-section .button .ups-button .btn.light-bg:hover:after,
.ups-section .button .ups-button body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .ups-section .button .ups-button .light-bg.gform_button_select_files:hover:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.ups-section .button .ups-button .btn.light-bg:hover span,
.ups-section .button .ups-button body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .ups-section .button .ups-button .light-bg.gform_button_select_files:hover span {
  color: #FC5088;
}

.ups-section .button .ups-button .btn.ghost-light,
.ups-section .button .ups-button body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files,
body .gform_wrapper.gravity-theme .ups-section .button .ups-button .ghost-light.gform_button_select_files {
  background-color: transparent;
  border: 1px solid #FC5088;
}

.ups-section .button .ups-button .btn.ghost-light span,
.ups-section .button .ups-button body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files span,
body .gform_wrapper.gravity-theme .ups-section .button .ups-button .ghost-light.gform_button_select_files span {
  color: #FC5088;
}

.ups-section .button .ups-button .btn.ghost-light:after,
.ups-section .button .ups-button body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:after,
body .gform_wrapper.gravity-theme .ups-section .button .ups-button .ghost-light.gform_button_select_files:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.ups-section .button .ups-button .btn.ghost-light:hover,
.ups-section .button .ups-button body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .ups-section .button .ups-button .ghost-light.gform_button_select_files:hover {
  background-color: #FC5088;
}

.ups-section .button .ups-button .btn.ghost-light:hover span,
.ups-section .button .ups-button body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .ups-section .button .ups-button .ghost-light.gform_button_select_files:hover span {
  color: #FFF;
}

.ups-section .button .ups-button .btn.ghost-light:hover:after,
.ups-section .button .ups-button body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .ups-section .button .ups-button .ghost-light.gform_button_select_files:hover:after {
  background-image: url(../../resources/images/svg/arrow-right.svg);
}

.ups-section .button .ups-button .btn:hover,
.ups-section .button .ups-button body .gform_wrapper.gravity-theme .gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .ups-section .button .ups-button .gform_button_select_files:hover {
  color: #FC5088;
}

.ups-section .button .ups-button .btn:hover:after,
.ups-section .button .ups-button body .gform_wrapper.gravity-theme .gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .ups-section .button .ups-button .gform_button_select_files:hover:after {
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.price-section {
  background-color: #3F1046;
}

.price-section .price-elipse {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-image: url(../../resources/images/svg/price-elipse.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.price-section .section-title {
  text-align: center;
  color: #FFF;
  padding-bottom: 100px;
}

.price-section .price-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30%, 2fr));
  grid-gap: 30px;
}

@media (max-width: 992px) {
  .price-section .price-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
  }
}

@media (max-width: 750px) {
  .price-section .price-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}

.price-section .price-wrapper .price-block {
  display: grid;
  grid-template-rows: 250px 1fr;
}

.price-section .price-wrapper .price-block.image {
  display: block;
  text-align: center;
  grid-column: 1/span 2;
}

@media (max-width: 750px) {
  .price-section .price-wrapper .price-block.image {
    grid-column: 1;
  }
}

.price-section .price-wrapper .price-block .price-block-top {
  display: grid;
  place-content: center center;
  text-align: center;
  grid-gap: 20px;
  padding: 30px;
  border-radius: 10px;
  background: #1A041E;
}

.price-section .price-wrapper .price-block .price-block-top .price-title {
  color: #FFF;
  text-align: center;
  font-size: 38px;
  font-weight: 700;
}

.price-section .price-wrapper .price-block .price-block-top .price-description {
  text-align: center;
}

.price-section .price-wrapper .price-block .price-block-top .price-description p {
  font-family: "Ubuntu", sans-serif;
  font-size: 25px;
  font-weight: 400;
  color: #FFF;
}

.price-section .price-wrapper .price-block .price-block-bottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 5px solid #1A041E;
  border-radius: 0 0 10px 10px;
  background-color: #FFF;
  padding: 35px;
}

.price-section .price-wrapper .price-block .price-block-bottom .content-wrapper .price-block-content {
  font-size: 16px;
  padding-bottom: 5px;
  margin-bottom: 0;
}

.price-section .price-wrapper .price-block .price-block-bottom .content-wrapper .price-block-content p {
  color: #1A041E;
}

.price-section .price-wrapper .price-block .price-block-bottom .content-wrapper .price-block-content h4 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 5px;
}

.price-section .price-wrapper .price-block .price-block-bottom .content-wrapper .price-block-content .bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}

.price-section .price-wrapper .price-block .price-block-bottom .content-wrapper .price-block-content .bullets .bullet {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #1A041E;
  margin-bottom: 0;
}

.price-section .price-wrapper .price-block .price-block-bottom .content-wrapper .price-block-content .bullets .bullet .tick {
  height: 12px;
  width: 15%;
  background-repeat: no-repeat;
  background-image: url(../../resources/images/svg/pink-tick.svg);
  margin-bottom: 10px;
}

.price-section .price-wrapper .price-block .price-block-bottom .content-wrapper .price-block-content .bullets .bullet .text {
  width: 85%;
  margin-bottom: 10px;
}

.price-section .price-wrapper .price-block .price-block-bottom .buttons-wrapper {
  -ms-flex-pack: center;
  justify-content: center;
}

.price-section .price-wrapper .price-block .price-block-bottom .buttons-wrapper .btn,
.price-section .price-wrapper .price-block .price-block-bottom .buttons-wrapper body .gform_wrapper.gravity-theme .gform_button_select_files,
body .gform_wrapper.gravity-theme .price-section .price-wrapper .price-block .price-block-bottom .buttons-wrapper .gform_button_select_files {
  width: auto;
  height: auto;
  padding: 15px 30px;
}

.price-section .price-wrapper .price-block .price-block-bottom .buttons-wrapper .btn:hover,
.price-section .price-wrapper .price-block .price-block-bottom .buttons-wrapper body .gform_wrapper.gravity-theme .gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .price-section .price-wrapper .price-block .price-block-bottom .buttons-wrapper .gform_button_select_files:hover {
  color: #FC5088;
}

.price-section .price-wrapper .price-block .price-block-bottom .buttons-wrapper .btn.ghost,
.price-section .price-wrapper .price-block .price-block-bottom .buttons-wrapper body .gform_wrapper.gravity-theme .ghost.gform_button_select_files,
body .gform_wrapper.gravity-theme .price-section .price-wrapper .price-block .price-block-bottom .buttons-wrapper .ghost.gform_button_select_files {
  color: #FC5088;
}

.price-section .price-wrapper .price-block .price-block-bottom .buttons-wrapper .btn.ghost:hover,
.price-section .price-wrapper .price-block .price-block-bottom .buttons-wrapper body .gform_wrapper.gravity-theme .ghost.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .price-section .price-wrapper .price-block .price-block-bottom .buttons-wrapper .ghost.gform_button_select_files:hover {
  color: #FFF;
}

.price-section .price-wrapper .price-block .price-block-bottom .buttons-wrapper .btn:after,
.price-section .price-wrapper .price-block .price-block-bottom .buttons-wrapper body .gform_wrapper.gravity-theme .gform_button_select_files:after,
body .gform_wrapper.gravity-theme .price-section .price-wrapper .price-block .price-block-bottom .buttons-wrapper .gform_button_select_files:after {
  content: none;
}

.seo-tab-section .section-title {
  text-align: center;
  color: #3F1046;
  padding-bottom: 50px;
}

.seo-tab-section .seo-tab {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(252, 80, 136, 0.05);
  margin-bottom: 20px;
  transition: all 0.5s;
}

.seo-tab-section .seo-tab .toggle-btn {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  cursor: pointer;
}

.seo-tab-section .seo-tab .toggle-btn:after {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  top: 27px;
  right: 27px;
  display: block;
  content: "";
  height: 21px;
  width: 21px;
  background-image: url(../../resources/images/svg/plus-pink.svg);
  transition: all 0.5s;
}

@media (max-width: 900px) {
  .seo-tab-section .seo-tab .toggle-btn:after {
    right: 10px;
  }
}

.seo-tab-section .seo-tab .seo-opener {
  width: 100%;
  text-align: left;
}

.seo-tab-section .seo-tab .seo-opener .tab-title {
  padding: 25px 50px 25px 25px;
}

.seo-tab-section .seo-tab .tab-title {
  font-size: 18px;
  font-weight: 500;
  color: #3F1046;
}

.seo-tab-section .seo-tab .seo-content {
  display: -ms-flexbox;
  display: flex;
  padding-left: 25px;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 970px) {
  .seo-tab-section .seo-tab .seo-content {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.seo-tab-section .seo-tab .seo-content.no-img {
  padding-right: 25px;
}

.seo-tab-section .seo-tab .seo-content.no-img .seo-text {
  width: 100%;
}

.seo-tab-section .seo-tab .seo-content .seo-text {
  width: 47%;
  padding-top: 25px;
}

@media (max-width: 970px) {
  .seo-tab-section .seo-tab .seo-content .seo-text {
    width: 100%;
  }
}

.seo-tab-section .seo-tab .seo-content .seo-text .tab-title {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .seo-tab-section .seo-tab .seo-content .seo-text .tab-title {
    padding-right: 50px;
  }
}

.seo-tab-section .seo-tab .seo-content .seo-text .tab-description {
  font-size: 15px;
  color: #464646;
  font-weight: 400;
  padding: 20px 0;
}

.seo-tab-section .seo-tab .seo-content .seo-text .tab-description p {
  margin-bottom: 20px;
}

.seo-tab-section .seo-tab .seo-content .seo-text .tab-description p:last-child {
  margin-bottom: 0;
}

.seo-tab-section .seo-tab .seo-content.no-img {
  width: 100%;
}

.seo-tab-section .seo-tab .seo-content.no-img .seo-text {
  width: 100%;
}

.seo-tab-section .seo-tab .seo-content .seo-img {
  width: 50%;
}

@media (max-width: 970px) {
  .seo-tab-section .seo-tab .seo-content .seo-img {
    text-align: center;
    width: 100%;
  }
}

.seo-tab-section .seo-tab .seo-content .seo-img .image-wrapper img {
  border-radius: 10px;
}

.seo-tab-section .seo-tab .seo-content .seo-img .image-wrapper {
  position: relative;
  font-size: 0;
  margin: auto;
}

.seo-tab-section .seo-tab .seo-content .seo-img .image-wrapper img {
  position: relative;
  border-radius: 15px;
  z-index: 2;
}

.seo-tab-section .seo-tab .seo-content .seo-img .image-wrapper .open-fancy {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-content: center center;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: rgba(63, 16, 70, 0.65);
  border-radius: 15px;
}

.seo-tab-section .seo-tab .seo-content .seo-img .image-wrapper .open-fancy:after {
  display: block;
  content: "";
  height: 76px;
  width: 76px;
  background-image: url(../../resources/images/svg/play-button.svg);
}

.seo-tab-section .seo-tab .seo-content .seo-img .image-wrapper .open-fancy:hover:after {
  opacity: 0.9;
}

.seo-tab-section .seo-tab.active .toggle-btn {
  height: 50px;
}

.seo-tab-section .seo-tab.active .toggle-btn:after {
  position: absolute;
  z-index: 5;
  top: 37px;
  display: block;
  height: 2px;
  width: 21px;
  background-image: url(../../resources/images/svg/minus-pink.svg);
}

.related-posts .related-title {
  padding-bottom: 55px;
}

.related-posts .related-title h2 {
  color: #1A041E;
  font-weight: 500;
  line-height: 55px;
  margin: 0;
}

.related-posts .related-title h2.color-pink {
  color: #FC5088;
}

@media (max-width: 990px) {
  .related-posts .related-button-wrapper {
    padding-top: 20px;
  }
}

.related-posts .related-button-wrapper .btn,
.related-posts .related-button-wrapper body .gform_wrapper.gravity-theme .gform_button_select_files,
body .gform_wrapper.gravity-theme .related-posts .related-button-wrapper .gform_button_select_files {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  color: #FFF;
  font-size: 18px;
  line-height: 1;
  border-radius: 25px;
  background-color: #FC5088;
  transition: all 0.5s ease;
  border: 1px solid #FC5088;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.related-posts .related-button-wrapper .btn span,
.related-posts .related-button-wrapper body .gform_wrapper.gravity-theme .gform_button_select_files span,
body .gform_wrapper.gravity-theme .related-posts .related-button-wrapper .gform_button_select_files span {
  transition: color 0.5s ease;
}

.related-posts .related-button-wrapper .btn.ghost,
.related-posts .related-button-wrapper body .gform_wrapper.gravity-theme .ghost.gform_button_select_files,
body .gform_wrapper.gravity-theme .related-posts .related-button-wrapper .ghost.gform_button_select_files {
  background-color: transparent;
  border: 1px solid #FC5088;
}

.related-posts .related-button-wrapper .btn.ghost:hover,
.related-posts .related-button-wrapper body .gform_wrapper.gravity-theme .ghost.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .related-posts .related-button-wrapper .ghost.gform_button_select_files:hover {
  background-color: #FC5088;
}

.related-posts .related-button-wrapper .btn.ghost:hover span,
.related-posts .related-button-wrapper body .gform_wrapper.gravity-theme .ghost.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .related-posts .related-button-wrapper .ghost.gform_button_select_files:hover span {
  color: #FFF;
}

.related-posts .related-button-wrapper .btn:hover,
.related-posts .related-button-wrapper body .gform_wrapper.gravity-theme .gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .related-posts .related-button-wrapper .gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.related-posts .related-button-wrapper .btn.light-bg:hover,
.related-posts .related-button-wrapper body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .related-posts .related-button-wrapper .light-bg.gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.related-posts .related-button-wrapper .btn.light-bg:hover span,
.related-posts .related-button-wrapper body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .related-posts .related-button-wrapper .light-bg.gform_button_select_files:hover span {
  color: #FC5088;
}

.related-posts .posts-list {
  display: grid;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 350px));
  padding-bottom: 60px;
}

@media (max-width: 1178px) {
  .related-posts .posts-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .related-posts .posts-list {
    grid-template-columns: 1fr;
  }
}

.related-posts .posts-list .post-item {
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(63, 16, 70, 0.1);
}

.related-posts .posts-list .post-item .post-link-main {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.related-posts .posts-list .post-item .post-header {
  position: relative;
  background-size: cover;
  height: 270px;
  border-radius: 5px 5px 0px 0px;
}

.related-posts .posts-list .post-item .post-header.with-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(252, 80, 136, 0) 0%, rgba(208, 196, 210, 0) 56.25%, #3F1046 100%);
}

.related-posts .posts-list .post-item .post-header .categories {
  position: absolute;
  top: 25px;
  left: 25px;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.related-posts .posts-list .post-item .post-header .categories .ctp-sub-cat {
  background-color: #FC5088;
  padding: 5px 20px;
  border-radius: 30px;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
}

.related-posts .posts-list .post-item .post-info-box {
  padding: 25px;
}

.related-posts .posts-list .post-item .post-info-box .post-info .post-date {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #464646;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.related-posts .posts-list .post-item .post-info-box .post-info .post-date:before {
  display: block;
  content: "";
  width: 14px;
  height: 16px;
  background-size: 14px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/calendar-icon.svg);
}

.related-posts .posts-list .post-item .post-title {
  color: #464646;
  font-size: 20px;
  font-weight: 500;
  margin: 10px 0;
}

.related-posts .posts-list .post-item .post-excerpt p {
  color: #464646;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 25px;
}

.related-posts .posts-list .post-item .post-read-more {
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-align: center;
  align-items: center;
}

.related-posts .posts-list .post-item .post-read-more a {
  color: #464646;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.related-posts .posts-list .post-item .post-read-more:before {
  display: block;
  content: "";
  width: 8px;
  height: 12px;
  background-size: 8px 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/pink-arrow-chevron-right.svg);
}

.related-posts .posts-list .post-item:hover .post-read-more a {
  color: #FC5088;
  text-decoration: none;
}

.team-section .content-inner {
  padding-bottom: 100px;
}

.team-section .content-inner .section-title {
  color: #1A041E;
  padding-bottom: 20px;
}

.team-section .content-inner .section-title .colored {
  color: #FC5088;
}

.team-section .content-inner .content-wrapper {
  color: #464646;
  font-size: 16px;
}

.team-section .team-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

@media (max-width: 800px) {
  .team-section .team-block {
    grid-template-columns: 1fr;
  }
}

.team-section .team-block .team-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
  -ms-flex-align: center;
  align-items: center;
}

.team-section .team-block .team-col .block-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  border-radius: 10px;
}

@media (max-width: 800px) {
  .team-section .team-block .team-col .block-wrapper {
    padding: 0 10px;
  }
}

.team-section .team-block .team-col .block-wrapper img {
  position: relative;
  width: 100%;
  border-radius: 10px;
}

.team-section .team-block .team-col .block-wrapper .info-wrapper {
  position: absolute;
  z-index: 10;
  left: 0;
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 0 35px 20px;
}

.team-section .team-block .team-col .block-wrapper .info-wrapper .text-wrapper .block-title {
  font-size: 18px;
  font-weight: 400;
  color: #FFF;
}

.team-section .team-block .team-col .block-wrapper .info-wrapper .text-wrapper .function {
  font-size: 16px;
  font-weight: 400;
  color: #FFF;
}

.team-section .team-block .team-col .block-wrapper .info-wrapper .contact-wrapper {
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.team-section .team-block .team-col .block-wrapper .info-wrapper .contact-wrapper a {
  display: grid;
  place-content: center center;
  position: relative;
  height: 40px;
  width: 40px;
  background-color: #FC5088;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.team-section .team-block .team-col .block-wrapper .info-wrapper .contact-wrapper a:hover {
  background-color: white;
}

.team-section .team-block .team-col .block-wrapper .info-wrapper .contact-wrapper .contact-email:after {
  content: "";
  display: block;
  width: 21px;
  height: 16px;
  background-image: url(../../resources/images/svg/mail-white.svg);
}

.team-section .team-block .team-col .block-wrapper .info-wrapper .contact-wrapper .contact-email:hover:after {
  background-image: url(../../resources/images/svg/mail-big.svg);
}

.team-section .team-block .team-col .block-wrapper .info-wrapper .contact-wrapper .contact-phone:after {
  content: "";
  display: block;
  width: 20px;
  height: 21px;
  background-image: url(../../resources/images/svg/phone-white.svg);
}

.team-section .team-block .team-col .block-wrapper .info-wrapper .contact-wrapper .contact-phone:hover:after {
  background-image: url(../../resources/images/svg/phone-big.svg);
}

.team-section .team-block .team-col .block-wrapper .img-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 6;
  background: linear-gradient(180deg, rgba(252, 80, 136, 0) 0%, rgba(208, 196, 210, 0) 56.25%, #3F1046 100%);
  top: 0;
  left: 0;
  border-radius: 10px;
}

@media (max-width: 800px) {
  .team-section .team-block .team-col .block-wrapper .img-overlay {
    left: 10px;
    width: calc(100% - 20px);
  }
}

.team-section .team-block .team-col .description {
  color: #464646;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  max-width: 500px;
  padding: 0 10px;
}

.cta-image-section {
  position: relative;
  background-color: #FFF6F9;
}

.cta-image-section .card_side {
  padding-left: 15px;
  padding-right: 15px;
}

.cta-image-section .cta-wrapper {
  padding-bottom: 48px;
}

.cta-image-section .cta-wrapper .colored {
  color: #FC5088;
}

.cta-image-section .cta-wrapper .content-wrapper p {
  font-size: 16px;
  line-height: 32px;
}

.cta-image-section .cta-image-btn {
  padding: 24px 0;
}

.cta-image-section .cta-image-btn .btn,
.cta-image-section .cta-image-btn body .gform_wrapper.gravity-theme .gform_button_select_files,
body .gform_wrapper.gravity-theme .cta-image-section .cta-image-btn .gform_button_select_files {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 27px;
  color: #FFF;
  font-size: 18px;
  border-radius: 100px;
  background-color: #FC5088;
  transition: all 0.5s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.cta-image-section .cta-image-btn .btn span,
.cta-image-section .cta-image-btn body .gform_wrapper.gravity-theme .gform_button_select_files span,
body .gform_wrapper.gravity-theme .cta-image-section .cta-image-btn .gform_button_select_files span {
  transition: color 0.5s ease;
}

.cta-image-section .cta-image-btn .btn.ghost,
.cta-image-section .cta-image-btn body .gform_wrapper.gravity-theme .ghost.gform_button_select_files,
body .gform_wrapper.gravity-theme .cta-image-section .cta-image-btn .ghost.gform_button_select_files {
  background-color: transparent;
  border: 1px solid #FC5088;
}

@media (max-width: 767px) {
  .cta-image-section .cta-image-btn .btn,
  .cta-image-section .cta-image-btn body .gform_wrapper.gravity-theme .gform_button_select_files,
  body .gform_wrapper.gravity-theme .cta-image-section .cta-image-btn .gform_button_select_files {
    font-size: 16px;
  }
}

.cta-image-section .cta-image-btn .btn:hover,
.cta-image-section .cta-image-btn body .gform_wrapper.gravity-theme .gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .cta-image-section .cta-image-btn .gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.cta-image-section .cta-image-btn .btn.ghost:hover,
.cta-image-section .cta-image-btn body .gform_wrapper.gravity-theme .ghost.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .cta-image-section .cta-image-btn .ghost.gform_button_select_files:hover {
  background-color: #FC5088;
}

.cta-image-section .cta-image-btn .btn:after,
.cta-image-section .cta-image-btn body .gform_wrapper.gravity-theme .gform_button_select_files:after,
body .gform_wrapper.gravity-theme .cta-image-section .cta-image-btn .gform_button_select_files:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right.svg);
  transition: all 0.5s ease-in-out;
}

.cta-image-section .cta-image-btn .btn.light-bg:hover,
.cta-image-section .cta-image-btn body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .cta-image-section .cta-image-btn .light-bg.gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.cta-image-section .cta-image-btn .btn.light-bg:hover:after,
.cta-image-section .cta-image-btn body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .cta-image-section .cta-image-btn .light-bg.gform_button_select_files:hover:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.cta-image-section .cta-image-btn .btn.light-bg:hover span,
.cta-image-section .cta-image-btn body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .cta-image-section .cta-image-btn .light-bg.gform_button_select_files:hover span {
  color: #FC5088;
}

.cta-image-section .cta-image-btn .btn.ghost-light,
.cta-image-section .cta-image-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files,
body .gform_wrapper.gravity-theme .cta-image-section .cta-image-btn .ghost-light.gform_button_select_files {
  background-color: transparent;
  border: 1px solid #FC5088;
}

.cta-image-section .cta-image-btn .btn.ghost-light span,
.cta-image-section .cta-image-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files span,
body .gform_wrapper.gravity-theme .cta-image-section .cta-image-btn .ghost-light.gform_button_select_files span {
  color: #FC5088;
}

.cta-image-section .cta-image-btn .btn.ghost-light:after,
.cta-image-section .cta-image-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:after,
body .gform_wrapper.gravity-theme .cta-image-section .cta-image-btn .ghost-light.gform_button_select_files:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.cta-image-section .cta-image-btn .btn.ghost-light:hover,
.cta-image-section .cta-image-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .cta-image-section .cta-image-btn .ghost-light.gform_button_select_files:hover {
  background-color: #FC5088;
}

.cta-image-section .cta-image-btn .btn.ghost-light:hover span,
.cta-image-section .cta-image-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .cta-image-section .cta-image-btn .ghost-light.gform_button_select_files:hover span {
  color: #FFF;
}

.cta-image-section .cta-image-btn .btn.ghost-light:hover:after,
.cta-image-section .cta-image-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .cta-image-section .cta-image-btn .ghost-light.gform_button_select_files:hover:after {
  background-image: url(../../resources/images/svg/arrow-right.svg);
}

.cta-image-section .image-wrapper {
  position: relative;
  height: 100%;
}

.cta-image-section .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.cta-image-section .custom_icon_wrapper {
  background-color: #3F1046;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  position: absolute;
  right: 65px;
  bottom: -15px;
  padding: 23px;
}

.cta-image-section .custom_icon_wrapper img {
  max-width: 50px;
}

.cta-image-section .part.eclipse {
  position: absolute;
  bottom: 0;
  left: -10px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background-image: url(../../resources/images/svg/eclipse.svg);
  height: 374px;
  width: 389px;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: cover;
  z-index: -1;
}

@media (max-width: 767px) {
  .cta-image-section .part.eclipse {
    background-size: cover;
    height: 187px;
    width: 194.5px;
  }
}

.cta-section-v2 {
  background-color: #370C3E;
  padding-top: 125px;
  padding-bottom: 125px;
  position: relative;
}

.cta-section-v2 .pre_container {
  position: relative;
  padding: 75px 125px;
  max-width: 1350px;
  margin: 0 auto;
}

@media (max-width: 1440px) {
  .cta-section-v2 .pre_container {
    padding: 75px 16px;
    max-width: 90%;
  }
}

.cta-section-v2 .pre_container:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background-color: #3F1046;
}

.cta-section-v2 .pre_container h2.section-title {
  color: #FFF;
  margin-bottom: 32px;
}

.cta-section-v2 .pre_container .colored {
  color: #FC5088;
}

@media (max-width: 990px) {
  .cta-section-v2 .pre_container .form {
    margin-bottom: 64px;
  }
}

.cta-section-v2 .pre_container .form label,
.cta-section-v2 .pre_container .form p,
.cta-section-v2 .pre_container .form legend {
  color: #FFF !important;
}

.cta-section-v2 .pre_container .form .gchoice label:before {
  border: 2px solid #FC5088 !important;
}

.cta-section-v2 .pre_container .form .gchoice input[type=checkbox]:checked + label:before {
  background-color: #FC5088 !important;
}

.cta-section-v2 .pre_container .form .gform_heading {
  display: none;
}

.cta-section-v2 .pre_container .content-wrapper {
  max-width: 470px;
  margin-bottom: 49px;
}

.cta-section-v2 .pre_container .content-wrapper p {
  color: #FFF;
  font-size: 16px;
  line-height: 32px;
}

.cta-section-v2 .part.eclipse {
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url(../../resources/images/svg/eclipse.svg);
  height: 374px;
  width: 389px;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: cover;
  z-index: -1;
}

@media (max-width: 767px) {
  .cta-section-v2 .part.eclipse {
    background-size: cover;
    height: 187px;
    width: 194.5px;
  }
}

.title-text-section .section-wrapper {
  display: grid;
  grid-template-columns: 470px calc(100% - 515px);
  gap: 45px;
}

@media (max-width: 991px) {
  .title-text-section .section-wrapper {
    grid-template-columns: 1fr;
  }
}

.title-text-section .section-wrapper .content-inner .section-title {
  color: #3F1046;
  padding-bottom: 20px;
}

.title-text-section .section-wrapper .content-inner .section-title strong {
  font-weight: inherit;
  color: #FC5088;
}

.title-text-section .section-wrapper .content-wrapper p {
  color: #464646;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.78;
}

.title-text-section .section-wrapper .content-wrapper p:last-of-type {
  margin-bottom: 0;
}

.title-text-section .section-wrapper .bullets {
  margin: 0;
  padding: 0;
  list-style: none;
}

.title-text-section .section-wrapper .bullets .bullet {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #464646;
}

.title-text-section .section-wrapper .bullets .bullet .tick {
  height: 12px;
  width: 10%;
  background-repeat: no-repeat;
  background-image: url(../../resources/images/svg/pink-tick.svg);
}

.title-text-section .section-wrapper .bullets .bullet .text {
  width: 90%;
}

.title-text-section .section-wrapper .buttons-wrapper .btn.default:hover span,
.title-text-section .section-wrapper .buttons-wrapper body .gform_wrapper.gravity-theme .default.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .title-text-section .section-wrapper .buttons-wrapper .default.gform_button_select_files:hover span {
  color: #FC5088;
}

.title-text-section .section-wrapper .buttons-wrapper .btn.default:hover:after,
.title-text-section .section-wrapper .buttons-wrapper body .gform_wrapper.gravity-theme .default.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .title-text-section .section-wrapper .buttons-wrapper .default.gform_button_select_files:hover:after {
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.price-section-v2 {
  background: #FFF6F9;
}

.price-section-v2 .content-inner {
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .price-section-v2 .content-inner {
    margin-bottom: 40px;
  }
}

.price-section-v2 .content-inner .section-title {
  text-align: center;
}

.price-section-v2 .content-inner .section-title strong {
  font-weight: inherit;
  color: #FC5088;
}

.price-section-v2 .content-inner .section-description {
  max-width: 690px;
  margin: 25px auto 0;
}

.price-section-v2 .content-inner .section-description p {
  color: #3F1046;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.77;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper {
  position: relative;
  border-radius: 8px;
  background: #FFF;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-label {
  position: absolute;
  left: 30px;
  top: -14px;
  border-radius: 15px;
  background: #FC5088;
  padding: 7px 15px;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-label span {
  display: block;
  color: #FFF;
  font-family: "Ubuntu", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item {
  padding: 31px 33px;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-item-price {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(63, 16, 70, 0.15);
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-item-price .price {
  color: #FC5088;
  font-family: "Poppins", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-item-price .text-for-price {
  color: #3F1046;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-features-wrapper {
  margin-top: 32px;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-features-wrapper .price-features-title {
  color: #3F1046;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-features-wrapper .price-features {
  margin-top: 18px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-features-wrapper .price-features .price-feature {
  position: relative;
  padding-left: 30px;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-features-wrapper .price-features .price-feature:before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 14px;
  height: 16px;
  background-size: 14px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/pink-checkmark.svg);
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-features-wrapper .price-features .price-feature span {
  color: #3F1046;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn {
  margin-top: 33px;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .btn,
.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn body .gform_wrapper.gravity-theme .gform_button_select_files,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .gform_button_select_files {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 27px;
  color: #FFF;
  font-size: 18px;
  border-radius: 100px;
  background-color: #FC5088;
  transition: all 0.5s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .btn span,
.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn body .gform_wrapper.gravity-theme .gform_button_select_files span,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .gform_button_select_files span {
  transition: color 0.5s ease;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .btn.ghost,
.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn body .gform_wrapper.gravity-theme .ghost.gform_button_select_files,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .ghost.gform_button_select_files {
  background-color: transparent;
  border: 1px solid #FC5088;
}

@media (max-width: 767px) {
  .price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .btn,
  .price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn body .gform_wrapper.gravity-theme .gform_button_select_files,
  body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .gform_button_select_files {
    font-size: 16px;
  }
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .btn:hover,
.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn body .gform_wrapper.gravity-theme .gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .btn.ghost:hover,
.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn body .gform_wrapper.gravity-theme .ghost.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .ghost.gform_button_select_files:hover {
  background-color: #FC5088;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .btn:after,
.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn body .gform_wrapper.gravity-theme .gform_button_select_files:after,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .gform_button_select_files:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right.svg);
  transition: all 0.5s ease-in-out;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .btn.light-bg:hover,
.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .light-bg.gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .btn.light-bg:hover:after,
.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .light-bg.gform_button_select_files:hover:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .btn.light-bg:hover span,
.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .light-bg.gform_button_select_files:hover span {
  color: #FC5088;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .btn.ghost-light,
.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .ghost-light.gform_button_select_files {
  background-color: transparent;
  border: 1px solid #FC5088;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .btn.ghost-light span,
.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files span,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .ghost-light.gform_button_select_files span {
  color: #FC5088;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .btn.ghost-light:after,
.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:after,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .ghost-light.gform_button_select_files:after {
  content: " ";
  height: 13px;
  width: 15px;
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .btn.ghost-light:hover,
.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .ghost-light.gform_button_select_files:hover {
  background-color: #FC5088;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .btn.ghost-light:hover span,
.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .ghost-light.gform_button_select_files:hover span {
  color: #FFF;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .btn.ghost-light:hover:after,
.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn body .gform_wrapper.gravity-theme .ghost-light.gform_button_select_files:hover:after,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .ghost-light.gform_button_select_files:hover:after {
  background-image: url(../../resources/images/svg/arrow-right.svg);
}

.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .btn,
.price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn body .gform_wrapper.gravity-theme .gform_button_select_files,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper .price-item .price-btn .gform_button_select_files {
  width: 100%;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight {
  background: #3F1046;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-item-price {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-item-price .text-for-price {
  color: #FFF;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-features-wrapper .price-features-title {
  color: #FFF;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-features-wrapper .price-features .price-feature:before {
  width: 14px;
  height: 16px;
  background-size: 14px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/pink-checkmark.svg);
}

.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-features-wrapper .price-features .price-feature span {
  color: #FFF;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn {
  margin-top: 33px;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .btn,
.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn body .gform_wrapper.gravity-theme .gform_button_select_files,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .gform_button_select_files {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  color: #FFF;
  font-size: 18px;
  line-height: 1;
  border-radius: 25px;
  background-color: #FC5088;
  transition: all 0.5s ease;
  border: 1px solid #FC5088;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .btn span,
.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn body .gform_wrapper.gravity-theme .gform_button_select_files span,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .gform_button_select_files span {
  transition: color 0.5s ease;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .btn.ghost,
.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn body .gform_wrapper.gravity-theme .ghost.gform_button_select_files,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .ghost.gform_button_select_files {
  background-color: transparent;
  border: 1px solid #FC5088;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .btn.ghost:hover,
.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn body .gform_wrapper.gravity-theme .ghost.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .ghost.gform_button_select_files:hover {
  background-color: #FC5088;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .btn.ghost:hover span,
.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn body .gform_wrapper.gravity-theme .ghost.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .ghost.gform_button_select_files:hover span {
  color: #FFF;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .btn:hover,
.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn body .gform_wrapper.gravity-theme .gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .btn.light-bg:hover,
.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .light-bg.gform_button_select_files:hover {
  transition: background-color 0.5s ease;
  background-color: transparent;
  border: 1px solid #FC5088;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .btn.light-bg:hover span,
.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn body .gform_wrapper.gravity-theme .light-bg.gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .light-bg.gform_button_select_files:hover span {
  color: #FC5088;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .btn,
.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn body .gform_wrapper.gravity-theme .gform_button_select_files,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .gform_button_select_files {
  width: 100%;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .btn span,
.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn body .gform_wrapper.gravity-theme .gform_button_select_files span,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .gform_button_select_files span {
  transition: all 0.5s ease-in-out;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .btn:hover,
.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn body .gform_wrapper.gravity-theme .gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .gform_button_select_files:hover {
  background-color: transparent;
  border: 1px solid #FC5088;
}

.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .btn:hover span,
.price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn body .gform_wrapper.gravity-theme .gform_button_select_files:hover span,
body .gform_wrapper.gravity-theme .price-section-v2 .price-section-wrapper .price-item-wrapper.highlight .price-item .price-btn .gform_button_select_files:hover span {
  color: #FC5088;
}

.price-section-v2 .price-section-wrapper.type-price_image {
  display: grid;
  grid-template-columns: 370px calc(100% - 370px);
  grid-template-rows: auto;
}

@media (max-width: 991px) {
  .price-section-v2 .price-section-wrapper.type-price_image {
    grid-template-columns: 1fr;
  }
}

.price-section-v2 .price-section-wrapper.type-price_image .price-item-wrapper {
  border-radius: 8px 0 0 8px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

@media (max-width: 991px) {
  .price-section-v2 .price-section-wrapper.type-price_image .price-item-wrapper {
    border-radius: 8px 8px 0 0;
  }
}

.price-section-v2 .price-section-wrapper.type-price_image .price-image {
  position: relative;
  border-radius: 0 8px 8px 0;
}

@media (max-width: 991px) {
  .price-section-v2 .price-section-wrapper.type-price_image .price-image {
    border-radius: 0 0 8px 8px;
  }
}

.price-section-v2 .price-section-wrapper.type-price_image .price-image:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  background: linear-gradient(180deg, rgba(252, 80, 136, 0) 0%, rgba(208, 196, 210, 0) 56.25%, rgba(63, 16, 70, 0.65) 100%);
  border-radius: 0 8px 8px 0;
}

@media (max-width: 991px) {
  .price-section-v2 .price-section-wrapper.type-price_image .price-image:before {
    border-radius: 0 0 8px 8px;
  }
}

.price-section-v2 .price-section-wrapper.type-price_image .price-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  border-radius: 0 8px 8px 0;
}

@media (max-width: 991px) {
  .price-section-v2 .price-section-wrapper.type-price_image .price-image img {
    border-radius: 0 0 8px 8px;
  }
}

.price-section-v2 .price-section-wrapper.type-price_image .price-image .logo-wrapper {
  position: absolute;
  right: 100px;
  bottom: -41px;
  width: 96px;
  height: 96px;
  z-index: 10;
}

.price-section-v2 .price-section-wrapper.type-price_image .price-image .logo-wrapper img {
  border-radius: 0;
}

.price-section-v2 .price-section-wrapper.type-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(345px, 1fr));
  gap: 30px;
}

.price-section-v2 .price-section-wrapper.type-comparison .price-item-wrapper.highlight {
  height: calc(100% + 32px);
  margin-top: -32px;
}

@media (max-width: 991px) {
  .price-section-v2 .price-section-wrapper.type-comparison .price-item-wrapper.highlight {
    height: 100%;
    margin-top: 0;
  }
}

.price-section-v2 .price-section-wrapper.type-comparison .price-item-wrapper .price-item {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.price-section-v2 .price-section-wrapper.type-comparison .price-item-wrapper .price-item .price-btn {
  margin-top: auto;
  padding-top: 33px;
}

.price-counter-section.dark {
  background-color: #3F1046;
}

.price-counter-section.light {
  background-color: #fff;
}

.price-counter-section.light .section-inner {
  background: #FFF6F9;
}

.price-counter-section::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 355px;
  height: 361px;
  background-size: 355px 361px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/section-bottom-el.svg);
}

.price-counter-section .section-inner {
  position: relative;
  z-index: 2;
  background: #FFF;
  border-radius: 10px;
  padding: 64px 15px;
}

.price-counter-section .section-title {
  margin-bottom: 20px;
}

.price-slider-block .price-slider-wrapper {
  width: 100%;
  max-width: 886px;
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 50px;
}

.price-slider-block .price-slider-wrapper .slider-labels-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 15px;
}

.price-slider-block .price-slider-wrapper .slider-labels-row .value-label {
  color: #3F1046;
  font-family: "Ubuntu", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: normal;
}

.price-slider-block .price-slider-wrapper .slider-labels-row .value-label.min {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

.price-slider-block .price-slider-wrapper .slider-labels-row .value-label.max {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}

.price-slider-block .price-slider-wrapper .slider-total-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 20px;
}

.price-slider-block .price-slider-wrapper .slider-total-row .price-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 17px;
}

.price-slider-block .price-slider-wrapper .slider-total-row .price-wrapper .total-price,
.price-slider-block .price-slider-wrapper .slider-total-row .price-wrapper .number {
  color: #3F1046;
  font-family: "Ubuntu", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 0.88;
}

.price-slider-block .price-slider-wrapper .slider-total-row .price-wrapper .price-label {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #3F1046;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.price-slider-block .options-holder {
  padding: 21px 0 0;
}

.price-slider-block .option-toggler {
  position: relative;
  color: #3F1046;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  padding-right: 28px;
  text-decoration: none;
}

.price-slider-block .option-toggler::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 7px;
  right: 0;
  transition: all 0.3s ease-in-out;
  width: 15px;
  height: 8px;
  background-size: 15px 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-down-pink.svg);
}

.price-slider-block .option-toggler.active::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.price-slider-block .options-wrapper {
  display: none;
}

.price-slider-block .options-inner-wrapper {
  display: -ms-flexbox;
  display: flex;
  gap: 16px 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 32px;
}

.price-slider-block .options-inner-wrapper .checkbox-label {
  width: 100%;
}

.price-slider-block .checkbox-label {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  color: #3F1046;
  font-size: 16px;
  font-weight: 400;
  line-height: 0.93;
  margin: 0;
  cursor: pointer;
}

.price-slider-block .checkbox-label .price-checkbox {
  display: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.price-slider-block .checkbox-label .price-checkbox:checked + .checkbox {
  background-color: #3F1046;
}

.price-slider-block .checkbox-label .checkbox {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  border: 2px solid #3F1046;
  border-radius: 4px;
  margin-right: 17px;
}

.price-slider {
  border: none !important;
  border-radius: 6px !important;
  background: #3F1046 !important;
}

.price-slider .ui-slider-range {
  background-color: #FC5088 !important;
  border-radius: 6px !important;
}

.price-slider .ui-slider-handle {
  top: -7px !important;
  width: 24px !important;
  height: 24px !important;
  background-color: #FC5088 !important;
  border: none !important;
  border-radius: 6px !important;
  outline: none !important;
}

.price-slider .ui-slider-handle .amount-persons-tip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 100px;
  padding-bottom: 16px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.price-slider .ui-slider-handle .amount-persons-tip::before {
  content: "";
  position: absolute;
  left: calc(50% - 3px);
  bottom: -2px;
  z-index: 1;
  width: 22px;
  height: 22px;
  background-color: #FFF6F9;
  border: 1px solid #E2D3DE;
  border-radius: 4px;
  -webkit-transform: rotate(45deg) translateX(-50%) translateY(0);
  transform: rotate(45deg) translateX(-50%) translateY(0);
}

.price-slider .ui-slider-handle .amount-persons-tip .inner-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 2;
  background-color: #FFF6F9;
  border: 1px solid #E2D3DE;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

.price-slider .ui-slider-handle .amount-persons-tip .inner-wrapper .arrow {
  position: absolute;
  left: calc(50% - 3px);
  bottom: -18px;
  z-index: 1;
  width: 21px;
  height: 21px;
  background-color: #FFF6F9;
  border-radius: 4px;
  -webkit-transform: rotate(45deg) translateX(-50%) translateY(0);
  transform: rotate(45deg) translateX(-50%) translateY(0);
}

.price-slider .ui-slider-handle .amount-persons-tip .inner-wrapper .number,
.price-slider .ui-slider-handle .amount-persons-tip .inner-wrapper .label {
  position: relative;
  z-index: 2;
}

.price-slider .ui-slider-handle .amount-persons-tip .inner-wrapper .number {
  color: #3F1046;
  font-family: "Ubuntu", sans-serif;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.price-slider .ui-slider-handle .amount-persons-tip .inner-wrapper .label {
  color: #3F1046;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.single-news_pt {
  padding-top: 25px;
}

.single-news_pt .content-wrapper {
  padding-top: 90px;
}

.single-news_pt .content-wrapper .post-wrapper .post-title {
  padding-bottom: 50px;
}

.single-news_pt .content-wrapper .post-wrapper .post-title h1 {
  color: #1A041E;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.2;
}

.single-news_pt .content-wrapper .post-wrapper .post-meta {
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-bottom: 50px;
}

.single-news_pt .content-wrapper .post-wrapper .post-meta .post-cats .btn,
.single-news_pt .content-wrapper .post-wrapper .post-meta .post-cats body .gform_wrapper.gravity-theme .gform_button_select_files,
body .gform_wrapper.gravity-theme .single-news_pt .content-wrapper .post-wrapper .post-meta .post-cats .gform_button_select_files {
  padding: 5px 27px;
  color: #FFF;
  font-size: 14px;
  border-radius: 29px;
  background-color: #FC5088;
}

.single-news_pt .content-wrapper .post-wrapper .post-meta .post-date {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #464646;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.single-news_pt .content-wrapper .post-wrapper .post-meta .post-date:before {
  display: block;
  content: "";
  width: 14px;
  height: 16px;
  background-size: 14px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/calendar-icon.svg);
}

.single-news_pt .content-wrapper .post-wrapper .post-image {
  position: relative;
  width: 100%;
  height: 445px;
  border-radius: 5px 5px 0px 0px;
  background-size: cover;
}

.single-news_pt .content-wrapper .post-wrapper .post-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(252, 80, 136, 0) 0%, rgba(208, 196, 210, 0) 56.25%, #3F1046 100%);
}

.single-news_pt .content-wrapper .post-wrapper .post-content {
  padding: 60px 120px 30px;
  border-radius: 0px 0px 5px 5px;
  border: 0.3px solid rgba(151, 151, 151, 0.3);
  border-top: none;
}

@media (max-width: 991px) {
  .single-news_pt .content-wrapper .post-wrapper .post-content {
    padding: 30px 60px;
  }
}

@media (max-width: 767px) {
  .single-news_pt .content-wrapper .post-wrapper .post-content {
    padding: 30px 60px;
  }
}

@media (max-width: 450px) {
  .single-news_pt .content-wrapper .post-wrapper .post-content {
    padding: 15px 20px;
  }
}

.single-news_pt .content-wrapper .post-wrapper .post-content .wp-block-button .wp-block-button__link {
  position: relative;
  background-color: #FC5088;
  border: 1px solid #FC5088;
  color: white;
  transition: all 0.5s ease-in-out;
}

.single-news_pt .content-wrapper .post-wrapper .post-content .wp-block-button .wp-block-button__link:after {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 12px;
  top: calc(50% - 6.5px);
  content: "";
  display: block;
  width: 15px;
  height: 13px;
  background-size: 15px 13px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-right-pink.svg);
  transition: all 0.5s ease-in-out;
}

.single-news_pt .content-wrapper .post-wrapper .post-content .wp-block-button:hover .wp-block-button__link {
  background-color: transparent;
  color: #FC5088;
  text-decoration: none;
  padding-right: 40px;
}

.single-news_pt .content-wrapper .post-wrapper .post-content .wp-block-button:hover .wp-block-button__link:after {
  visibility: visible;
  opacity: 1;
}

.single-news_pt .content-wrapper .post-wrapper .post-content h2,
.single-news_pt .content-wrapper .post-wrapper .post-content h3 {
  margin-bottom: 15px;
}

.single-news_pt .content-wrapper .post-wrapper .post-content h2 {
  font-size: 32px;
}

.single-news_pt .content-wrapper .post-wrapper .post-content h3 {
  font-size: 25px;
}

.single-news_pt .content-wrapper .post-wrapper .post-content p {
  color: #464646;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 25px;
}

.single-news_pt .content-wrapper .post-wrapper .post-content strong {
  font-weight: 600;
}

.single-news_pt .content-wrapper .post-wrapper .post-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 25px;
}

.single-news_pt .content-wrapper .post-wrapper .post-content ul li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 400;
  color: #464646;
  margin-bottom: 10px;
}

.single-news_pt .content-wrapper .post-wrapper .post-content ul li:before {
  content: "";
  width: 30px;
  height: 12px;
  background-size: 30px 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/pink-tick.svg);
}

.single-news_pt .content-wrapper .col-share {
  position: relative;
  margin-top: 45px;
  margin-bottom: 130px;
  padding: 45px 120px;
  border-radius: 5px;
  border: 0.3px solid rgba(151, 151, 151, 0.3);
  border-bottom: 3px solid #FC5088;
  background: #FFF;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  background: #FFF;
}

@media (max-width: 991px) {
  .single-news_pt .content-wrapper .col-share {
    padding: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
  }
}

@media (max-width: 450px) {
  .single-news_pt .content-wrapper .col-share {
    padding: 15px 20px;
  }
}

.single-news_pt .content-wrapper .col-share .share-icons-box {
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.single-news_pt .content-wrapper .col-share .share-icons-box .share-text {
  color: #1A041E;
  font-size: 17px;
  font-weight: 400;
  margin-right: 30px;
  line-height: 1.25;
}

@media (max-width: 767px) {
  .single-news_pt .content-wrapper .col-share .share-icons-box .share-text {
    margin-right: 10px;
  }
}

.single-news_pt .content-wrapper .col-share .share-icons-box .share-icons .addtoany_list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.single-news_pt .content-wrapper .col-share .share-icons-box .share-icons .addtoany_list > a {
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50% !important;
  padding: 0;
  margin-right: 20px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .single-news_pt .content-wrapper .col-share .share-icons-box .share-icons .addtoany_list > a {
    width: 30px !important;
    height: 30px !important;
    margin-right: 5px;
  }
}

.single-news_pt .content-wrapper .col-share .share-icons-box .share-icons .addtoany_list > a img {
  width: 22px;
  height: 22px;
}

.single-news_pt .content-wrapper .col-share .share-icons-box .share-icons .addtoany_list > a .a2a_svg {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 45px !important;
  height: 45px !important;
  border-radius: 3px !important;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .single-news_pt .content-wrapper .col-share .share-icons-box .share-icons .addtoany_list > a .a2a_svg {
    width: 30px !important;
    height: 30px !important;
  }
}

.single-news_pt .content-wrapper .col-share .share-icons-box .share-icons .addtoany_list > a .a2a_svg svg {
  width: 22px;
  height: 22px;
}

.single-news_pt .content-wrapper .col-share .share-icons-box .share-icons .addtoany_list > a .a2a_svg svg path {
  fill: #464646;
  transition: all 0.3s ease-in-out;
}

.single-news_pt .content-wrapper .col-share .share-icons-box .share-icons .addtoany_list > a:hover,
.single-news_pt .content-wrapper .col-share .share-icons-box .share-icons .addtoany_list > a:focus {
  background-color: #FC5088;
  border-radius: 50%;
}

.single-news_pt .content-wrapper .col-share .share-icons-box .share-icons .addtoany_list > a:hover .a2a_svg,
.single-news_pt .content-wrapper .col-share .share-icons-box .share-icons .addtoany_list > a:focus .a2a_svg {
  opacity: 1;
}

.single-news_pt .content-wrapper .col-share .share-icons-box .share-icons .addtoany_list > a:hover .a2a_svg svg path,
.single-news_pt .content-wrapper .col-share .share-icons-box .share-icons .addtoany_list > a:focus .a2a_svg svg path {
  fill: #FFF;
}

.single-news_pt .content-wrapper .col-share .share-icons-box .share-icons .addtoany_list > a:last-child {
  margin-right: 0;
}

.single-news_pt .content-wrapper .col-share .back a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  position: relative;
  color: #464646;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  transition: -webkit-transform 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.single-news_pt .content-wrapper .col-share .back a:before {
  content: "";
  display: block;
  width: 9px;
  height: 14px;
  background-size: 9px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/chevron-left.svg);
}

.single-news_pt .content-wrapper .col-share .back a:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.archive-news_pt .news-title {
  padding: 90px 0;
}

.col-posts {
  padding-bottom: 60px;
}

.col-posts .posts-list {
  display: grid;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 350px));
  padding-bottom: 60px;
}

@media (max-width: 1178px) {
  .col-posts .posts-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .col-posts .posts-list {
    grid-template-columns: 1fr;
  }
}

.col-posts .posts-list .post-item {
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(63, 16, 70, 0.1);
}

.col-posts .posts-list .post-item .post-link-main {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.col-posts .posts-list .post-item .post-header {
  position: relative;
  background-size: cover;
  height: 270px;
  border-radius: 5px 5px 0px 0px;
}

.col-posts .posts-list .post-item .post-header.with-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(252, 80, 136, 0) 0%, rgba(208, 196, 210, 0) 56.25%, #3F1046 100%);
}

.col-posts .posts-list .post-item .post-header .categories {
  position: absolute;
  top: 25px;
  left: 25px;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.col-posts .posts-list .post-item .post-header .categories .ctp-sub-cat {
  background-color: #FC5088;
  padding: 5px 20px;
  border-radius: 30px;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
}

.col-posts .posts-list .post-item .post-info-box {
  padding: 25px;
}

.col-posts .posts-list .post-item .post-info-box .post-info .post-date {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #464646;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.col-posts .posts-list .post-item .post-info-box .post-info .post-date:before {
  display: block;
  content: "";
  width: 14px;
  height: 16px;
  background-size: 14px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/calendar-icon.svg);
}

.col-posts .posts-list .post-item .post-title {
  color: #464646;
  font-size: 20px;
  font-weight: 500;
  margin: 10px 0;
}

.col-posts .posts-list .post-item .post-excerpt p {
  color: #464646;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 25px;
}

.col-posts .posts-list .post-item .post-read-more {
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-align: center;
  align-items: center;
}

.col-posts .posts-list .post-item .post-read-more a {
  color: #464646;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.col-posts .posts-list .post-item .post-read-more:before {
  display: block;
  content: "";
  width: 8px;
  height: 12px;
  background-size: 8px 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/pink-arrow-chevron-right.svg);
}

.col-posts .posts-list .post-item:hover .post-read-more a {
  color: #FC5088;
  text-decoration: none;
}