#site-content {
    margin-right: 0;
    margin-left: 12px;
    padding: 0;
}

.main-header {
    position: fixed;
    top: 0vh;
    height: 9vh !important;
}

.main-header .main-header__layout {
    height: 9vh !important;
    align-self: center;
}

#primary-menu > .menu-item > a {
    font-size: 18px;
}

.swiper-full-page .slide-title-container .slide-link {
    z-index: 99999;
    font-weight: 400;
    font-size: 1.3rem !important;
    text-transform: none !important;
    color: var(--color-white);
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: opacity .4s ease .4s;
    transition: opacity .4s ease .4s;
}

.swiper-full-page .slide-title-container .slide-title h1,
.swiper-full-page .slide-title-container .slide-title h2 {
    font-size: calc(6vw);
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
}

.swiper-full-page .slide-title-container .slider-nav {
    position: absolute;
    z-index: 1 !important;
    pointer-events: none;
}

.swiper-full-page .slider-nav .swiper-button-next,
.swiper-full-page .slider-nav .swiper-button-prev {
    opacity: 0.9;
    z-index: 99;
    pointer-events: auto;
}

.swiper-full-page .slide-title-container .slider-nav .swiper-button-prev svg polyline,
.swiper-full-page .slide-title-container .slider-nav .swiper-button-next svg polyline {
	transform: rotate(270deg); /* Rotate by 90 degrees */
	transform-origin: center; /* Set rotation origin to center */
}

.swiper-full-page .slide-image {
    height: 100vh;
}

.swiper-full-page .slide-title-container::after {
    top: 0vh !important;
    height: 100vh !important;
    Opacity: 0.2;
}

.swiper-full-page .slide-title-container .slide-title,
.swiper-full-page .slide-title-container .slide-link {
    transition: transform .1s ease 0s, opacity .1s ease 0s, filter .1s ease 0s, -webkit-transform .1s ease 0s, -webkit-filter .1s ease 0s;
}

.swiper-carousel .swiper-slide .swiper-slide__info p {
    background-color: rgba(0, 0, 0, 0.1); 
    padding: 5px;
    opacity: 1;
}

.swiper-carousel .swiper-slide .swiper-slide__info {
    transition: all .3s ease;
    margin-bottom: 60px;
}

.swiper-pagination {
    --swiper-pagination-color: #ffffff;
    --swiper-pagination-bottom: 30px;
    --swiper-pagination-bullet-size: 10px;
}

.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal.swiper-pagination-bullets-dynamic {
    width: 90px !important;
}

.swiper-pagination.swiper-pagination-bullets.swiper-pagination-vertical.swiper-pagination-bullets-dynamic {
    height: 110px !important;
    width: 10px !important;
}

/* --- Main Container: Positioning & Stacking --- */
.scrolling-h1-area {
    position: fixed;
    top: 20vh;
    left: 0;
    width: 100%;
    z-index: 10; /* Stack above Swiper */
    display: flex;
    justify-content: center;
    pointer-events: none; /* Allow interaction through transparent area */
    background: transparent;
    padding: 0 1em;
    box-sizing: border-box;
}

/* --- H1 Tag: Semantics --- */
.scrolling-h1-area h1 {
    margin: 0;
    padding: 0;
    text-align: center;
    color: transparent;
}

/* --- Viewport/Mask (.scroller) --- */
.scroller {
    /* Responsive base font-size for scaling internal 'em' units */
    font-size: clamp(1.25rem, 4vw, 4rem) !important; /* Adjust min/preferred(vw)/max */
    /* --- CRITICAL HEIGHT --- */
    /* Height for ONE visible line. ADJUST this 'em' value based on */
    /* inspecting the computed height/line-height of the span text */
    /* using your final font and the clamp() font-size above. */
    height: 1.4em;
    /* line-height: 1.4em; */ /* Often helpful but depends on font */
    position: relative;
    overflow: hidden;
    display: block; /* Clip the span */
    margin-left: auto;
    margin-right: auto;
    width: 95vw; /* Constrain width */
    vertical-align: top;
    text-align: center;
    pointer-events: auto; /* Allow interaction with text box */
}

/* --- Animated Span holding text lines --- */
.scroller>span {
    /* Positioning & Animation */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    animation: slide-10-messages 30s infinite linear; /* Use linear for smooth? Or keep steps? */
    /* Final Text Styling */
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    text-transform: none !important; /* Ensure sentence case */
    white-space: nowrap; /* Prevent text wrapping */
    /* Ensure line-height allows text to fit vertically within scroller height */
    line-height: 1.4em; /* <<< MATCH this to .scroller height */
}

/* --- Animation Keyframes (10 Messages) --- */
@keyframes slide-10-messages {
  /* Hold msg 1 */ 0%, 9% { top: 0; }
  /* Move/Hold msg 2 */ 10%, 19% { top: -1.4em; }  /* Adjust H */
  /* Move/Hold msg 3 */ 20%, 29% { top: -2.8em; }  /* Adjust 2H */
  /* Move/Hold msg 4 */ 30%, 39% { top: -4.2em; }  /* Adjust 3H */
  /* Move/Hold msg 5 */ 40%, 49% { top: -5.6em; }  /* Adjust 4H */
  /* Move/Hold msg 6 */ 50%, 59% { top: -7.0em; }  /* Adjust 5H */
  /* Move/Hold msg 7 */ 60%, 69% { top: -8.4em; }  /* Adjust 6H */
  /* Move/Hold msg 8 */ 70%, 79% { top: -9.8em; }  /* Adjust 7H */
  /* Move/Hold msg 9 */ 80%, 89% { top: -11.2em; } /* Adjust 8H */

  /* Move/Hold msg 10 UNTIL THE VERY END*/
  90%, 99.99% { top: -12.6em; } /* Adjust 9H. Hold until 99.99% */
  /* Reset loop happens instantly between 99.99% and 100% */
  100% { top: 0; }
}

.swiper-container.swiper-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1; /* Lower than .scrolling-h1-area */
}

.hero-small-margin {
    margin-top: 0px !important; /* Set reduced top margin */
    margin-bottom: 20px !important; /* Set reduced bottom margin */
}

.instagram-icon {
    position: absolute;
    bottom: 4vh;
    left: 30px;
    z-index: 1000;
}

.facebook-icon {
    position: absolute;
    bottom: 4vh;
    left: 80px;
    z-index: 1001;
}

.instagram-icon a svg,
.facebook-icon a svg {
    width: 32px;
    height: 32px;
    opacity: 0.6;
    transition: transform 0.3s ease, fill 0.3s ease;
}

.instagram-icon a:hover svg {
    transform: scale(1.2);
    fill: #D6249F;
}

.facebook-icon a:hover svg {
    transform: scale(1.2);
    fill: #1877F2;
}

body.home .instagram-icon,
body:home .facebook-icon {
    display: block;
}

body:not(.home) .instagram-icon,
body:not(.home) .facebook-icon {
    display: none;
}

.footer-instagram-icon,
.footer-facebook-icon {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease, fill 0.3s ease;
}

.footer-instagram-icon svg,
.footer-facebook-icon svg {
    width: 24px;
    height: 24px;
    fill: #FFFFFF;
}

.footer-instagram-icon:hover svg {
    transform: scale(1.1);
    fill: #D6249F;
}

.footer-facebook-icon:hover svg {
    transform: scale(1.1);
    fill: #1877F2;
}

.ms-footer .footer-contacts .footer-c__info #footer-menu li {
    margin-bottom: 0;
}

footer.ms-footer .logo-light h3 {
    color: White;
}

.footer__menu.right {
    display: flex;
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

.footer__menu.right > .footer-socials,
.footer__menu.right > .footer-pages {
    flex: 1;
}

.footer-socials {
    display: flex;
    gap: 10px;
    justify-content: center !important;
    align-items: center !important;
}

.footer-pages ul {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-pages li {
    text-align: left !important;
}

.wpforms-form {
    background-color: #eee !important;
    padding: 20px 35px !important;
    border-radius: 10px !important;
}

.faq-container.wp-block-group,
.faq-contact {
    width: 80%;
    margin: 0 auto;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wp-block-details.faq-questions {
    border: none;
    border-radius: 5px;
    margin-bottom: 0;
    background-color: #f9f9f9;
    margin-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
}

.wp-block-details.faq-questions:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.wp-block-details.faq-questions summary {
    background-color: transparent;
    padding: 15px 35px 20px 20px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    text-align: left !important;
    list-style: none;
    border: none;
    border-radius: 5px 5px 0 0;
    display: block;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.wp-block-details.faq-questions summary:focus,
.wp-block-details.faq-questions summary:hover {
    outline: none;
    background-color: #eaeaea;
}

.wp-block-details.faq-questions summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #333;
    font-weight: normal;
}

.wp-block-details.faq-questions[open] > summary::after {
    content: '−';
}

p.faq-answers {
    padding: 15px 20px;
    border-top: 1px solid #e0e0e0;
    margin-bottom: 0;
    border-radius: 0 0 5px 5px;
    border-left: 5px solid green;
    width: 100%;
    box-sizing: border-box;
}

ul.faq-answers {
    padding: 0px 15px 20px;
    padding-left: 40px !important;
    margin-bottom: 0;
    border-radius: 0 0 5px 5px;
    border-left: 5px solid green;
    width: 100%;
    box-sizing: border-box;
}

.single-post__content.article.ms-content.container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

/* Media Query for Devices with Max-Width 1024px (Including iPad Pro in Portrait Mode) */
@media only screen and (max-width: 64rem) {
    #primary-menu > .menu-item > a {
        padding-top: var(--space-xs);
        padding-bottom: var(--space-xs);
        color: var(--color-contrast-higher) !important;
    }
    .swiper-full-page .slide-title-container .slider-nav .swiper-button-prev svg polyline,
    .swiper-full-page .slide-title-container .slider-nav .swiper-button-next svg polyline {
        transform: rotate(0deg);
    }
    .swiper-full-page .slide-title-container .slide-title--inner .slide-title h1,
    .swiper-full-page .slide-title-container .slide-title--inner .slide-title h2 {
        font-size: 6vw;
        font-weight: 700;
    }
    .instagram-icon {
        bottom: 8vh;
        left: 30px;
        z-index: 1000;
    }
    .facebook-icon {
        bottom: 8vh;
        left: 80px;
        z-index: 1001;
    }
}

/* Media Query for Devices with Max-Width 1400px (Including iPad Pro in Landscape Mode) */
@media only screen and (max-width: 87rem) and (orientation:landscape) and (max-device-width:1400px) {
    .instagram-icon,
    .facebook-icon {
        bottom: 8vh;
    }
}


/* Media Query for Devices with Max-Width 1200px (Including iPad 11" in Landscape Mode) */
@media only screen and (max-width: 75rem) and (orientation:landscape) and (max-device-width:1200px) {
    #primary-menu > .menu-item > a {
        font-size: 16px;
    }
    .hero-small-margin {
        margin-top: 10px !important; /* Smaller top margin for iPhone mini */
        margin-bottom: 0px !important; /* Smaller bottom margin for iPhone mini */
    }
    .swiper-full-page .slide-title-container .slide-title--inner .slide-title h1,
    .swiper-full-page .slide-title-container .slide-title--inner .slide-title h2 {
        font-size: 6vw !important;
        font-weight: 600 !important;
    }
    .instagram-icon,
    .facebook-icon {
        bottom: 12vh;
    }
}

/* Media Query for Devices with Max-Width 848px (Including iPad 11" in Portrait Mode) */
@media only screen and (max-width:53rem) and (orientation:portrait) {
    .hero-small-margin {
        margin-top: 0px !important; /* Smaller top margin for tablets */
        margin-bottom: 15px !important; /* Smaller bottom margin for tablets */
    }
    .swiper-full-page .slide-title-container .slide-title--inner .slide-title h1,
    .swiper-full-page .slide-title-container .slide-title--inner .slide-title h2 {
        font-size: 8vw !important;
        font-weight: 600 !important;
    }
    .swiper-full-page .slide-title-container .slider-nav .swiper-button-prev svg polyline,
    .swiper-full-page .slide-title-container .slider-nav .swiper-button-next svg polyline {
        transform: rotate(90deg) !important;
    }
    .instagram-icon,
    .facebook-icon {
        bottom: 12vh;
    }
    .footer__menu.right {
        justify-content: flex-start;
    }
    .footer-socials {
        flex: 0 0 50% !important;
        justify-content: flex-start;
    }
    .footer-pages ul.menu {
        display: block !important;
    }
    .footer-pages ul.menu li {
        display: block !important;
        width: 100%;
        margin-bottom: 10px !important;
    }
}

/* Media Query for Devices with Max-Width 882px (Smartphones in Landscape Mode) */
@media only screen and (max-width: 55rem) and (orientation: landscape) and (max-device-width: 882px) {
    .main-header,
    .main-header .main-header__layout {
        height: 11vh !important;
    }
    .js .main-header__nav {
        padding-top: 0;
        padding-bottom: 0;
    }
    .hero-small-margin {
        margin-top: 50px !important; /* Larger top margin for smartphones in landscape mode */
        margin-bottom: 0px !important; /* Even smaller bottom margin for smartphones in landscape mode */
    }
    .slide-title h3 {
        font-size: 2rem !important;
    }
    .swiper-full-page .slide-title-container .slider-nav {
        display: none;
    }
    .swiper-full-page .slide-title-container .slide-title--inner .slide-title h1,
    .swiper-full-page .slide-title-container .slide-title--inner .slide-title h2 {
        margin-bottom: 15px;
        line-height: 32px;
    }
    .swiper-carousel .swiper-slide__info .slide-title.text-component p {
        line-height: 20px;
    }
    .swiper-carousel .swiper-slide__info {
        margin-bottom: 80px;
        height: 30vh;
    }
    .swiper-carousel .swiper-slide .swiper-slide__info .btn--primary {
        right: 4rem;
    }
    .instagram-icon,
    .facebook-icon {
        bottom: 8vh;
    }
    .faq-container.wp-block-group,
    .faq-contact {
        width: 100%;
        font-size: 16px;
    }
}

/* Media Query for Devices with Max-Width 480px (Smartphones in Portrait Mode) */
@media only screen and (max-width:30rem) and (orientation:portrait) {
    #site-content {
        margin-right: 0;
        margin-left: 0;
        padding: 0;
    }
    .swiper-full-page .slide-title-container .slide-title--inner .slide-title h1,
    .swiper-full-page .slide-title-container .slide-title--inner .slide-title h2 {
        font-size: 12vw !important;
        font-weight: 600 !important;
    }
    .swiper-carousel .swiper-slide__info {
        margin-bottom: 100px;
    }
    .swiper-full-page .slide-title-container .slider-nav {
        height: 40vh;
    }
    .instagram-icon,
    .facebook-icon {
        bottom: 17vh;
    }
    .faq-container.wp-block-group,
    .faq-contact {
        width: 100%;
        font-size: 16px;
    }
}

@font-face {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    src: url(fonts/bebas-neue/JTUSjIg69CK48gW7PXoo9Wdhyzbi.woff2) format('woff2');
}

@font-face {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    src: url(fonts/bebas-neue/JTUSjIg69CK48gW7PXoo9Wlhyw.woff2) format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url(fonts/roboto/KFOmCnqEu92Fr1Mu7GxKOzY.woff2) format('woff2');
    font-display: swap
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url(fonts/roboto/KFOmCnqEu92Fr1Mu4mxK.woff2) format('woff2');
    font-display: swap;