/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */

.pswp {
    --pswp-bg: #fff;
    --pswp-placeholder-bg: #fff;

    --pswp-root-z-index: 990;

    --pswp-preloader-color: #fff;
    --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.7);

    /* defined via js:
    --pswp-transition-duration: 333ms; */

    --pswp-icon-color: #FC491D;
    --pswp-icon-color-secondary: #fff;
    --pswp-icon-stroke-color: #fff;
    --pswp-icon-stroke-width: 4px;
    --pswp-icon-margin: 15px;

    --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.caption-info {
    z-index: 999;
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--pswp-bg);
    color: var(--pswp-icon-color);
}
.caption-info-wrapper {
    text-align: center;
    max-width: 80%;
}
/* Do ew zmiany */
.caption-info-title {
    font-size: 30px;
    font-weight: bold;
}
.caption-info-desc {

}

.caption-info-close {
    font-family: Maria Unconnected, sans-serif;
    cursor: pointer;
    position: absolute;
    text-align: center;
    font-size: 36px;
    width: 44px;
    height: 44px;
    top: 0;
    right: 0;
    margin-top: 15px;
    margin-right: 7px;
}

.caption-info-button {
    cursor: default;
    position: absolute !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--pswp-icon-color) !important;
    color: var(--pswp-icon-color);
    font-size: 18px;
    width: 36px !important;
    height: 36px !important;
    border-radius: 100%;
    padding: 1rem;
    left: 50%;
    bottom: var(--pswp-icon-margin);
    transform: translateX(-50%);
    font-family: Maria Unconnected, sans-serif;
    line-height: 36px;
}

.hidden-caption-content {
    display: none;
}


.pswp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--pswp-root-z-index);
    display: none;
    touch-action: none;
    outline: 0;
    opacity: 0.003;
    contain: layout style size;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
    outline: 0;
}

.pswp * {
    box-sizing: border-box;
}

.pswp img {
    max-width: none;
}

.pswp--open {
    display: block;
}

.pswp,
.pswp__bg {
    transform: translateZ(0);
    will-change: opacity;
}

.pswp__bg {
    opacity: 1 !important;
    background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
    overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__img,
.pswp__content,
.pswp__zoom-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*.pswp__item {*/
/*    width: 80dvw !important;*/
/*    height: 80% !important;*/
/*    top: 10%;*/
/*    left: 10%;*/
/*}*/
/*.pswp__zoom-wrap {*/
/*    width: 80% !important;*/
/*    height: 80% !important;*/
/*    left: 10%;*/
/*}*/

.pswp__img {
    object-position: center center;
    object-fit: contain;
    /* transform: scale(0.8); */
}

.pswp__img,
.pswp__zoom-wrap {
    width: auto;
    height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
    cursor: -webkit-zoom-out;
    cursor: -moz-zoom-out;
    cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.pswp__item {
    /* z-index for fade transition */
    z-index: 1;
    overflow: hidden;
}

.pswp__hidden {
    display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
    pointer-events: none;
}
.pswp__content > * {
    pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
    display: grid;
}
.pswp__error-msg {
    margin: auto;
    font-size: 1em;
    line-height: 1;
    color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
    opacity: 0.005;
    will-change: opacity;
    transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
    z-index: 10; /* always overlap slide content */
    pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
    opacity: 1;
    pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
    position: relative;
    display: block;
    width: 50px;
    height: 60px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    cursor: pointer;
    background: none;
    border: 0;
    box-shadow: none;
    opacity: 1;
    -webkit-appearance: none;
    -webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
    transition: none;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
    opacity: 1;
}

.pswp__button:disabled {
    opacity: 0.3;
    cursor: auto;
}

.pswp__icn {
    fill: var(--pswp-icon-color);
    color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
    position: absolute;
    top: 14px;
    left: 9px;
    width: 32px;
    height: 32px;
    overflow: hidden;
    pointer-events: none;
}

.pswp__icn-shadow {
    stroke: var(--pswp-icon-stroke-color);
    stroke-width: var(--pswp-icon-stroke-width);
    fill: none;
}

.pswp__icn:focus {
    outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
    background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    z-index: 10;

    background-color: transparent !important;

    /* allow events to pass through top bar itself */
    pointer-events: none !important;
}
.pswp__top-bar > * {
    pointer-events: auto;
    /* this makes transition significantly more smooth,
       even though inner elements are not animated */
    will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 1 !important;
    font-family: Maria Unconnected, sans-serif;
    overflow: initial !important;
    margin-top: var(--pswp-icon-margin) !important;
    margin-right: 7px !important;
    width: 40px;
    height: 40px;
}
.pswp__button--close::before {
    content: 'x';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 36px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: var(--pswp-icon-color);
}
.pswp__button--close svg {
    display: none;
    /*top: 7px;*/
    /*left: -9px;*/
    /*width: 64px;*/
    /*height: 64px;*/
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
    font-family: Maria Unconnected, sans-serif;
    font-feature-settings: "calt" 0;
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    top: 50%;
    display: flex;
    align-items: center;
    transform: translateY(-50%);
}

.pswp__button--arrow:disabled {
    display: none;
    cursor: default;
}

.pswp__button--arrow .pswp__icn {
    display: none;
    /*top: 50%;*/
    /*margin-top: -30px;*/
    /*width: 60px;*/
    /*height: 60px;*/
    /*background: none;*/
    /*border-radius: 0;*/
}

.pswp--one-slide .pswp__button--arrow {
    display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
    visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
    visibility: visible;
}

.pswp__button--arrow--prev {
    position: absolute !important;
    right: auto;
    left: 0;
}

.pswp__button--arrow--next {
    right: 0px;
}

.pswp__button--arrow--prev::before,
.pswp__button--arrow--next::before {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-size: 36px;
    color: var(--pswp-icon-color);
}

.pswp__button--arrow--prev::before {
    content: "<";
    text-align: left;
    margin-left: var(--pswp-icon-margin);
}

.pswp__button--arrow--next::before {
    content: '>';
    padding-right: var(--pswp-icon-margin);
}

.pswp__button--arrow--next .pswp__icn {
    /*left: auto;*/
    /*right: 14px;*/
    /* flip horizontally */
    /*transform: scale(-1, 1);*/
}

/*

  Zoom button

*/
.pswp__button--zoom {
    display: none !important;
}

.pswp--zoom-allowed .pswp__button--zoom {
    display: none;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
    display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
    position: relative;
    overflow: hidden;
    width: 50px;
    height: 60px;
    margin-right: auto;
}

.pswp__preloader .pswp__icn {
    opacity: 0;
    transition: opacity 0.2s linear;
    animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
    opacity: 1;
}

@keyframes pswp-clockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
    position: absolute;
    top: 0;
    left: 0;
    font-family: Maria Unconnected, sans-serif;
    height: 30px;
    margin-top: var(--pswp-icon-margin);
    margin-inline-start: var(--pswp-icon-margin);
    font-size: 18px;
    line-height: 30px;
    color: var(--pswp-icon-color) !important;
    padding: 0;
    /*text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);*/
    opacity: 1;
}

.pswp--one-slide .pswp__counter {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
// @font-face
// {
//     font-family: 'slick';
//     font-weight: normal;
//     font-style: normal;

//     src: url('./fonts/slick.eot');
//     src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
// }
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    // font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    // font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    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);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[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;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*
	
	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .pswp__button:focus,
  .pswp__button:hover {
    opacity: 1; }
  .pswp__button:active {
    outline: none;
    opacity: 0.9; }
  .pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(default-skin.svg); }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
          transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }
  .pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px; }
    .pswp__share-tooltip a:hover {
      text-decoration: none;
      color: #000; }
    .pswp__share-tooltip a:first-child {
      /* round corners on the first/last list item */
      border-radius: 2px 2px 0 0; }
    .pswp__share-tooltip a:last-child {
      border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }
  .pswp__share-modal--fade-in .pswp__share-tooltip {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }
  a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*

	3. Index indicator ("1 of X" counter)

 */
/*.pswp__counter {*/
/*  position: absolute;*/
/*  left: 0;*/
/*  top: 0;*/
/*  height: 44px;*/
/*  font-size: 13px;*/
/*  line-height: 44px;*/
/*  color: #FFF;*/
/*  opacity: 0.75;*/
/*  padding: 0 10px; }*/

/*
	
	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }
  .pswp__caption small {
    font-size: 11px;
    color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }
  .pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url(preloader.gif) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise 500ms linear infinite;
            animation: clockwise 500ms linear infinite; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
            animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /* 
			The idea of animating inner circle is based on Polymer ("material") loading indicator 
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }

@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

/*
	
	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }

/*
! tailwindcss v3.4.1 | 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 {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 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.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  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: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
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. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

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

/*
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-feature-settings: inherit; /* 1 */
  font-variation-settings: 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;
}

/*
Reset default styling for dialogs.
*/
dialog {
  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::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 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;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}

*, ::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-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --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-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --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%;
}
@media (min-width: none) {

  .container {
    max-width: none;
  }
}
.prose {
  color: var(--tw-prose-body);
  max-width: 65ch;
}
.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}
.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}
.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}
.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}
.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}
.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}
.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-left-width: 0.25rem;
  border-left-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-left: 1em;
}
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}
.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 900;
  color: inherit;
}
.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}
.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}
.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-right: 0.375em;
  padding-bottom: 0.1875em;
  padding-left: 0.375em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: "`";
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: "`";
}
.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}
.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}
.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}
.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}
.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
}
.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
}
.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}
.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
}
.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.prose {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: 17 24 39;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: 255 255 255;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}
.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.prose :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-left: 1.625em;
}
.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.visible {
  visibility: visible;
}
.collapse {
  visibility: collapse;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.bottom-0 {
  bottom: 0px;
}
.right-gap {
  right: var(--gap);
}
.my-gap {
  margin-top: var(--gap);
  margin-bottom: var(--gap);
}
.\!mb-lg-gap {
  margin-bottom: calc(var(--gap) * 2) !important;
}
.mb-2 {
  margin-bottom: calc(var(--rem) * 2);
}
.mb-4 {
  margin-bottom: calc(var(--rem) * 4);
}
.mb-8 {
  margin-bottom: calc(var(--rem) * 8);
}
.ml-auto {
  margin-left: auto;
}
.mt-sm-gap {
  margin-top: var(--sm-gap);
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.aspect-video {
  aspect-ratio: 16 / 9;
}
.w-1\/2 {
  width: 50%;
}
.w-full {
  width: 100%;
}
.border-collapse {
  border-collapse: collapse;
}
.rotate-180 {
  --tw-rotate: 180deg;
  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 {
  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));
}
.resize {
  resize: both;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.items-stretch {
  align-items: stretch;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-stretch {
  justify-content: stretch;
}
.gap-gap {
  gap: var(--gap);
}
.gap-xs-gap {
  gap: var(--xs-gap);
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.border {
  border-width: 1px;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.px-2 {
  padding-left: calc(var(--rem) * 2);
  padding-right: calc(var(--rem) * 2);
}
.py-2 {
  padding-top: calc(var(--rem) * 2);
  padding-bottom: calc(var(--rem) * 2);
}
.pb-1 {
  padding-bottom: var(--rem);
}
.text-left {
  text-align: left;
}
.text-lg {
  font-size: var(--fs-lg);
  line-height: var(--lh-lg);
}
.font-bold {
  font-weight: 700;
}
.italic {
  font-style: italic;
}
.text-grey {
  --tw-text-opacity: 1;
  color: rgb(122 122 122 / var(--tw-text-opacity));
}
.underline {
  text-decoration-line: underline;
}
.invert {
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
:root {
  --bezier1: cubic-bezier(0.5, 0, 0.1, 1);
  --bezier2: cubic-bezier(.04,.47,.19,1.12);
  --bezier3: cubic-bezier(0.25,0.46,0.45,0.94);
}

@keyframes menuUp {
  100% {
    top: 0;
  }
}
@font-face {
  font-family: "Maria Unconnected";
  src: url("/fonts/Maria-Unconnected.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Suisse Intl";
  src: url("/fonts/SuisseIntl-Bold.woff2") format("woff2"), url("/fonts/SuisseIntl-Bold.woff") format("woff"), url("/fonts/SuisseIntl-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Suisse Intl";
  src: url("/fonts/SuisseIntl-BoldIt.woff2") format("woff2"), url("/fonts/SuisseIntl-BoldIt.woff") format("woff"), url("/fonts/SuisseIntl-BoldIt.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Suisse Intl";
  src: url("/fonts/SuisseIntl-Regular.woff2") format("woff2"), url("/fonts/SuisseIntl-Regular.woff") format("woff"), url("/fonts/SuisseIntl-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Suisse Intl";
  src: url("/fonts/SuisseIntl-RegularIt.woff2") format("woff2"), url("/fonts/SuisseIntl-RegularIt.woff") format("woff"), url("/fonts/SuisseIntl-RegularIt.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}
:root {
  --rem: 1dvw;
  --gap: 4dvw;
  --gap-negative: calc(var(--gap) * -1);
  --xs-gap: 1dvw;
  --sm-gap: 2dvw;
  --rounded-dynamic: 1.5vw;
  --section-height: calc(100vh + var(--fs-xl) * var(--lh-xl) * 2);
  --span-spacing: calc((100% / 2) - (var(--gap) * -0.5));
  --news-width: calc((100% - var(--gap)) / 2);
  --news-first: calc((100% - (2/3 * var(--gap))) * 2/3);
  --programs-width: calc(50% - var(--gap) / 2);
  --icon-size: 30px;
}
@media (min-width: 1000px) {
  :root {
    --span-spacing: calc((100% / 3) - (var(--gap) * -0.66));
    --news-width: calc((100% - (2 * var(--gap))) / 3);
    --icon-size: 60px;
  }
}

:root {
  --fs-mtitle: 171px;
  --lh-mtitle: 1;
  --fs-menuitem: 30px;
  --lh-menuitem: 1;
  --fs-logo: 30px;
  --lh-logo: 1;
  --fs-red-header: 25px;
  --lh-red-header: 1.4;
  --fs-xs: 10px;
  --lh-xs: 1.4;
  --fs-sm: 12px;
  --lh-sm: 1.4;
  --fs-md: 15px;
  --lh-md: 1.5;
  --fs-lg: 18px;
  --lh-lg: 1.4;
  --fs-xl: 20px;
  --lh-xl: 1.4;
  --fs-base: var(--fs-md);
  --lh-base: var(--lh-md);
}
@media (min-width: 500px) {
  :root {
    --fs-red-header: 30px;
    --lh-red-header: 1.4;
    --fs-menuitem: 60px;
    --fs-xs: 12px;
    --fs-sm: 14px;
    --fs-md: 16px;
    --fs-lg: 20px;
    --fs-xl: 24px;
  }
}
@media (min-width: 1000px) {
  :root {
    --fs-red-header: 40px;
    --lh-red-header: 1.3;
    --fs-menuitem: calc(100vh / 7);
    --fs-xs: 14px;
    --fs-sm: 18px;
    --fs-md: 18px;
    --fs-lg: 24px;
    --fs-xl: 36px;
    --lh-xl: 1.3;
  }
}
@media (min-width: 1500px) {
  :root {
    --fs-red-header: 60px;
    --lh-red-header: 1.2;
    --fs-logo: 60px;
    --fs-xs: 16px;
    --fs-sm: 21px;
    --fs-md: 24px;
    --fs-lg: 36px;
    --lh-lg: 1.3;
    --fs-xl: 54px;
    --lh-xl: 1.2;
  }
}
@media (min-width: 2000px) {
  :root {
    --fs-red-header: 80px;
    --lh-red-header: 1.2;
    --fs-xs: 18px;
    --fs-sm: 24px;
    --fs-md: 36px;
    --lh-md: 1.3;
    --fs-lg: 48px;
    --lh-lg: 1.2;
    --fs-xl: 72px;
  }
}
@media (orientation: landscape) {
  :root {
    --fs-title: min(calc(100dvw / 5), calc((100dvh - (var(--gap) * 2)) / 3));
    --lh-title: 1;
  }
}
@media (orientation: portrait) {
  :root {
    --fs-title: calc(100dvw / 5);
    --lh-title: 1;
  }
}

.menuitem {
  font-size: var(--fs-menuitem);
}

h1, .h1 {
  font-size: var(--fs-lg);
  line-height: var(--lh-lg);
}
body.-home h1, body.-home .h1 {
  font-feature-settings: "calt" 1;
  font-family: Maria Unconnected, sans-serif;
  font-size: var(--fs-title);
  line-height: var(--lh-title);
  --tw-text-opacity: 1;
  color: rgb(252 73 29 / var(--tw-text-opacity));
}

h2, .h2 {
  font-size: var(--fs-xl);
}

h3, .h3 {
  font-size: var(--fs-lg);
}

@keyframes gradient-anim {
  0% {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(0, 1, 1);
    transform-origin: 0% 50%;
  }
  51% {
    transform-origin: 100% 50%;
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.btn, .news-index > div > .news-index-item > .news-index-item-btns > span, .news-index > div > div > .news-index-item-btns > span {
  display: inline-flex;
  height: 30px;
  width: -moz-min-content;
  width: min-content;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  font-size: var(--fs-xs);
  line-height: var(--lh-xs);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.025em;
  --tw-text-opacity: 1;
  color: rgb(112 112 112 / var(--tw-text-opacity));
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 1500px) {

  .btn, .news-index > div > .news-index-item > .news-index-item-btns > span, .news-index > div > div > .news-index-item-btns > span {
    height: 40px;
  }
}
.btn:hover, .news-index > div > .news-index-item > .news-index-item-btns > span:hover, .news-index > div > div > .news-index-item-btns > span:hover, .btn.-active, .news-index > div > .news-index-item > .news-index-item-btns > span.-active, .news-index > div > div > .news-index-item-btns > span.-active {
  --tw-bg-opacity: 1;
  background-color: rgb(122 122 122 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(240 240 240 / var(--tw-text-opacity));
}
.btn--orange {
  --tw-bg-opacity: 1;
  background-color: rgb(252 73 29 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.btn--white-black {
  text-wrap: nowrap;
  --tw-text-opacity: 1;
  color: rgb(26 26 26 / var(--tw-text-opacity));
}

.btn-group, .section-header-buttons, .section-header-categories {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rem);
}

.bubble {
  position: absolute;
  z-index: -1;
  display: block;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.bubble:nth-of-type(1) {
  left: -25%;
  top: 15%;
  height: 75%;
  width: 50%;
}
.bubble:nth-of-type(2) {
  left: 25%;
  top: 40%;
  height: 30%;
  width: 40%;
}
.bubble:nth-of-type(3) {
  left: 65%;
  top: 15%;
  height: 80%;
  width: 35%;
}
.bubble:nth-of-type(4) {
  left: 100%;
  top: 25%;
  height: 30%;
  width: 50%;
}
.bubble-anchor {
  position: absolute;
  top: 50%;
  left: 50%;
}

.circlebtn {
  display: flex;
  width: var(--icon-size);
  height: var(--icon-size);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  text-align: center;
  font-size: var(--fs-sm);
  line-height: var(--lh-sm);
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(112 112 112 / var(--tw-text-opacity));
}
.circlebtn--menu {
  display: block;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  --tw-bg-opacity: 1;
  background-color: rgb(252 73 29 / var(--tw-bg-opacity));
}
@media (min-width: 500px) {

  .circlebtn--menu {
    width: 25px;
    height: 25px;
  }
}
@media (min-width: 1000px) {

  .circlebtn--menu {
    display: none;
  }
}
.circlebtn--footer {
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.circlebtn--footer:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(26 26 26 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(240 240 240 / var(--tw-text-opacity));
}

.date, .news-index > div > .news-index-item > span, .news-index > div > div > span {
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  --tw-text-opacity: 1;
  color: rgb(112 112 112 / var(--tw-text-opacity));
}

.img, .news-index > div > .news-index-item img, .news-index > div > div img, .listing-programs-item > div > img, .cstudies-show-header-info-img > img, .news-show-header-info-img > img, .cstudies-index-item-content > img {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.img--rounded, .listing-programs-item > div > img, .cstudies-show-header-info-img > img, .news-show-header-info-img > img {
  border-radius: var(--rounded-dynamic);
}

.line {
  height: 2px;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(26 26 26 / var(--tw-bg-opacity));
  opacity: 0.15;
}
.line--red {
  --tw-bg-opacity: 1;
  background-color: rgb(252 73 29 / var(--tw-bg-opacity));
}

.logo {
  font-family: Maria Unconnected, sans-serif;
  --tw-text-opacity: 1;
  color: rgb(252 73 29 / var(--tw-text-opacity));
}
.logo > p:before {
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(240 240 240 / var(--tw-bg-opacity));
  --tw-content: ">S:W-S<";
  content: var(--tw-content);
}
@media (min-width: 1000px) {

  .logo > p:before {
    display: none;
  }
}
footer .logo > p {
  text-wrap: wrap;
  font-size: var(--fs-logo);
  line-height: var(--lh-logo);
}
footer .logo > p:before {
  display: none;
}
@media (min-width: 500px) {

  .logo:hover {
    --tw-text-opacity: 1;
    color: rgb(122 122 122 / var(--tw-text-opacity));
  }
}
@media (min-width: 1000px) {

  .logo:hover {
    --tw-text-opacity: 1;
    color: rgb(122 122 122 / var(--tw-text-opacity));
  }
}

.switch {
  position: absolute;
  top: var(--gap);
  left: var(--span-spacing);
  z-index: 999;
  display: none;
  width: -moz-min-content;
  width: min-content;
  cursor: pointer;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--xs-gap);
}

@media (min-width: 500px) {

  .switch {
    display: flex;
  }
}
.switch-slide {
  position: relative;
  height: 20px;
  width: 40px;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 1000px) {

  .switch-slide {
    height: 25px;
    width: 50px;
  }
}
.switch-slide-dot {
  position: absolute;
  top: 5px;
  left: 5px;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(112 112 112 / var(--tw-bg-opacity));
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 1000px) {

  .switch-slide-dot {
    top: 6px;
    left: 6px;
    width: 12px;
    height: 12px;
  }
}
.switch > p {
  text-wrap: nowrap;
  font-size: var(--fs-sm);
  line-height: var(--lh-sm);
  --tw-text-opacity: 1;
  color: rgb(112 112 112 / var(--tw-text-opacity));
}
@media (min-width: 500px) {

  .switch-on > div > div {
    left: 25px;
  }
}
@media (min-width: 1000px) {

  .switch-on > div > div {
    left: 30px;
  }
}
.switch-clicked > div {
  --tw-bg-opacity: 1;
  background-color: rgb(112 112 112 / var(--tw-bg-opacity));
}
.switch-clicked > div > div {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.body {
  position: relative;
  height: auto;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  --tw-bg-opacity: 1;
  background-color: rgb(240 240 240 / var(--tw-bg-opacity));
  font-family: Suisse Intl, Arial, sans-serif;
  font-size: var(--fs-base);
  line-height: var(--lh-base);
}
.body * {
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.body-container {
  display: flex;
  height: auto;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  overflow-x: hidden;
  padding-top: var(--gap);
  padding-bottom: var(--gap);
}

.body-wrapper {
  position: relative;
  -webkit-backface-visibility: hidden;
}

.cstudies-index {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.cstudies-index-item {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--gap);
}
@media (min-width: 1000px) {

  .cstudies-index-item {
    flex-direction: row;
  }
}
.cstudies-index-item:not(:first-child) {
  margin-top: var(--gap);
  border-top-width: 1px;
  border-color: #3c3c3c15;
  padding-top: var(--xs-gap);
}
.cstudies-index-item > p {
  width: 100%;
}
@media (min-width: 1000px) {

  .cstudies-index-item > p {
    width: var(--news-width);
    min-width: var(--news-width);
  }
}
.cstudies-index-item-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (min-width: 1000px) {

  .cstudies-index-item-content {
    width: 60%;
  }
}
.cstudies-index-item-content > p {
  font-size: var(--fs-md);
  line-height: var(--lh-md);
}
.cstudies-index-item-content > img {
  aspect-ratio: 560/333;
  width: 75%;
  border-radius: var(--rounded-dynamic);
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
@media (min-width: 500px) {

  .cstudies-index-item-content > img {
    width: 60%;
  }
}
.cstudies-index-item-content > img:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  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));
}
.cstudies-index-item-arrow {
  display: none;
  width: var(--icon-size);
  height: var(--icon-size);
}
@media (min-width: 1000px) {

  .cstudies-index-item-arrow {
    display: block;
  }
}
.cstudies-index-item-arrow > path {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.cstudies-index-item-arrow > path:hover {
  fill: #FC491D;
}
.cstudies-category {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-top: var(--gap);
}
.cstudies-show-header, .news-show-header {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: var(--gap);
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 500px) {

  .cstudies-show-header, .news-show-header {
    gap: var(--gap);
  }
}
.cstudies-show-header-content, .news-show-header-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: calc(var(--rem) * 16);
}
@media (min-width: 1000px) {

  .cstudies-show-header-content, .news-show-header-content {
    flex-direction: row;
    gap: var(--gap);
  }
}
.cstudies-show-header-content > .breadcrumbs-wrapper, .news-show-header-content > .breadcrumbs-wrapper {
  width: var(--news-width);
  min-width: var(--news-width);
}
.cstudies-show-header-content > .breadcrumbs-wrapper > a, .news-show-header-content > .breadcrumbs-wrapper > a {
  font-size: var(--fs-sm);
  line-height: var(--lh-sm);
}
.cstudies-show-header-content > .breadcrumbs-wrapper > a:first-child::after, .news-show-header-content > .breadcrumbs-wrapper > a:first-child::after {
  content: " /";
}
.cstudies-show-header-content > .breadcrumbs-wrapper > a:last-child, .news-show-header-content > .breadcrumbs-wrapper > a:last-child {
  --tw-text-opacity: 1;
  color: rgb(122 122 122 / var(--tw-text-opacity));
}
.cstudies-show-header-content > h1, .news-show-header-content > h1 {
  font-weight: 700;
}
.cstudies-show-header-info, .news-show-header-info {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: var(--gap);
}
@media (min-width: 1000px) {

  .cstudies-show-header-info, .news-show-header-info {
    flex-direction: row;
  }
}
.cstudies-show-header-info-img, .news-show-header-info-img {
  position: absolute;
  right: 0px;
  bottom: 150%;
  display: flex;
  height: auto;
}
@media (min-width: 1000px) {

  .cstudies-show-header-info-img, .news-show-header-info-img {
    position: static;
  }
}
.cstudies-show-header-info-img > img, .news-show-header-info-img > img {
  aspect-ratio: 560/333;
  height: 100%;
  width: 100%;
}
.cstudies-show-header-info-box, .news-show-header-info-box {
  display: flex;
  height: auto;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--gap);
}
.cstudies-show-header-info-nav, .news-show-header-info-nav {
  display: flex;
  height: auto;
  min-height: 36px;
  width: 100%;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
.cstudies-show-header-info-nav > a, .news-show-header-info-nav > a {
  display: flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1000px) {

  .cstudies-show-header-info-nav > a, .news-show-header-info-nav > a {
    width: 36px;
    height: 36px;
  }
}
.cstudies-show-header-info-text, .news-show-header-info-text {
  display: flex;
  flex-direction: column;
  gap: var(--xs-gap);
  font-size: var(--fs-lg);
  line-height: var(--lh-lg);
}
.cstudies-show-header-info > div:first-child, .news-show-header-info > div:first-child {
  width: var(--news-width);
  min-width: var(--news-width);
}
.cstudies-show-header-info a, .news-show-header-info a {
  text-wrap: nowrap;
  font-size: var(--fs-sm);
  line-height: var(--lh-sm);
}

.video {
  position: relative;
}
.video:before {
  display: block;
  content: "";
  padding-top: 56.25%;
}
.video > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-box {
  position: relative;
}
.video-box-btn {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cpath d='M90,0A90,90,0,1,1,0,90,90,90,0,0,1,90,0Z' fill='%23fc491d'/%3E%3Cpath d='M33.514,7.5a5,5,0,0,1,8.66,0L71.356,58.034a5,5,0,0,1-4.33,7.5H8.661a5,5,0,0,1-4.33-7.5Z' transform='translate(132 51.656) rotate(90)' fill='%23fff'/%3E%3C/svg%3E");
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  display: block;
  width: 30px;
  height: 30px;
  --tw-translate-x: -50%;
  --tw-translate-y: -50%;
  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));
  cursor: pointer;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 320px) {

  .video-box-btn {
    width: 45px;
    height: 45px;
  }
}
@media (min-width: 500px) {

  .video-box-btn {
    width: 90px;
    height: 90px;
  }
}
@media (min-width: 1000px) {

  .video-box-btn {
    width: 180px;
    height: 180px;
  }
}
.video-box-btn--off {
  display: none;
}

.itd-group, .news-index > div > .news-index-item, .news-index > div > div {
  position: relative;
  display: flex;
  cursor: default;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--xs-gap);
}
.itd-group > img, .news-index > div > .news-index-item > img, .news-index > div > div > img {
  height: 100%;
  max-height: 450px;
  width: 100%;
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 1500px) {

  .itd-group > img, .news-index > div > .news-index-item > img, .news-index > div > div > img {
    max-height: 300px;
  }
}
.itd-group > img:hover, .news-index > div > .news-index-item > img:hover, .news-index > div > div > img:hover {
  border-radius: var(--rounded-dynamic);
}
.itd-group > img:hover ~ span:last-child, .news-index > div > .news-index-item > img:hover ~ span:last-child, .news-index > div > div > img:hover ~ span:last-child {
  opacity: 1;
}
.itd-group > p, .news-index > div > .news-index-item > p, .news-index > div > div > p {
  width: 100%;
}
.itd-group > span:last-child, .news-index > div > .news-index-item > span:last-child, .news-index > div > div > span:last-child {
  position: absolute;
  top: var(--xs-gap);
  left: var(--xs-gap);
  opacity: 0;
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 500px) {

  .itd-group > span:last-child, .news-index > div > .news-index-item > span:last-child, .news-index > div > div > span:last-child {
    left: var(--gap);
    top: var(--gap);
  }
}
@media (min-width: 1000px) {

  .itd-group > span:last-child, .news-index > div > .news-index-item > span:last-child, .news-index > div > div > span:last-child {
    left: var(--sm-gap);
    top: var(--sm-gap);
  }
}

.secheader-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.secheader-group > div:first-child {
  margin-top: var(--xs-gap);
  margin-bottom: var(--sm-gap);
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: calc(var(--gap) * 2);
}
@media (min-width: 500px) {

  .secheader-group > div:first-child {
    flex-direction: row;
    gap: var(--gap);
  }
}
.secheader-group > div:first-child > p {
  width: 50%;
  font-weight: 700;
}
@media (min-width: 320px) {

  .secheader-group > div:first-child > p {
    width: 100%;
  }
}
.secheader-group > div:first-child > aside {
  width: var(--programs-width);
}
@media (min-width: 320px) {

  .secheader-group > div:first-child > aside {
    width: 100%;
  }
}
.secheader-group > div:first-child > aside > p {
  margin-bottom: var(--sm-gap);
}

.section--accordion .accordion-navigation > a {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-md);
  line-height: var(--lh-md);
  font-weight: 700;
}
.section--accordion .accordion-navigation > a svg {
  width: var(--icon-size);
  height: var(--icon-size);
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.section--accordion .accordion-navigation.-active svg {
  --tw-rotate: 180deg;
  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));
}
.section--accordion .accordion-content {
  display: none;
  overflow: hidden;
}
.section--accordion .accordion-content.-active {
  display: block;
}
.section--accordion .accordion-content.-animating {
  display: block !important;
  transition-property: height;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
.section--accordion .accordion-content-wrapper {
  padding-top: calc(var(--rem) * 2);
}

.underline-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  text-decoration-line: none;
}
.underline-link svg {
  width: var(--icon-size);
  height: var(--icon-size);
}

.underline-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  text-decoration-line: none;
}
.underline-download svg {
  width: var(--icon-size);
  height: var(--icon-size);
}

.person-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--gap);
}
.person-box > div {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 1000px) {

  .person-box > div {
    width: 50%;
  }
}
.person-box > div:first-child img {
  aspect-ratio: 1 / 1;
  width: 16rem;
  height: 16rem;
  border-radius: 9999px;
}
.person-box svg {
  width: var(--icon-size);
  height: var(--icon-size);
}

.breadcrumbs-wrapper .breadcrumbs__link {
  font-size: var(--fs-sm);
  line-height: var(--lh-sm);
}
.breadcrumbs-wrapper .breadcrumbs__link:not(:last-child)::after {
  content: " /";
}
.breadcrumbs-wrapper .breadcrumbs__link:last-child {
  --tw-text-opacity: 1;
  color: rgb(122 122 122 / var(--tw-text-opacity));
}

.mouse-follow {
  transform-origin: center;
  transition: transform 1s cubic-bezier(0.2, 1, 0.8, 1);
}

form input {
  display: inline-flex;
  height: 30px;
  width: -moz-min-content;
  width: min-content;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  font-size: var(--fs-xs);
  line-height: var(--lh-xs);
  line-height: 1;
  letter-spacing: 0.025em;
  --tw-text-opacity: 1;
  color: rgb(112 112 112 / var(--tw-text-opacity));
}

@media (min-width: 1500px) {

  form input {
    height: 40px;
  }
}

.footer-wrapper {
  position: relative;
  z-index: 101;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: stretch;
  --tw-bg-opacity: 1;
  background-color: rgb(240 240 240 / var(--tw-bg-opacity));
  padding-left: var(--gap);
  padding-right: var(--gap);
  padding-top: var(--gap);
}
.footer-title {
  margin-bottom: calc(var(--gap) * 2);
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--gap);
}
.footer-item {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 1000px) {

  .footer-item {
    flex-direction: row;
    gap: var(--gap);
  }
}
.footer-item > div {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-item > div h3 {
  font-size: var(--fs-base);
  line-height: var(--lh-base);
}
.footer-item > div > div, .footer-item > div > nav {
  margin-top: var(--xs-gap);
  margin-bottom: calc(var(--gap) * 2);
  width: 100%;
}
@media (min-width: 1000px) {

  .footer-item > div > div, .footer-item > div > nav {
    margin-bottom: var(--sm-gap);
    height: 110px;
  }
}
.footer-item-right > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-copyrights {
  margin-top: calc(var(--gap) * 2);
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--gap);
}
.footer-copyrights > div {
  width: 50%;
  font-size: var(--fs-xs);
  line-height: var(--lh-xs);
}
.footer-copyrights > div a {
  text-decoration-line: underline;
}
.footer-copyrights > div > p, .footer-copyrights > div a {
  text-wrap: nowrap;
}
.footer .scroll-up {
  width: var(--icon-size);
  height: var(--icon-size);
  cursor: pointer;
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 500px) {

  .footer .scroll-up:hover {
    --tw-translate-y: -0.75rem;
    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));
  }
}
@media (min-width: 1000px) {

  .footer .scroll-up:hover {
    --tw-translate-y: -0.75rem;
    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));
  }
}

.section--gallery {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: var(--gap);
}

@media (min-width: 1000px) {

  .section--gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.section--gallery .gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
}
@media (min-width: 500px) {

  .section--gallery .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1000px) {

  .section--gallery .gallery {
    grid-column-start: 2;
  }
}
.section--gallery .gallery-item {
  aspect-ratio: 1 / 1;
  height: 100%;
  width: 100%;
}
.section--gallery .gallery-item img {
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.section--gallery .gallery-item:nth-child(6):not(:last-child) a, .section--gallery .gallery-item--more a {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  --tw-bg-opacity: 1;
  background-color: rgb(240 240 240 / var(--tw-bg-opacity));
}
.section--gallery .gallery-item:nth-child(6):not(:last-child) img, .section--gallery .gallery-item--more img {
  display: none;
}
.section--gallery .gallery-item:nth-child(n+7) {
  display: none;
}

.header {
  position: fixed;
  top: var(--gap);
  right: var(--gap);
  z-index: 100;
}
.header-logo {
  position: fixed;
  top: var(--gap);
  left: var(--gap);
  z-index: 4;
  font-family: Maria Unconnected, sans-serif;
  font-size: var(--fs-logo);
  line-height: var(--lh-logo);
  --tw-text-opacity: 1;
  color: rgb(252 73 29 / var(--tw-text-opacity));
}
.header-menu {
  position: relative;
  z-index: 100;
  font-family: Maria Unconnected, sans-serif;
  font-size: var(--fs-logo);
  line-height: var(--lh-logo);
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(252 73 29 / var(--tw-text-opacity));
}

.section-main {
  height: var(--section-height);
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  --tw-bg-opacity: 1;
  background-color: rgb(240 240 240 / var(--tw-bg-opacity));
  padding-bottom: var(--gap);
}
@media (orientation: portrait) {
  .section-main {
    height: calc(100vh - var(--gap));
  }
  @media (min-width: 320px) {
    .section-main {
      height: calc(100vh - var(--gap));
    }
  }
  @media (min-width: 500px) {
    .section-main {
      height: var(--section-height);
    }
  }
}
@media (orientation: landscape) {
  .section-main {
    z-index: 5 !important;
    height: var(--section-height);
  }
}
.section-main h2 {
  position: absolute;
  bottom: var(--gap);
  left: 65%;
  z-index: 7;
  font-size: var(--fs-xl);
  line-height: var(--lh-xl);
}
@media (min-width: 320px) {

  .section-main h2 {
    left: 55%;
  }
}
@media (min-width: 1000px) {

  .section-main h2 {
    left: 65%;
  }
}
.section-main-photos {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  --tw-bg-opacity: 1;
  background-color: rgb(240 240 240 / var(--tw-bg-opacity));
}
@media (min-width: 320px) {
  .section-main-photos {
    height: 100%;
    justify-content: space-between;
  }
}
.section-main-photos-box {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
}
@media (min-width: 320px) {
  .section-main-photos-box > img {
    aspect-ratio: 1/1;
    min-height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media (min-width: 500px) {
  .section-main-photos-box > img {
    aspect-ratio: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.section-main-photos-box:first-child {
  z-index: 4;
  justify-content: flex-start;
}
.section-main-photos-box:first-child img {
  --tw-translate-x: -100%;
  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));
}
.section-main-photos-box:nth-child(2) {
  z-index: 7;
  justify-content: flex-end;
}
@media (min-width: 320px) {

  .section-main-photos-box:nth-child(2) {
    margin-top: calc(var(--rem) * 8);
  }
}
@media (min-width: 500px) {

  .section-main-photos-box:nth-child(2) {
    margin-top: calc(var(--rem) * 8);
  }
}
@media (min-width: 1000px) {

  .section-main-photos-box:nth-child(2) {
    margin-top: 0px;
  }
}
.section-main-photos-box:nth-child(2) img {
  --tw-translate-x: 100%;
  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));
}
.section-main-photos-box:last-child {
  z-index: 7;
  justify-content: center;
}
@media (min-width: 320px) {

  .section-main-photos-box:last-child {
    justify-content: flex-start;
  }
}
@media (min-width: 1000px) {

  .section-main-photos-box:last-child {
    justify-content: center;
  }
}
.section-main-photos-box:last-child > img {
  position: relative;
  margin-top: calc(var(--rem) * 8);
  margin-right: calc(var(--rem) * 16);
  --tw-translate-x: -200%;
  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));
}
.section-main img {
  display: flex;
  max-width: 50%;
  border-radius: var(--rounded-dynamic);
  opacity: 0;
}
@media (min-width: 500px) {

  .section-main img {
    max-width: 50%;
  }
}
@media (min-width: 1000px) {

  .section-main img {
    max-width: 30%;
  }
}
.section-main h1 {
  position: absolute;
  top: 30%;
  z-index: 6;
  cursor: default;
  text-wrap: wrap;
  opacity: 0;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 100ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
@media (min-width: 320px) {

  .section-main h1 {
    top: 30%;
  }
}
@media (min-width: 500px) {

  .section-main h1 {
    top: 15%;
  }
}
@media (min-width: 1000px) {

  .section-main h1 {
    top: 7.5vh;
  }
}
.section-main h1 p {
  margin: 0px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: stretch;
  overflow: hidden;
  padding: 0px;
}
.section-main .btn, .section-main .news-index > div > .news-index-item > .news-index-item-btns > span, .section-main .news-index > div > div > .news-index-item-btns > span {
  position: absolute;
  top: calc(100vh - var(--gap) * 2);
  left: 55%;
  z-index: 999;
  --tw-translate-y: -100%;
  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));
}
@media (min-width: 1000px) {

  .section-main .btn, .section-main .news-index > div > .news-index-item > .news-index-item-btns > span, .section-main .news-index > div > div > .news-index-item-btns > span {
    left: var(--gap);
  }
}
@media (orientation: portrait) {
  .section-main .btn, .section-main .news-index > div > .news-index-item > .news-index-item-btns > span, .section-main .news-index > div > div > .news-index-item-btns > span {
    top: auto;
    bottom: 100px;
    --tw-translate-y: -100%;
    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));
  }
  @media (min-width: 320px) {
    .section-main .btn, .section-main .news-index > div > .news-index-item > .news-index-item-btns > span, .section-main .news-index > div > div > .news-index-item-btns > span {
      bottom: 75px;
    }
  }
}

.listing-programs {
  display: flex;
  width: 100%;
  flex-direction: column;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding: var(--gap);
}
.listing-programs > a:not(:first-child) {
  margin-top: var(--xs-gap);
}
@media (min-width: 500px) {

  .listing-programs > a:not(:first-child) {
    margin-top: var(--sm-gap);
  }
}
.listing-programs-item {
  margin-bottom: var(--gap);
  display: flex;
  width: 100%;
  cursor: default;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 500px) {

  .listing-programs-item {
    flex-direction: column;
    gap: var(--gap);
  }
}
.listing-programs-item > h1 {
  max-width: 25%;
  text-wrap: nowrap;
  font-size: var(--fs-xmd);
  line-height: var(--lh-xmd);
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(26 26 26 / var(--tw-text-opacity));
}
@media (min-width: 500px) {

  .listing-programs-item > h1 {
    width: 100%;
    max-width: 100%;
  }
}
.listing-programs-item > div {
  display: flex;
  max-width: 50%;
  flex-direction: column;
  gap: var(--sm-gap);
}
@media (min-width: 500px) {

  .listing-programs-item > div {
    width: 100%;
    max-width: 100%;
    gap: var(--gap);
  }
}
.listing-programs-item > div > p {
  font-size: var(--fs-base);
  line-height: var(--lh-base);
}
.listing-programs-item > div > img {
  max-width: 66%;
}
@media (min-width: 320px) {

  .listing-programs-item > div > img {
    max-width: 75%;
  }
}
.listing-programs-item > img {
  max-width: 25%;
}
@media (min-width: 500px) {

  .listing-programs-item > img {
    display: none;
  }
}
@media (min-width: 1000px) {

  .listing-programs-item > img {
    width: 30px;
    height: 30px;
  }
}
.listing-programs-item:last-child {
  margin-bottom: 0px;
}

.menu-overlay {
  position: fixed;
  top: 100%;
  left: 0px;
  z-index: 998;
  display: none;
  height: 100dvh;
  width: 100dvw;
  --tw-bg-opacity: 1;
  background-color: rgb(240 240 240 / var(--tw-bg-opacity));
  opacity: 0;
  transition-property: none;
}
.menu-overlay-nav {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  opacity: 1;
  transition-property: all;
  transition-duration: 150ms;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-overlay-nav-wrapper {
  display: flex;
  height: 100dvh;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--gap);
  padding: var(--gap);
  font-family: Maria Unconnected, sans-serif;
}
.menu-overlay-nav-content-logo > p {
  position: relative;
  margin-left: 0px;
  margin-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  font-size: var(--fs-logo);
  line-height: var(--lh-logo);
  --tw-text-opacity: 1;
  color: rgb(252 73 29 / var(--tw-text-opacity));
}
.menu-overlay-nav-content-item {
  font-feature-settings: "calt" 0;
  display: flex;
  flex-direction: row;
  gap: var(--gap);
  font-size: var(--fs-logo);
  line-height: var(--lh-logo);
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-overlay-nav-content-item > span {
  cursor: default;
  --tw-text-opacity: 1;
  color: rgb(122 122 122 / var(--tw-text-opacity));
}
@media (min-width: 500px) {

  .menu-overlay-nav-content-item > span:hover {
    opacity: 0.5;
  }
}
@media (min-width: 1000px) {

  .menu-overlay-nav-content-item > span:hover {
    opacity: 0.5;
  }
}
.menu-overlay-nav-content-item .menu-overlay-close, .menu-overlay-nav-content-item .menu-overlay-items a {
  font-feature-settings: "calt" 0;
  --tw-text-opacity: 1;
  color: rgb(252 73 29 / var(--tw-text-opacity));
}
.menu-overlay-nav-links {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (min-width: 1000px) {

  .menu-overlay-nav-links {
    line-height: 8rem;
  }
}
.menu-overlay-nav-links > div {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.menu-overlay-nav-links a {
  font-size: var(--fs-menuitem);
  line-height: var(--lh-menuitem);
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(252 73 29 / var(--tw-text-opacity));
}
@media (min-width: 1000px) {

  .menu-overlay-nav-links a:hover {
    --tw-text-opacity: 1;
    color: rgb(122 122 122 / var(--tw-text-opacity));
  }
}
.menu-overlay-nav .line {
  margin-top: var(--sm-gap);
  margin-bottom: var(--sm-gap);
  display: block;
  height: 3px;
}
@media (min-width: 1000px) {

  .menu-overlay-nav .line {
    display: none;
  }
}
.menu-overlay.-opening {
  display: block;
  animation: menuUp 0.6s cubic-bezier(0,0,0.1,1) forwards;
  opacity: 1;
}
.menu-overlay.-opening .menu-overlay-nav {
  opacity: 0;
  transition-property: none;
  transition-delay: 0s;
}
.menu-overlay.-opening ~ .body-wrapper {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-overlay.-active {
  top: 0px;
  display: block;
  opacity: 1;
}
.menu-overlay.-active .menu-overlay-nav {
  opacity: 1;
}
.menu-overlay.-active ~ .body-wrapper {
  display: none;
}
.menu-overlay.-active ~ .footer {
  display: none;
}
.menu-overlay.-closing {
  top: 100%;
  display: block;
  opacity: 1;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-delay: 0.4s;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0,0,0.1,1);
}
.menu-overlay.-closing .menu-overlay-nav {
  opacity: 0;
  transition-delay: 0s;
}
.menu-overlay.-closing ~ .body-wrapper {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-overlay.-closed {
  top: 100%;
  display: none;
  opacity: 0;
}
.menu-overlay.-closed .menu-overlay-nav {
  opacity: 0;
  transition-delay: 0s;
}

.news-list .news-index {
  background-color: transparent;
}
.news-index {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.news-index > div {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: calc(var(--gap) * 2);
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
}
.news-index > div > .news-index-item, .news-index > div > div {
  width: var(--news-width);
}
.news-index > div > .news-index-item img, .news-index > div > div img {
  aspect-ratio: 500/495;
  width: 100%;
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.news-index > div > .news-index-item > .news-index-item-catlabel, .news-index > div > div > .news-index-item-catlabel {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: var(--xs-gap);
  font-size: var(--fs-md);
  line-height: var(--lh-md);
}
.news-index > div > .news-index-item > .news-index-item-catlabel .news-index-item-catlabel-img, .news-index > div > div > .news-index-item-catlabel .news-index-item-catlabel-img {
  overflow: hidden;
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.news-index > div > .news-index-item > .news-index-item-catlabel .news-index-item-catlabel-img img, .news-index > div > div > .news-index-item-catlabel .news-index-item-catlabel-img img {
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.news-index > div > .news-index-item > .news-index-item-catlabel:hover .news-index-item-catlabel-img, .news-index > div > div > .news-index-item-catlabel:hover .news-index-item-catlabel-img {
  transform: scale(0.975);
  border-radius: 1.1rem;
}
@media (min-width: 1500px) {

  .news-index > div > .news-index-item > .news-index-item-catlabel:hover .news-index-item-catlabel-img, .news-index > div > div > .news-index-item-catlabel:hover .news-index-item-catlabel-img {
    border-radius: 2rem;
  }
}
.news-index > div > .news-index-item > .news-index-item-catlabel:hover .news-index-item-catlabel-img img, .news-index > div > div > .news-index-item-catlabel:hover .news-index-item-catlabel-img img {
  transform: scale(1.15);
}
.news-index > div > .news-index-item > .news-index-item-catlabel:hover ~ a:last-child, .news-index > div > div > .news-index-item-catlabel:hover ~ a:last-child {
  opacity: 1;
}
.news-index > div > .news-index-item > span, .news-index > div > div > span {
  font-size: var(--fs-xs);
  line-height: var(--lh-xs);
}
.news-index > div > .news-index-item > .news-index-item-btns, .news-index > div > div > .news-index-item-btns {
  position: absolute;
  top: var(--xs-gap);
  left: var(--xs-gap);
  opacity: 0;
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.news-index > div > .news-index-item > .news-index-item-btns:hover, .news-index > div > div > .news-index-item-btns:hover {
  opacity: 1;
}
.section {
  position: relative;
  z-index: 1;
  margin-bottom: var(--gap);
  width: 100%;
  padding-left: var(--gap);
  padding-right: var(--gap);
}
.section-header {
  margin-top: calc(var(--gap) * 2);
  display: flex;
  flex-direction: column;
  gap: var(--sm-gap);
  padding-bottom: var(--gap);
}
@media (min-width: 320px) {

  .section-header {
    margin-top: calc(var(--gap) * 8);
  }
}
@media (min-width: 500px) {

  .section-header {
    margin-top: calc(var(--gap) * 5);
  }
}
@media (min-width: 1000px) {

  .section-header {
    margin-top: calc(var(--gap) * 2);
  }
}
.section-header-row {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
@media (min-width: 1000px) {

  .section-header-row {
    flex-direction: row;
  }
}
.section-header-row > *:first-child {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 1000px) {

  .section-header-row > *:first-child {
    width: var(--news-width);
  }
}
.section-header-row > *:last-child {
  width: 100%;
}
.section-header-row > *:only-child {
  width: 100%;
}
.section-header-title {
  font-weight: 700;
}
.section-header-image img {
  width: 100%;
  border-radius: 2rem;
}
.section-header-buttons, .section-header-categories {
  height: -moz-fit-content;
  height: fit-content;
}
.section-header-text {
  font-size: var(--fs-lg);
  line-height: var(--lh-lg);
}
.section-header-info {
  display: flex;
  width: auto;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--gap);
}
.section-header-nav {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.section + section:not(.section--grey) {
  margin-top: calc(var(--gap) * -1);
}
.section--textbox {
  margin-bottom: 0px;
  padding: var(--gap);
}
body:not(.-home) .section--textbox {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.section--textbox-1.section--centered > .container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.section--textbox-1.section--title-red {
  font-feature-settings: "calt" 0;
  font-family: Maria Unconnected, sans-serif;
  font-size: var(--fs-red-header);
  line-height: var(--lh-red-header);
  --tw-text-opacity: 1;
  color: rgb(252 73 29 / var(--tw-text-opacity));
}
.section--textbox-2 {
  position: relative;
  width: 100%;
}
.section--textbox-2 > .container {
  margin: 0px;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: stretch;
  gap: var(--gap);
  padding: 0px;
}
@media (min-width: 1000px) {

  .section--textbox-2 > .container {
    flex-direction: row;
  }
}
.section--textbox-2 > .container > div {
  width: 100%;
}
@media (min-width: 1000px) {

  .section--textbox-2 > .container > div {
    width: 50%;
  }

  .section--textbox-2.section--second-wider > .container > div:first-child {
    width: 30%;
  }
}
.section--textbox-2.section--second-wider > .container > div:last-child {
  font-size: var(--fs-lg);
  line-height: var(--lh-lg);
}
@media (min-width: 1000px) {

  .section--textbox-2.section--second-wider > .container > div:last-child {
    width: 70%;
  }
}
.section--imagebox {
  margin-bottom: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding: var(--gap);
}
.section--imagebox img, .section--imagebox video {
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.section--imagebox video {
  aspect-ratio: 16 / 9;
  border-radius: 2rem;
}
.section--imagebox-4 > .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--gap);
  padding-top: var(--sm-gap);
}
@media (min-width: 1000px) {

  .section--imagebox-4 > .container {
    flex-direction: row;
    padding-top: var(--xs-gap);
  }
}
.section--imagebox-4 > .container > div {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--gap);
}
@media (min-width: 1000px) {

  .section--imagebox-4 > .container > div {
    width: 50%;
  }
}
.section--imagebox-4 > .container > div > p {
  font-size: var(--fs-md);
  line-height: var(--lh-md);
}
.section--imagebox > .container {
  margin: 0px;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: stretch;
  gap: var(--gap);
  padding: 0px;
}
@media (min-width: 1000px) {

  .section--imagebox > .container {
    flex-direction: row;
  }
}
.section--imagebox > .container > div:not(:only-child) {
  width: 100%;
}
@media (min-width: 1000px) {

  .section--imagebox > .container > div:not(:only-child) {
    width: 50%;
  }
}
body:not(.-home) .section--cstudies, body:not(.-home) .section--news, body:not(.-home) .section--gallery {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-top: var(--gap);
  padding-bottom: var(--gap);
}
body.-home .section--cstudies, body.-home .section--news, body.-home .section--gallery {
  padding-top: var(--gap);
  padding-bottom: var(--gap);
}
.section--cstudies + .section--h-line, .section--news + .section--h-line, .section--gallery + .section--h-line {
  margin-top: calc(var(--gap) * -1);
}
.section--h-line > .container {
  padding-top: var(--sm-gap);
}
@media (min-width: 1000px) {

  .section--h-line > .container {
    padding-top: var(--xs-gap);
  }
}
.section--h-line > .container {
  border-top-width: 1px;
  border-color: #3c3c3c15;
}
.section--double-padding > .container {
  padding-top: calc(var(--gap) * 2);
  padding-bottom: var(--gap);
}
.section--grey {
  --tw-bg-opacity: 1;
  background-color: rgb(240 240 240 / var(--tw-bg-opacity));
}
.section ol {
  list-style-type: decimal;
  padding-left: 1.1em;
}
.section ul {
  list-style-type: disc;
  padding-left: 1.1em;
}

*, html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html #content {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
html #content a, html #content iframe, html #content form * {
  pointer-events: auto;
}
html.-loading #content, html.-loading .backgrounds {
  pointer-events: none;
  opacity: 0;
}

body {
  font-size: var(--fs-base);
  line-height: var(--lh-base);
}
body strong, body b {
  font-weight: 700;
}

.lenis.lenis-smooth {
  scroll-behavior: smooth;
}

@media (min-width: 320px) {

  .sm\:mt-gap {
    margin-top: var(--gap);
  }

  .sm\:h-full {
    height: 100%;
  }
}

@media (min-width: 500px) {

  .md\:h-full {
    height: 100%;
  }

  .md\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 1000px) {

  .lg\:mt-sm-gap {
    margin-top: var(--sm-gap);
  }

  .lg\:block {
    display: block;
  }

  .lg\:hidden {
    display: none;
  }
}
/*# sourceMappingURL=app.min.css.map */
