@font-face {
  font-family: "Gilroy";
  src: local("Gilroy"), url(../fonts/gilroy.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: local("Gilroy"), url(../fonts/gilroy_medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: local("Gilroy"), url(../fonts/gilroy_semibold.woff) format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: local("Gilroy"), url(../fonts/gilroy_black.woff) format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: local("Inter"), url(../fonts/inter.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/*
    Dots plugin
*/
/*
    Navigation plugin
*/
.carousel {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.carousel *, .carousel *:before, .carousel *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
.carousel.is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.carousel.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

.carousel__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.carousel__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  -webkit-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
}
.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  -webkit-box-shadow: var(--carousel-button-shadow, none);
          box-shadow: var(--carousel-button-shadow, none);
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}
.carousel__button.is-prev, .carousel__button.is-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.carousel__button.is-prev {
  left: 10px;
}
.carousel__button.is-next {
  right: 10px;
}
.carousel__button[disabled] {
  cursor: default;
  opacity: 0.3;
}
.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  -webkit-filter: var(--carousel-button-svg-filter, none);
          filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

/*
  Thumbs plugin
*/
/* 3/2 */
/*
  HTML plugin
*/
/*
  Toolbar plugin
*/
html.with-fancybox {
  scroll-behavior: auto;
}

body.compensate-for-scrollbar {
  overflow: hidden !important;
  -ms-touch-action: none;
      touch-action: none;
}

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  z-index: 1050;
  outline: none;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}
.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
.fancybox__container :focus {
  outline: none;
}
body:not(.is-using-mouse) .fancybox__container :focus {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
          box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}
@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 27px;
    --carousel-button-svg-height: 27px;
  }
}

.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 0;
  /* For Safari */
  height: 100%;
  z-index: 10;
}
.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}

.fancybox__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.fancybox__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}
.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0px;
          flex: 0 0 0;
  margin: auto;
}
@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}

.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  -ms-flex-item-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 20;
}
.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: thin dotted;
  -webkit-box-shadow: none;
          box-shadow: none;
}

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

.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
  z-index: 40;
}
.fancybox__nav .carousel__button.is-next {
  right: 8px;
}
@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}
.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}
@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}

.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}
@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}

/* Close button located inside content area */
.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color, #fff);
}

.fancybox__no-click,
.fancybox__no-click button {
  pointer-events: none;
}

.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor);
}
.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}
.fancybox__spinner svg {
  -webkit-animation: fancybox-rotate 2s linear infinite;
          animation: fancybox-rotate 2s linear infinite;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: fancybox-dash 1.5s ease-in-out infinite;
          animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

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

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.fancybox__backdrop,
.fancybox__caption,
.fancybox__nav,
.carousel__dots,
.carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1);
}

/* Opening */
.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
  -webkit-animation: 0.15s ease backwards fancybox-fadeIn;
          animation: 0.15s ease backwards fancybox-fadeIn;
}

/* Closing */
.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
  -webkit-animation: 0.15s ease both fancybox-fadeOut;
          animation: 0.15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
  -webkit-animation: 0.15s ease both fancybox-fadeIn;
          animation: 0.15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
  -webkit-animation: 0.1s ease both fancybox-fadeOut;
          animation: 0.1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
  -webkit-animation: 0.2s ease both fancybox-zoomInUp;
          animation: 0.2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
  -webkit-animation: 0.15s ease both fancybox-zoomOutDown;
          animation: 0.15s ease both fancybox-zoomOutDown;
}

/* Both `throwOut` classes are for closing animation after dragging up/down */
.fancybox-throwOutUp {
  -webkit-animation: 0.15s ease both fancybox-throwOutUp;
          animation: 0.15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
  -webkit-animation: 0.15s ease both fancybox-throwOutDown;
          animation: 0.15s ease both fancybox-throwOutDown;
}

@-webkit-keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) 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 fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) 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 fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -30%, 0);
            transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -30%, 0);
            transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 30%, 0);
            transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 30%, 0);
            transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}
.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__image {
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: none;
  transition: none;
}

.has-image .fancybox__content {
  padding: 0;
  background: transparent;
  min-height: 1px;
}
.is-closing .has-image .fancybox__content {
  overflow: visible;
}
.has-image[data-image-fit=contain] {
  overflow: visible;
  -ms-touch-action: none;
      touch-action: none;
  /* Fix Mac OS Safari 11 - 13 */
}
.has-image[data-image-fit=contain] .fancybox__content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.has-image[data-image-fit=contain] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.has-image[data-image-fit=contain-w] {
  overflow-x: hidden;
  overflow-y: auto;
}
.has-image[data-image-fit=contain-w] .fancybox__content {
  min-height: auto;
}
.has-image[data-image-fit=contain-w] .fancybox__image {
  max-width: 100%;
  height: auto;
}
.has-image[data-image-fit=cover] {
  overflow: visible;
  -ms-touch-action: none;
      touch-action: none;
}
.has-image[data-image-fit=cover] .fancybox__content {
  width: 100%;
  height: 100%;
}
.has-image[data-image-fit=cover] .fancybox__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  max-width: 100%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}
.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%;
}
.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}
.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}
.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df;
}

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

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

.fancybox__thumbs {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
  -webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
          animation: 0.15s ease-in backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}
.fancybox__thumbs .carousel__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: visible;
  cursor: pointer;
}
.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  opacity: 0;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}
.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: 0.92;
}
.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__thumb {
  position: relative;
  width: 100%;
  /* Keep aspect ratio */
  padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: -webkit-gradient(linear, left bottom, left top, from(hsla(0deg, 0%, 0%, 0)), color-stop(8.1%, hsla(0deg, 0%, 0%, 0.006)), color-stop(15.5%, hsla(0deg, 0%, 0%, 0.021)), color-stop(22.5%, hsla(0deg, 0%, 0%, 0.046)), color-stop(29%, hsla(0deg, 0%, 0%, 0.077)), color-stop(35.3%, hsla(0deg, 0%, 0%, 0.114)), color-stop(41.2%, hsla(0deg, 0%, 0%, 0.155)), color-stop(47.1%, hsla(0deg, 0%, 0%, 0.198)), color-stop(52.9%, hsla(0deg, 0%, 0%, 0.242)), color-stop(58.8%, hsla(0deg, 0%, 0%, 0.285)), color-stop(64.7%, hsla(0deg, 0%, 0%, 0.326)), color-stop(71%, hsla(0deg, 0%, 0%, 0.363)), color-stop(77.5%, hsla(0deg, 0%, 0%, 0.394)), color-stop(84.5%, hsla(0deg, 0%, 0%, 0.419)), color-stop(91.9%, hsla(0deg, 0%, 0%, 0.434)), to(hsla(0deg, 0%, 0%, 0.44)));
  background: linear-gradient(to top, hsla(0deg, 0%, 0%, 0) 0%, hsla(0deg, 0%, 0%, 0.006) 8.1%, hsla(0deg, 0%, 0%, 0.021) 15.5%, hsla(0deg, 0%, 0%, 0.046) 22.5%, hsla(0deg, 0%, 0%, 0.077) 29%, hsla(0deg, 0%, 0%, 0.114) 35.3%, hsla(0deg, 0%, 0%, 0.155) 41.2%, hsla(0deg, 0%, 0%, 0.198) 47.1%, hsla(0deg, 0%, 0%, 0.242) 52.9%, hsla(0deg, 0%, 0%, 0.285) 58.8%, hsla(0deg, 0%, 0%, 0.326) 64.7%, hsla(0deg, 0%, 0%, 0.363) 71%, hsla(0deg, 0%, 0%, 0.394) 77.5%, hsla(0deg, 0%, 0%, 0.419) 84.5%, hsla(0deg, 0%, 0%, 0.434) 91.9%, hsla(0deg, 0%, 0%, 0.44) 100%);
  padding: 0;
  -ms-touch-action: none;
      touch-action: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}
@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
  -webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
          animation: 0.15s ease-in backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}
.fancybox__toolbar__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fancybox__toolbar__items--left {
  margin-right: auto;
}
.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.fancybox__toolbar__items--right {
  margin-left: auto;
}
@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}

.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__container:-webkit-full-screen::-webkit-backdrop {
  opacity: 0;
}

.fancybox__container:-webkit-full-screen::backdrop {
  opacity: 0;
}

.fancybox__container:-ms-fullscreen::backdrop {
  opacity: 0;
}

.fancybox__container:-webkit-full-screen::-webkit-backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::-webkit-backdrop {
  opacity: 0;
}

.fancybox__container:-webkit-full-screen::backdrop {
  opacity: 0;
}

.fancybox__container:-ms-fullscreen::backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::-webkit-backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}

/*
    ! tailwindcss v3.1.6 | MIT License | https://tailwindcss.com
*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #eff0f3; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

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

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  opacity: 1; /* 1 */
  color: #6c6c78; /* 2 */
}

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #6c6c78; /* 2 */
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1; /* 1 */
  color: #6c6c78; /* 2 */
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  opacity: 1; /* 1 */
  color: #6c6c78; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #6c6c78; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

a {
  --tw-text-opacity: 1;
  color: rgb(254, 123, 182);
}

body {
    min-width: 360px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    line-height: 1.7;
    --tw-text-opacity: 1;
    color: rgb(10 10 30 / var(--tw-text-opacity));
  }

h1 {
    margin-bottom: 23px;
    font-family: Gilroy, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    --tw-text-opacity: 1;
    color: rgb(10 10 30 / var(--tw-text-opacity));
  }

@media (min-width: 768px) {
  h1 {
    font-size: 34px;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
    margin-bottom: 20px;
    font-family: Gilroy, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    --tw-text-opacity: 1;
    color: rgb(10 10 30 / var(--tw-text-opacity));
  }

@media (min-width: 768px) {
  h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  h2 {
    font-size: 34px;
  }
}

h3 {
  margin-bottom: 20px;
  font-family: Gilroy, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  --tw-text-opacity: 1;
  color: rgb(10 10 30 / var(--tw-text-opacity));
}

@media (min-width: 768px) {
  h3 {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  h3 {
    font-size: 28px;
  }
}

h4 {
  margin-bottom: 20px;
  font-family: Gilroy, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  --tw-text-opacity: 1;
  color: rgb(10 10 30 / var(--tw-text-opacity));
}

@media (min-width: 768px) {
  h4 {
    font-size: 22px;
  }
}

@media (min-width: 1024px) {
  h4 {
    font-size: 24px;
  }
}

h5 {
  margin-bottom: 20px;
  font-family: Gilroy, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  --tw-text-opacity: 1;
  color: rgb(10 10 30 / var(--tw-text-opacity));
}

@media (min-width: 768px) {
  h5 {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  h5 {
    font-size: 22px;
  }
}

h6 {
  margin-bottom: 20px;
  font-family: Gilroy, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  --tw-text-opacity: 1;
  color: rgb(10 10 30 / var(--tw-text-opacity));
}

@media (min-width: 768px) {
  h6 {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  h6 {
    font-size: 20px;
  }
}

hr {
  margin-top: 40px;
  margin-bottom: 40px;
  --tw-border-opacity: 1;
  border-color: rgb(239 240 243 / var(--tw-border-opacity));
}

p {
  line-height: 1.6;
}

p:not(:last-child) {
    margin-bottom: 27px;
  }

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::-webkit-backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
}
@media (min-width: 1360px) {
  .container {
    max-width: 1360px;
  }
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.top-70 {
  top: 70px;
}
.right-0 {
  right: 0px;
}
.left-0 {
  left: 0px;
}
.top-10 {
  top: 10px;
}
.right-10 {
  right: 10px;
}
.z-30 {
  z-index: 30;
}
.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.my-80 {
  margin-top: 80px;
  margin-bottom: 80px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.ml-20 {
  margin-left: 20px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-117 {
  margin-top: 117px;
}
.mr-5 {
  margin-right: 5px;
}
.mb-13 {
  margin-bottom: 13px;
}
.mt-50 {
  margin-top: 50px;
}
.mb-7 {
  margin-bottom: 7px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-12 {
  margin-bottom: 12px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mt-80 {
  margin-top: 80px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mt-40 {
  margin-top: 40px;
}
.mr-15 {
  margin-right: 15px;
}
.mr-10 {
  margin-right: 10px;
}
.block {
  display: block;
}
.inline {
  display: inline;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.table {
  display: table;
}
.hidden {
  display: none;
}
.h-50 {
  height: 50px;
}
.h-12 {
  height: 12px;
}
.h-24 {
  height: 24px;
}
.h-25 {
  height: 25px;
}
.h-16 {
  height: 16px;
}
.h-30 {
  height: 30px;
}
.h-20 {
  height: 20px;
}
.min-h-\[50px\] {
  min-height: 50px;
}
.w-full {
  width: 100%;
}
.w-50 {
  width: 50px;
}
.w-278 {
  width: 278px;
}
.w-12 {
  width: 12px;
}
.w-480 {
  width: 480px;
}
.w-310 {
  width: 310px;
}
.w-24 {
  width: 24px;
}
.w-25 {
  width: 25px;
}
.w-1 {
  width: 1px;
}
.w-30 {
  width: 30px;
}
.w-20 {
  width: 20px;
}
.w-18 {
  width: 18px;
}
.max-w-full {
  max-width: 100%;
}
.flex-initial {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}
.flex-auto {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
}
.grow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.basis-auto {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}
.basis-\[510px\] {
  -ms-flex-preferred-size: 510px;
      flex-basis: 510px;
}
.transform {
  -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
          transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gap-16 {
  gap: 16px;
}
.gap-30 {
  gap: 30px;
}
.space-x-15 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(15px * var(--tw-space-x-reverse));
  margin-left: calc(15px * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-10 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(10px * var(--tw-space-x-reverse));
  margin-left: calc(10px * calc(1 - var(--tw-space-x-reverse)));
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-md {
  border-radius: 20px;
}
.rounded-lg {
  border-radius: 50px;
}
.border-1 {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border {
  border-width: 1px;
}
.border-b-1 {
  border-bottom-width: 1px;
}
.border-t-1 {
  border-top-width: 1px;
}
.border-t-2 {
  border-top-width: 2px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(239 240 243 / var(--tw-border-opacity));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-red {
  --tw-bg-opacity: 1;
  background-color: rgb(237 78 107 / var(--tw-bg-opacity));
}
.bg-brand {
  --tw-bg-opacity: 1;
  background-color: rgb(10 10 30 / var(--tw-bg-opacity));
}
.bg-none {
  background-color: transparent;
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(247 247 249 / var(--tw-bg-opacity));
}
.bg-gray-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(181 181 187 / var(--tw-bg-opacity));
}
.bg-yellow-100 {
  background-color: rgba(228, 178, 0, 0.2);
}
.bg-yellow-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 224 62 / var(--tw-bg-opacity));
}
.bg-yellow-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 215 0 / var(--tw-bg-opacity));
}
.bg-yellow-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 216 10 / var(--tw-bg-opacity));
}
.bg-yellow-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(201 145 0 / var(--tw-bg-opacity));
}
.bg-none {
  background-image: none;
}
.bg-cover {
  background-size: cover;
}
.bg-center {
  background-position: center;
}
.bg-no-repeat {
  background-repeat: no-repeat;
}
.p-0 {
  padding: 0px;
}
.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}
.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}
.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.px-15 {
  padding-left: 15px;
  padding-right: 15px;
}
.pl-55 {
  padding-left: 55px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pt-40 {
  padding-top: 40px;
}
.pb-\[72\%\] {
  padding-bottom: 72%;
}
.pt-10 {
  padding-top: 10px;
}
.pb-\[60\%\] {
  padding-bottom: 60%;
}
.pt-12 {
  padding-top: 12px;
}
.pt-80 {
  padding-top: 80px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pb-\[75\%\] {
  padding-bottom: 75%;
}
.pt-13 {
  padding-top: 13px;
}
.pb-80 {
  padding-bottom: 80px;
}
.pt-15 {
  padding-top: 15px;
}
.pb-70 {
  padding-bottom: 70px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pt-100 {
  padding-top: 100px;
}
.pt-20 {
  padding-top: 20px;
}
.text-center {
  text-align: center;
}
.font-mono {
  font-family: Gilroy, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.text-18 {
  font-size: 18px;
}
.text-40 {
  font-size: 40px;
}
.text-13 {
  font-size: 13px;
}
.text-28 {
  font-size: 28px;
}
.text-24 {
  font-size: 24px;
}
.text-16 {
  font-size: 16px;
}
.text-26 {
  font-size: 26px;
}
.text-22 {
  font-size: 22px;
}
.text-20 {
  font-size: 20px;
}
.font-semibold {
  font-weight: 600;
}
.leading-tight {
  line-height: 1.2;
}
.leading-normal {
  line-height: 1.6;
}
.leading-snug {
  line-height: 1.3;
}
.tracking-wide {
  letter-spacing: .035em;
}
.text-brand {
  --tw-text-opacity: 1;
  color: rgb(10 10 30 / var(--tw-text-opacity));
}
.text-purple {
  --tw-text-opacity: 1;
  color: rgb(254, 123, 182);
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(108 108 120 / var(--tw-text-opacity));
}
.text-green {
  --tw-text-opacity: 1;
  color: rgb(0 128 0 / var(--tw-text-opacity));
}
.text-red {
  --tw-text-opacity: 1;
  color: rgb(237 78 107 / var(--tw-text-opacity));
}
@media (max-width: 767.08px) {
  body {
    line-height: 1.62;
  }
}
.hover_border-violet:hover {
  --tw-border-opacity: 1;
  border-color: rgb(186 70 240 / var(--tw-border-opacity));
}
.hover_text-purple:hover {
  --tw-text-opacity: 1;
  color: rgb(254, 123, 182);
}
.hover_text-violet:hover {
  --tw-text-opacity: 1;
  color: rgb(254, 93, 174);
}
.hover_underline:hover {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
@media (max-width: 1365.08px) {
  .xl-max_fixed {
    position: fixed;
  }
  .xl-max_mr-0 {
    margin-right: 0px;
  }
  .xl-max_mt-5 {
    margin-top: 5px;
  }
  .xl-max_block {
    display: block;
  }
  .xl-max_w-full {
    width: 100%;
  }
  .xl-max_flex-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .xl-max_basis-\[450px\] {
    -ms-flex-preferred-size: 450px;
        flex-basis: 450px;
  }
  .xl-max_border-t-1 {
    border-top-width: 1px;
  }
  .xl-max_border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgb(239 240 243);
  }
  .xl-max_py-8 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .xl-max_py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .xl-max_px-40 {
    padding-left: 40px;
    padding-right: 40px;
  }
  .xl-max_pt-12 {
    padding-top: 12px;
  }
}
@media (max-width: 1023.08px) {
  .lg-max_mt-40 {
    margin-top: 40px;
  }
  .lg-max_border-t-2 {
    border-top-width: 2px;
  }
  .lg-max_border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgb(239 240 243 / var(--tw-border-opacity));
  }
  .lg-max_pt-60 {
    padding-top: 60px;
  }
  .lg-max_pt-40 {
    padding-top: 40px;
  }
}
@media (max-width: 767.08px) {
  .md-max_ml-15 {
    margin-left: 15px;
  }
  .md-max_mt-15 {
    margin-top: 15px;
  }
  .md-max_mt-30 {
    margin-top: 30px;
  }
  .md-max_mb-20 {
    margin-bottom: 20px;
  }
  .md-max_h-40 {
    height: 40px;
  }
  .md-max_w-40 {
    width: 40px;
  }
  .md-max_w-full {
    width: 100%;
  }
  .md-max_px-20 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .md-max_pt-30 {
    padding-top: 30px;
  }
  .md-flex-row {
    flex-direction: row;
  }
  .md-flex-col {
    flex-direction: column;
  }
}
@media (max-width: 575.08px) {
  .sm-max_pt-40 {
    padding-top: 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1365.08px) {
  .lg-only_ml-15 {
    margin-left: 15px;
  }
  .lg-only_text-34 {
    font-size: 34px;
  }
}
@media (min-width: 576.08px) {
  .sm_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sm_basis-3\/6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .sm_text-26 {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .md_top-81 {
    top: 81px;
  }
  .md_my-120 {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .md_mb-0 {
    margin-bottom: 0px;
  }
  .md_mb-40 {
    margin-bottom: 40px;
  }
  .md_mt-100 {
    margin-top: 100px;
  }
  .md_ml-20 {
    margin-left: 20px;
  }
  .md_mb-130 {
    margin-bottom: 130px;
  }
  .md_block {
    display: block;
  }
  .md_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .md_hidden {
    display: none;
  }
  .md_w-\[324px\] {
    width: 324px;
  }
  .md_w-100 {
    width: 100px;
  }
  .md_flex-initial {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  .md_flex-1 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
  }
  .md_basis-2\/6 {
    -ms-flex-preferred-size: 33.333333%;
        flex-basis: 33.333333%;
  }
  .md_space-x-40 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(40px * var(--tw-space-x-reverse));
    margin-left: calc(40px * calc(1 - var(--tw-space-x-reverse)));
  }
  .md_space-x-15 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(15px * var(--tw-space-x-reverse));
    margin-left: calc(15px * calc(1 - var(--tw-space-x-reverse)));
  }
  .md_space-x-20 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(20px * var(--tw-space-x-reverse));
    margin-left: calc(20px * calc(1 - var(--tw-space-x-reverse)));
  }
  .md_px-40 {
    padding-left: 40px;
    padding-right: 40px;
  }
  .md_pb-\[26\%\] {
    padding-bottom: 26%;
  }
  .md_pt-0 {
    padding-top: 0px;
  }
  .md_text-left {
    text-align: left;
  }
  .md_text-20 {
    font-size: 20px;
  }
  .md_text-28 {
    font-size: 28px;
  }
  .md_leading-tight {
    line-height: 1.2;
  }
}
@media (min-width: 1024px) {
  .lg_ml-30 {
    margin-left: 30px;
  }
  .lg_mb-0 {
    margin-bottom: 0px;
  }
  .lg_block {
    display: block;
  }
  .lg_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .lg_grid {
    display: grid;
  }
  .lg_hidden {
    display: none;
  }
  .lg_w-\[290px\] {
    width: 290px;
  }
  .lg_w-\[180px\] {
    width: 180px;
  }
  .lg_grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg_space-x-40 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(40px * var(--tw-space-x-reverse));
    margin-left: calc(40px * calc(1 - var(--tw-space-x-reverse)));
  }
  .lg_pb-0 {
    padding-bottom: 0px;
  }
  .lg_pb-\[35\%\] {
    padding-bottom: 35%;
  }
  .lg_pt-\[130px\] {
    padding-top: 130px;
  }
  .lg_pb-\[130px\] {
    padding-bottom: 130px;
  }
  .lg_pb-130 {
    padding-bottom: 130px;
  }
  .lg_pt-115 {
    padding-top: 115px;
  }
  .lg_text-18 {
    font-size: 18px;
  }
}
@media (min-width: 1366px) {
  .xl_ml-40 {
    margin-left: 40px;
  }
  .xl_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .xl_hidden {
    display: none;
  }
  .xl_px-20 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .xl_pl-100 {
    padding-left: 100px;
  }
  .xl_text-70 {
    font-size: 70px;
  }
}
.wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  padding-top: 117px;
  position: relative;
}

.title {
  font-family: Gilroy, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  --tw-text-opacity: 1;
  color: rgb(10 10 30 / var(--tw-text-opacity));
}

@media (max-width: 1023.08px) {

  .title {
    font-size: 34px;
  }
}

@media (max-width: 767.08px) {

  .title {
    font-size: 28px;
  }
}

svg {
  fill: currentColor;
}

.youtube-embed-wrapper:not(:first-child) {
  margin-top: 20px;
}

.youtube-embed-wrapper {
  margin-bottom: 30px;
}

.content {
  font-size: 18px;
}
.content img {
  margin-bottom: 0px;
}
.content table {
  width: 100%;
  margin-bottom: 27px;
}
.content table td {
  padding: 10px;
  text-align: center;
  border: 1px solid #ddd;
}
.content a {
  text-decoration: underline;
}
.content a:hover {
  text-decoration: none;
}
.content ul {
  margin-bottom: 27px;
  padding-left: 30px;
}
.content ul li {
  padding-left: 20px;
  position: relative;
}
.content ul li:not(:last-child) {
  margin-bottom: 15px;
}
.content ul li:before {
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgb(254, 123, 182);
}
.content ol {
  margin-bottom: 27px;
  padding-left: 30px;
  counter-reset: ol-counter;
}
.content ol li {
  padding-left: 20px;
  position: relative;
  counter-increment: ol-counter;
}
.content ol li:not(:last-child) {
  margin-bottom: 15px;
}
.content ol li:before {
  top: 0;
  left: -11px;
  width: 20px;
  color: rgb(254, 123, 182);
  font-weight: 700;
  text-align: right;
  position: absolute;
  content: counter(ol-counter) ". ";
}

.xlike__link_active {
  fill: red;
}

.xlike .xlike__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.xlike__items {
  margin: 0 !important;
}

.share-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  width: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(26 26 48 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.share-link:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(186 70 240 / var(--tw-bg-opacity));
}
.share-link .icon {
  fill: #fff;
}

@media (max-width: 1365.08px) {
  body:not(.menu-open) .header-menu {
    display: none;
  }
}
@media (max-width: 767.08px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .wrapper {
    padding-top: 100px;
  }
}
.article-name {
  font-family: Gilroy, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --tw-text-opacity: 1;
  color: rgb(10 10 30 / var(--tw-text-opacity));
}
.article-name:hover {
  --tw-text-opacity: 1;
  color: rgb(254, 123, 182);
}
.article-name h2 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

.article-img {
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.article-title h1 {
  margin-bottom: 12px;
}

.article-box:not(:first-child) {
  padding-top: 40px;
  margin-top: 40px;
  border-top-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(239 240 243 / var(--tw-border-opacity));
}

.article-box_col:not(:first-child) {
  padding-top: 30px;
  margin-top: 30px;
}

.article {
  max-width: 840px;
}

@media (max-width: 767.08px) {
  .article-box:not(:first-child) {
    padding-top: 30px;
    margin-top: 30px;
  }
  .article-col:not(:first-child) {
    padding-top: 30px;
    margin-top: 30px;
    border-top-width: 2px;
    --tw-border-opacity: 1;
    border-color: rgb(239 240 243 / var(--tw-border-opacity));
  }
  .article-img {
    padding-bottom: 62%;
  }
  .article-name {
    line-height: 1.3;
  }
}
.btn {
  line-height: 1.32;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 34px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  font-family: Gilroy, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 24px;
  font-weight: 600;
}

.btn-yellow {
  --tw-bg-opacity: 1;
  background-color: rgb(255 216 10 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(10 10 30 / var(--tw-text-opacity));
}

.btn-yellow:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 224 62 / var(--tw-bg-opacity));
}

.btn-pink {
  --tw-bg-opacity: 1;
  background-color: rgb(254, 93, 174);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.btn-pink:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(228, 70, 156);
}

.category-row {
  margin-left: -10px;
  margin-right: -10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow-y: auto;
}@media (max-width: 767.08px) {.category-row {
    max-height: 100%;
    --tw-bg-opacity: 1;
    background-color: rgb(239 240 243 / var(--tw-bg-opacity));
  }
}@media (min-width: 768px) {.category-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }.category-row > div {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.category-wrap {
  top: 73px;
  z-index: 21;
  right: 0px;
  left: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

@media (max-width: 767.08px) {.category-wrap {
    position: sticky;
    padding-bottom: 15px;
  }
}

.category {
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 36px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  --tw-border-opacity: 1;
  border-color: rgb(10 10 30 / var(--tw-border-opacity));
  font-family: Gilroy, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 18px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(10 10 30 / var(--tw-text-opacity));
}

@media (max-width: 767.08px) {.category {
    font-size: 16px;
  }
}

@media (min-width: 768px) {.category {
    margin-bottom: 10px;
    border-radius: 20px;
    border-width: 2px;
    padding-left: 18px;
    padding-right: 18px;
  }.category:hover {
    --tw-border-opacity: 1;
    border-color: rgb(254, 93, 174);
    --tw-text-opacity: 1;
    color: rgb(254, 93, 174);
  }
}
.category.active {
  --tw-border-opacity: 1;
  border-color: rgb(254, 123, 182);
  --tw-bg-opacity: 1;
  background-color: rgb(254, 123, 182);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.active .category {
  cursor: default;
  background: rgb(228, 70, 156);
  border-color: rgb(228, 70, 156);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.category-toggle {
  position: relative;
  width: 100%;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(10 10 30 / var(--tw-border-opacity));
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
}

@media (min-width: 768px) {.category-toggle {
    display: none;
  }
}
.category-toggle.active {
  --tw-bg-opacity: 1;
  background-color: rgb(186 70 240 / var(--tw-bg-opacity));
}
.category-toggle-icon {
  position: absolute;
  bottom: 50%;
  right: 20px;
  height: 18px;
  width: 18px;
  --tw-translate-y: 50%;
  -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
          transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.category-toggle-icon--close {
  right: 0;
}

@media (max-width: 767.08px) {
  body:not(.category-show) .category-row {
    display: none;
  }
  body:not(.category-show) .category-toggle-icon--close {
    display: none;
  }
  body.category-show .category-wrap {
    background: #eff0f3;
  }
  body.category-show .category-wrap .category-toggle {
    border: 0;
    padding-left: 0;
  }
  body.category-show .category-wrap .category-toggle-icon--plus {
    display: none;
  }
}

.footer-nav {
  grid-area: footer-nav;
}

.footer-subtitle {
  font-family: Gilroy, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 20px;
  font-weight: 600;
}

.footer-link {
  --tw-text-opacity: 1;
  color: rgb(255 255 255);
  white-space: nowrap;
}

.footer-link:hover {
  --tw-text-opacity: 1;
  color: rgb(254, 123, 182);
}

.social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  width: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
}

.social-link:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(228, 70, 156);
}

.justify-end {
  justify-content: flex-end;
}


.input {
  outline: none !important;
  height: 50px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(239 240 243 / var(--tw-border-opacity));
}.input:focus {
  --tw-border-opacity: 1;
  border-color: rgb(181 181 187 / var(--tw-border-opacity));
  outline: 2px solid transparent;
  outline-offset: 2px;
  outline-color: transparent;
}
.input:focus::-webkit-input-placeholder {
  opacity: 0;
}
.input:focus::-moz-placeholder {
  opacity: 0;
}
.input:focus:-ms-input-placeholder {
  opacity: 0;
}
.input:focus::-ms-input-placeholder {
  opacity: 0;
}
.input:focus::placeholder {
  opacity: 0;
}
.input_error {
  --tw-border-opacity: 1;
  border-color: rgb(237 78 107 / var(--tw-border-opacity));
}

.fancybox__backdrop {
  background: rgba(10, 10, 30, 0.7);
}
.hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  z-index: 1;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 9999px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(239 240 243 / var(--tw-border-opacity));
}@media (max-width: 1365.08px) {.hamburger {
    height: 40px;
    width: 40px;
  }
}

.hamburger-inner {
  height: 2px;
  display: block;
  position: relative;
  width: 22px;
  --tw-bg-opacity: 1;
  background-color: rgb(10 10 30 / var(--tw-bg-opacity));
}

@media (max-width: 767.08px) {.hamburger-inner {
    width: 18px;
  }
}

.hamburger-inner::after {
  bottom: -7px;
}

.hamburger-inner::before {
  top: -7px;
}

.hamburger-inner::after,
.hamburger-inner::before {
  right: 0;
  content: "";
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  display: block;
  height: 2px;
  --tw-bg-opacity: 1;
  background-color: rgb(10 10 30 / var(--tw-bg-opacity));
}

body.menu-open .hamburger-inner {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
body.menu-open .hamburger-inner:after {
  display: none;
}
body.menu-open .hamburger-inner:before {
  top: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(15px * var(--tw-space-x-reverse));
  margin-left: calc(15px * calc(1 - var(--tw-space-x-reverse)));
}

.pagination-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  width: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 9999px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(10 10 30 / var(--tw-border-opacity));
  font-size: 18px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(10 10 30 / var(--tw-text-opacity));
}

.pagination-link:hover {
  --tw-border-opacity: 1;
  border-color: rgb(254, 93, 174);
  --tw-text-opacity: 1;
  color: rgb(254, 93, 174);
}
.pagination-link.active {
  --tw-border-opacity: 1;
  border-color: rgb(254, 93, 174);
  --tw-bg-opacity: 1;
  background-color: rgb(254, 93, 174);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.pagination-link.disabled {
  pointer-events: none;
  cursor: default;
  --tw-border-opacity: 1;
  border-color: rgb(181 181 187 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(181 181 187 / var(--tw-text-opacity));
}
.pagination-link.disabled:hover {
  --tw-border-opacity: 1;
  border-color: rgb(10 10 30 / var(--tw-border-opacity));
}
.subscribe {
  background-image: url("../img/bg/bg_subscribe.webp");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 40px;
  padding-bottom: 240px;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}@media (min-width: 1024px) and (max-width: 1365.08px) {.subscribe {
    padding-left: 40px;
    padding-right: 40px;
  }
}@media (min-width: 768px) {.subscribe {
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 55px;
    padding-bottom: 65px;
    text-align: left;
  }
}@media (min-width: 1366px) {.subscribe {
    background-position: center;
  }
}

.subscribe-title {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

@media (max-width: 1023.08px) {
  .subscribe {
    background-image: url("../img/bg/bg_tab_subscribe.webp");
  }
}
@media (max-width: 767.08px) {
  .subscribe {
    background: url("../img/bg/bg_mob_subscribe.webp") no-repeat center bottom, url("../img/bg/bg_mob_subscribe_back.webp") no-repeat center/cover;
  }
}
.tag {
  color: #6a7d94;
  background-color: #eceef1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 26px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  --tw-border-opacity: 1;
  border-color: rgb(10 10 30 / var(--tw-border-opacity));
  padding-left: 10px;
  padding-right: 10px;
  font-size: 16px;
  font-weight: 600;
}.tag:hover {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.tag_purple {
  --tw-bg-opacity: 1;
  background-color: rgb(255, 222, 236);
  --tw-text-opacity: 1;
  color: rgb(228, 70, 156);
}

.tag_yellow {
  color: #c99100;
  background-color: #faf0cc;
}

.tag_peach {
  color: #e26f3f;
  background-color: #fbe4da;
}

.tag_violet {
  color: #ba46f0;
  background-color: #f7e9fd;
}

.tag_red {
  color: #ed4e6b;
  background-color: #fce3e7;
}

.tag_pink {
  color: #dc44cd;
  background-color: #fae3f8;
}

.tag_green {
  color: #87b044;
  background-color: #ebf5db;
}

.tag_azure {
  color: #3ebbb5;
  background-color: #e5f8f7;
}

.tag_blue {
  color: #3587e8;
  background-color: #e5effc;
}

.tag_blue-light {
  color: #41a1db;
  background-color: #e6f5fe;
}

@media (min-width: 768px) {
  .tag {
    height: 24px;
  }
}

p[style="text-align:center"] img {
  display: inline;
}