:root
{
    --rofix-blue: #00B3F0;
}
html, body
{
    font-family: "Lato", serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    color: #000000;
}
main
{
    min-height: 80vh;
}
.heading-1, h1
{
    font-family: "Roboto", serif;
    font-weight: 700;
}
.heading-1, h1, .spotlight .heading-2, .spotlight h2, .spotlight .heading-3, .spotlight h3 {
    color: white;
}
.default h1
{
    color: #000;
}
.heading-1 span, h1 span {
    color: var(--rofix-blue);
}
.heading-3, h3 {
    display: block;
    margin-bottom: 20px;
}
a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}
ul li p {
    margin: 0;
}

@media (min-width: 576px) {
    .accordion-item-a p {
        font-size: 16px;
        line-height: 28px;
    }
}
@media (min-width: 992px) {
    html, body
    {
        font-size: 20px;
        font-weight: 400;
    }
    .heading-1, h1 {
        font-size: 70px;
        line-height: 75px;
    }
    .spotlight .heading-2, .spotlight h2 {
        font-size: 35px;
        line-height: 45px;
        font-weight: 300;
    }
    .spotlight .heading-3, .spotlight h3 {
        font-size: 20px;
        line-height: 25px;
    }
    p {
        margin-bottom: 30px;
    }
}


/* --- CZARNY PASEK GŁÓWNY --- */
.header__main {
    background-color: #000000;
    /* padding: 12px 0; */
	padding-top: 27px;
	padding-bottom: 27px;
    z-index: 1001;
    position: relative;
}

.header__logo img {
    height: 61px;
    width: auto;
}

/* --- MENU DESKTOP (BIAŁY PASEK) --- */
.header__menu {
    background-color: #EFEFEF;
    padding: 0;
}

ul.header__menu-ul {
    list-style: none;
    margin: 0;
    margin-bottom: 0 !important;
    padding: 0;
}

ul.header__menu-ul li 
{
    list-style-type: none;
}

li.header__menu-li a.menu-item::before
{
    position: absolute;
    display: block;
    height: 3px;
    width: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: transparent;
    transition: width 0.5s ease, background-color 0.5s ease;
    content: "";
    transition: width 0.5s ease, background-color 0.5s ease;
}
li.header__menu-li:hover a.menu-item::before
{
    width: 100%;
    background: #00A8DC;
}

li.header__menu-li a.menu-item {
    display: block;
    padding: 15px 10px;
    color: #000000;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.2s;
    border-bottom: 3px solid transparent;
    margin: 0px 15px;
    position: relative;
    margin-bottom: 0 !important;
    border-bottom: none;
}

/* li.header__menu-li a.menu-item:hover,  */
li.header__menu-li.active a.menu-item::before
{
    width: 100%;
    background: #00B3F0; /* Niebieska linia pod aktywnym linkiem */
}

/* 1. Kontener główny */
.header__language-select-toggle {
    position: relative;
    display: inline-block;
    margin-left: 20px;
    vertical-align: middle;
}

/* 2. Przycisk wyzwalający (Główna flaga) */
.header__language-select-toggle-a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.header__language-select-toggle-a svg,
.header__language-select-toggle-a img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* 3. Menu Dropdown (Ciemne) */
.header__language-select-menu {
    display: none; /* Pokazywane przez klasę -visible w JS */
    position: absolute;
    top: calc(100% + 12px);
    right: 50%;
    transform: translateX(50%); /* Centrowanie pod ikoną */
    width: 75px;
    background-color: #303030;
    border-radius: 12px;
    padding: 6px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    z-index: 1000;
    overflow: hidden;
}

.header__language-select-menu.-visible {
    display: flex;
    flex-direction: column;
}

/* 4. Pojedyncza opcja języka (Link) */
.lang-opt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 8px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.2s ease-in-out;
    min-height: 40px;
}

.lang-opt:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--rofix-blue);
    .svg-wrap
    {
        border: 2px solid var(--rofix-blue);
    }
}

/* 5. Tekst języka (np. PL, EN) */
.lang-opt span.lang {
    font-size: 11px;
    font-weight: 800;
    width: 28px; /* Rozmiar kółka tekstowego */
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    text-transform: uppercase;
}

/* 6. Stan AKTYWNY (Białe kółko, niebieski tekst) */
.lang-opt.-active span.lang
{
    color: #00B3F0;
    border-radius: 50%;
}

/* 7. Kontener flagi w menu */
.header__language-select-menu .svg-wrap {
    width: 28px; /* Rozmiar identyczny jak kółka tekstowego dla symetrii */
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid #ffffff;
    background-color: #ffffff;
    flex-shrink: 0;
}
.header__language-select-menu .svg-wrap:hover
{
    border: 2px solid var(--rofix-blue);
}

.header__language-select-menu .svg-wrap img,
.header__language-select-menu .svg-wrap svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 8. Strzałka dekoracyjna (opcjonalnie, jeśli chcesz mieć trójkącik nad menu) */
.header__language-select-menu::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #303030 transparent;
}

.button {
    transition: all 0.2s ease-in-out;
    border-radius: 50px;
    display: -moz-flex;
    display: flex;
    -moz-justify-content: center;
    justify-content: center;
    -moz-align-items: center;
    align-items: center;
    height: 47px;
    border: 2px solid #000000;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 0 35px !important;
    line-height: 18px !important;
    text-align: center;
}

.button:hover
{
    color: white;
    background-color: var(--rofix-blue);
    border-color: var(--rofix-blue) !important;
}

/* --- WYSZUKIWARKA DESKTOP --- */
.search-form {
    flex-grow: 1;
    /* max-width: 450px; */
    margin: 0 40px;
}

.search-form__inner {
    width: 100%;
    display: flex;
    background-color: #303030;
    border-radius: 25px;
    padding: 2px 15px;
}

.search-form__inner input {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    padding: 8px;
    outline: none;
    font-size: 15px;
}

.search-form__inner button {
    background: transparent;
    border: none;
    color: white;
}

/* search modal */

/* --- NAKŁADKA --- */
.search-overlay
{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-bg);
    backdrop-filter: blur(3px);
    z-index: 9999;
}
.search-overlay.-active
{
    display: block;
}
/* --- BIAŁE OKNO WYNIKÓW --- */
.search-modal
{
    position: absolute;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    color: var(--text-main);
    transform-origin: top center;
    border-radius: 25px;
}
.search-modal__header
{
    display: flex;
    align-items: center;
    padding: 4px 20px;
    border-bottom: 1px solid #eee;
}
.search-modal__input
{
    flex-grow: 1;
    border: none;
    padding: 5px 10px;
    font-size: 15px;
    outline: none;
    color: #333;
    background: transparent;
}
.search-modal__icon
{
    color: #333;
    font-size: 18px;
}
.search-modal__body
{
    max-height: 70vh;
    overflow-y: auto;
    padding: 10px 0;
}
.search-section-title
{
    padding: 15px 25px 8px 25px;
    font-size: 11px;
    font-weight: 800;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.search-item
{
    display: flex;
    align-items: center;
    padding: 12px 25px;
    text-decoration: none;
    color: #333;
    transition: background 0.15s;
}
.search-item:hover
{
    background: #f4f7f9;
}
.search-item__img
{
    width: 44px;
    height: 44px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
}
.search-item__img img
{
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}
.search-item__name
{
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
}
.breadcrumb-sep
{
    color: #ccc;
    margin: 0 10px;
    font-size: 10px;
}
.sub-name
{
    color: #777;
    font-weight: 400;
}
.search-modal__body::-webkit-scrollbar
{
    width: 6px;
}
.search-modal__body::-webkit-scrollbar-thumb
{
    background: #e0e0e0;
    border-radius: 10px;
}
#ui_btn_removeSearch
{
    cursor: pointer;
}
/* --- HAMBURGER (Białe kreski) --- */
.hamburger
{
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}
.hamburger-box
{
    width: 24px;
    height: 18px;
    display: inline-block;
    position: relative;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after
{
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    transition: all 0.3s;
}
.hamburger-inner { top: 50%; transform: translateY(-50%); }
.hamburger-inner::before { content: ""; top: -7px; left: 0; }
.hamburger-inner::after { content: ""; bottom: -7px; left: 0; }
/* Animacja Hamburgera */
.hamburger.is-active .hamburger-inner { background: transparent; }
.hamburger.is-active .hamburger-inner::before { transform: rotate(45deg); top: 0; }
.hamburger.is-active .hamburger-inner::after { transform: rotate(-45deg); bottom: 0; }

/* --- MENU MOBILNE (FIXED) --- */
.header__mobile-menu
{
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    transition: top 0.4s ease-in-out;
    z-index: 1000;
    padding-top: 80px;
}
.header__mobile-menu.open
{
    top: 0;
}
.mobile-nav-links a
{
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    border-bottom: 1px solid #222;
    text-transform: uppercase;
}
.nav-mobile__search.search-form-mobile
{
	display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 15px 0 0 0;
}
.search-form__inner-mobile
{
	display: flex;
	padding: 2px 15px;
	border-radius: 25px;
}
.search-form__inner-mobile input[type=text]
{
	border-radius: 25px 0 0 25px;
    width: calc(100% - 40px);
    padding: 0 5px 0 15px;
    border: none !important;
    font-size: 15px;
    line-height: 42px;
    background-color: #303030;
    color: #ffffff;
}
.search-form__inner-mobile button
{
	display: -moz-flex;
    display: flex;
    -moz-justify-content: center;
    justify-content: center;
    -moz-align-items: center;
    align-items: center;
    width: 40px;
    height: 44px;
    padding: 0;
    border: none;
    background-color: #303030;
    color: #ffffff;
    font-size: 18px;
    box-shadow: none !important;
	border-radius: 0 25px 25px 0;
}
/* Kontener sub-menu */
.header__menu-sub-wrap
{
    display: none;
    position: absolute;
    right: 0;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    padding: 40px 0;
    min-width: 100%;
    z-index: 1000;
    justify-content: flex-end;
}
.header__menu-sub-wrap .container
{
    max-width: unset;
    margin: unset;
    justify-content: flex-end;
    width: 50%;
    margin: 0 15%;
}
.header__menu-catalog
{
    flex: 0 0 45%;
    padding-right: 30px;
    border-right: 1px solid #eee;
    text-align: center;
}
.catalog-preview
{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.catalog-preview img
{
    max-width: 100%;
    height: auto;
    margin-bottom: -40px;
    z-index: 1;
    position: relative;
}
.btn-download-catalog
{
    position: relative;
    z-index: 2;
    transition: all 0.2s ease-in-out;
    border-radius: 50px;
    display: -moz-flex;
    display: flex;
    -moz-justify-content: center;
    justify-content: center;
    -moz-align-items: center;
    align-items: center;
    height: 47px;
    border: 2px solid var(--rofix-blue);
    font-size: 14px;
    font-weight: 700;
    line-height: 18px !important;
    text-align: center;
    background-color: var(--rofix-blue);
    color: white;
    text-decoration: none;
    padding: 0 20px;
    width: fit-content;
}
.btn-download-catalog:hover
{
    background-color: white;
    color: var(--rofix-blue);
}
.header__menu-links-container
{
    flex: 0 0 60%;
    padding-left: 40px;
}
.header__menu-sub-column
{
    flex: 1;
}
.header__menu-sub-title
{
    font-weight: 800;
    font-size: 14px;
    color: #000;
    margin-bottom: 20px;
}
.header__menu-sub-ul
{
    list-style: none;
    padding: 0;
}
.header__menu-sub-ul li a
{
    color: #333 !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    padding: 6px 0 !important;
    border: none !important;
    text-transform: none !important;
    display: block;
    text-decoration: none;
}
.header__menu-sub-ul li a:hover
{
    color: #00B3F0 !important;
    text-decoration: underline !important;
}
@media (max-width: 768px)
{
    .header__logo img
    {
        height: 35px;
    }
}

#region homepage

section.spotlight
{
    background-color: #000 !important;
    color: #fff;
    padding: 60px 0;
    overflow: hidden;
}
section.spotlight
{
    background-color: #000 !important;
}
.spotlight__content
{
    order: 1;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    max-width: 660px;
    padding-right: 15px;
    padding-left: 15px;
}
.spotlight__media
{
    order: 1;
    position: relative;
}
.spotlight__top h1
{
    font-weight: 700;
    margin-bottom: 10px;
}
.spotlight__top h1 span
{
    color: #00B3F0;
}
.spotlight__top h2
{
    margin-bottom: 40px;
}
.spotlight__body h3
{
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.spotlight__lists ul
{
    list-style: none;
    padding: 0;
    margin-right: 40px;
}
.spotlight__lists li
{
    margin-bottom: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
}
.spotlight__lists li i
{
    color: #00B3F0;
    font-size: 10px;
    margin-right: 10px;
}
.spotlight__lists li a
{
    color: #fff;
    text-decoration: none;
}
.spotlight__lists li a:hover
{
    text-decoration: underline;
}
.btn-rofix
{
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    margin-right: 15px;
    font-size: 13px;
}
.btn-rofix.-white
{
    background-color: #fff;
    color: #000;
}
.btn-rofix.-outline
{
    border: 2px solid #fff;
    color: #fff;
}
.btn-rofix:hover
{
    background-color: var(--rofix-blue);
    color: white;
    border-color: var(--rofix-blue);
}
.spotlight__media
{
    flex: 1;
    position: relative;
}
.spotlight__media img
{
    width: 100%;
    height: auto;
    mask-image: linear-gradient(to left, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 70%, transparent 100%);
}
.slick-dots
{
    list-style: none;
    display: flex !important;
    justify-content: center;
    padding: 0;
    margin-top: -40px;
    bottom: unset;
}
.slick-dots li
{
    margin: 0 8px;
}
.slick-dots li button::before
{
    display: none;
}
.slick-dots li button
{
    font-size: 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    border: 5px solid #fff;
}
.slick-dots li.slick-active button
{
    border: 5px solid var(--rofix-blue);
}
.spotlight__video
{
    width: 100%;
    max-width: 700px;
    margin-left: auto;
}
.embed-container
{
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.embed-container iframe,
.embed-container object,
.embed-container embed
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.spotlight__content .btn-rofix
{
    margin-top: 20px;
}
.spotlight__slider .slick-track
{
    display: flex !important;
    align-items: stretch;
}
.spotlight__item
{
    height: auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}
.spotlight__item-inner
{
    width: 100%;
    align-items: center;
}
section.experience
{
    background-color: #EFEFEF;
    padding-top: 2rem;
}
.experience__content
{
    max-width: 720px;
    padding-bottom: 75px;
}
.experience__content h2
{
    color: #000;
}
.experience__image img
{
    display: block;
    width: 100%;
    max-width: 450px;
}

@media (min-width: 992px)
{
    .spotlight__media, .spotlight__media img
    {
        max-width: 884px;
    }
    .spotlight__content
    {
        order: 1;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        left: 0;
        max-width: 660px;
        padding-right: 15px;
        padding-left: 15px;
        z-index: 2;
    }
    .experience
    {
        padding-top: 75px;
        margin-top: -30px;
    }
}

@media (max-width: 991px)
{
    .spotlight
    {
        padding: 40px 0;
    }
    .spotlight__content
    {
        position: relative;
        top: 0;
        transform: none;
        -webkit-transform: none;
        max-width: 100%;
        padding: 30px 15px;
        text-align: left;
    }
    .spotlight__media
    {
        order: 1;
        width: 100%;
    }
    .spotlight__media img
    {
        mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    }
    .spotlight__top h1
    {
        font-size: 32px;
    }
    .spotlight__top h2
    {
        font-size: 18px;
        margin-bottom: 25px;
    }
    .spotlight__lists
    {
        flex-wrap: wrap;
    }
    .spotlight__lists ul
    {
        margin-right: 20px;
        margin-bottom: 15px;
    }
    .spotlight__buttons
    {
        flex-direction: column;
        gap: 15px;
    }
    .btn-rofix
    {
        margin-right: 0;
        text-align: center;
        width: 100%;
    }
    .spotlight__item {
        min-height: auto;
    }
}

/* #endregion */

/* #region about us */
.default__quote-content p
{
    font-size: 25px;
    line-height: 40px;
    font-style: italic;
    font-weight: 300;
}
.default__quote-author
{
    font-size: 18px;
    line-height: 28px;
}
.default__aside
{
    width: 100%;
}
.default__aside-inner
{
    padding: 15px;
    background-color: #EFEFEF;
    font-size: 16px;
    line-height: 28px;
}
.default__aside-title
{
    display: block;
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
    color: var(--rofix-blue);
}
.gallery
{
    padding-bottom: 25px;
}
.gallery__items.container
{
    max-width: 1372px;
    padding-left: 0;
    padding-right: 0;
}
.gallery__item
{
    width: 50%;
    padding: 0 15px 20px 15px;
}
.gallery__image
{
    transition: all 0.2s ease-in-out;
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid #ffffff;
}
.gallery__image:before
{
    transition: all 0.2s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    content: "";
}
img
{
    display: block;
    width: 100%;
    max-width: 100%;
}
.default-bottom
{
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: #EFEFEF;
}
.default-bottom h2
{
    margin-bottom: 20px;
    max-width: 960px;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
}
.default-bottom__cols-left
{
    padding-right: 0;
}
.default-bottom__cols-left, .default-bottom__cols-right
{
    max-width: 100%;
}
.default-bottom__cols-right
{
    padding-left: 0;
}
.default
{
    padding-top: 25px;
}


@media (min-width: 576px)
{
    .default-bottom h2
    {
        font-size: 20px;
        line-height: 25px;
    }
}
@media (min-width: 768px)
{
    .default-bottom h2
    {
        font-size: 25px;
        line-height: 35px;
    }
}
@media (min-width: 992px)
{
    .default__aside-inner
    {
        padding: 30px;
    }
    .default-bottom__cols-right
    {
        padding-left: 25px;
    }
    .default-bottom__cols-left
    {
        padding-right: 25px;
    }
    .default-bottom__cols-left, .default-bottom__cols-right
    {
        max-width: 600px;
    }
    .default-bottom h2
    {
        font-size: 30px;
        line-height: 40px;
    }
    .default-bottom
    {
        padding-top: 50px;
        padding-bottom: 30px;
    }
    .gallery__item
    {
        width: 25%;
    }
    .gallery__items.container
    {
        padding-left: 15px;
        padding-right: 15px;
    }
    .default
    {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .default.-about .default__content
    {
        max-width: 720px;
        padding-right: 50px;
        margin-bottom: 0;
    }
    .default__aside
    {
        max-width: 385px;
        padding-top: 10px;
    }
}
/* #endregion */

/* #region footer  */

body .footer
{
    font-size: 17px;
    line-height: 28px;
    background-color: #000 !important;
    color: white;
}
footer .footer__container
{
    background-image: url('/public/img/layout/footer_bkg.png');
    background-size: 976.42px 325.83px;
    background-repeat: no-repeat;
    background-position: right bottom;
    padding-top: 2rem;
}
footer .footer__title
{
    font-weight: 700;
    margin-bottom: 10px !important;
}
footer .footer p
{
    margin-bottom: 20px;
}
.footer__col
{
    width: 100%;
}
.footer__col a, .footer__bottom a
{
    color: white;
    text-decoration: none;
}
.footer__col a:hover, .footer__bottom a:hover
{
    text-decoration: underline;
}
.footer__bottom
{
    padding-bottom: 25px;
    color: white;
    text-align: center;
}
.footer__logo img
{
    max-width: 200px;
}
.footer__info
{
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 768px)
{
    .gallery__item
    {
        width: 25%;
    }
}

@media (min-width: 992px)
{
    .footer__info
    {
        text-align: left;
    }
    .gallery__item
    {
        width: 16.7%;
    }
    footer .footer__logo img
    {
        max-width: 295px;
    }
    .footer__col
    {
        max-width: 400px;
    }
    .footer__col:first-of-type
    {
        padding-right: 50px;
    }
    .footer__col:first-of-type .footer__title
    {
        display: block;
    }
    .footer__col:last-of-type
    {
        max-width: 225px;
    }
    .footer__logo
    {
        width: 295px;
        margin-bottom: 0;
    }
    .footer__bottom {
        text-align: left;
    }
}

@media (min-width: 1174px)
{
    .footer__info
    {
        padding-left: 200px;
        width: 100%;
    }
}
/* #endregion */

/* #region faq */
.faq {
    padding-top: 25px;
    padding-bottom: 5px;
}
.faq h1
{
    color: #000;
}
.faq .container
{
    display: -moz-flex;
    display: flex;
    -moz-flex-direction: column;
    flex-direction: column;
}
.faq__categories
{
    width: 100%;
}
.aside-box
{
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #EFEFEF;
    background-color: #EFEFEF;
}
.faq__sections
{
    width: 100%;
}
.faq__items.-no-pb
{
    padding-bottom: 0;
}
.accordion-item
{
    position: relative;
    padding: 15px 0 0 0;
    border: 1px solid #ffffff;
}
.accordion-item-collapse-icon
{
    position: absolute;
    z-index: 1;
    top: 9px;
    right: 15px;
    width: 40px;
    height: 40px;
}
.accordion-item-q
{
    position: relative;
    padding: 0 15px 15px 15px;
    padding: 0 15px 15px 15px;
    font-weight: 700;
}
.accordion-item-q:after
{
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #EFEFEF;
    content: "";
}
.accordion-item-q:hover
{
    cursor: pointer;
}
.accordion-item-a
{
    display: none;
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
}
.accordion-item.-uncollapsed
{
    background-color: #EFEFEF;
    border: 1px solid #EFEFEF;
}
.accordion-item.-uncollapsed .accordion-item-q
{
    padding-bottom: 0;
    color: var(--rofix-blue);
}
.accordion-item.-uncollapsed .accordion-item-a
{
    margin-top: 10px;
    max-height: 2000px;
}
.accordion-item.-uncollapsed .accordion-item-circle i
{
    transform: rotate(180deg);
}
.accordion-item-circle
{
    display: -moz-flex;
    display: flex;
    -moz-justify-content: center;
    justify-content: center;
    -moz-align-items: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    background-color: #EFEFEF;
}
.accordion-item i
{
    position: relative;
    color: var(--rofix-blue);
}
.aside-box__body ul, .aside-box__body li
{
    padding: 0;
    margin: 0;
    list-style: none;
}
.aside-box__body ul, .aside-box__body li a
{
    color: #000;
}

@media (min-width: 992px) {
    .faq .container
    {
        -moz-flex-direction: row;
        flex-direction: row;
    }
    .faq
    {
        padding-top: 75px;
        padding-bottom: 25px;
    }
    .faq__categories
    {
        width: 385px;
        padding-right: 25px;
    }
    .aside-box
    {
        padding: 30px;
    }
    .faq__sections
    {
        width: 70%;
        padding-left: 25px;
    }
    .accordion-item
    {
        padding: 20px 0 0 0;
    }
    .accordion-item-collapse-icon
    {
        top: 15px;
        right: 15px;
    }
    .accordion-item-q
    {
        padding: 0 20px 20px 20px;
        padding: 0 20px 20px 20px;
    }
    .accordion-item-a
    {
        padding: 0 20px;
    }
    .faq__items
    {
        padding-bottom: 50px;
    }
}
/* #endregion */

/* #region contact */
.contact
{
    background-image: url('public/img/layout/gebouw_contact.jpg');        
    position: relative;
    padding-top: 25px;
    padding-bottom: 30px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.contact:before
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    content: "";
}
.contact__top h2
{
    color: white;
    font-weight: 300;
    margin-bottom: 0;
    margin-top: -10px;
}
.contact__top, .contact__details-form
{
    position: relative;
    z-index: 1;
}
.contact__details
{
    width: 100%;
    margin-bottom: 25px;
    background-color: #000000;
    color: #ffffff;
}
.contact__details a
{
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
}
.contact__details a:hover
{
    text-decoration: underline;
}
.contact__details .contact__title
{
    margin-bottom: 10px;
    color: #ffffff;
}
.contact__details h3, .contact__form .heading-3
{
    font-size: 20px;
    line-height: 25px;
    text-transform: uppercase;
}
.contact__details p
{
    margin-bottom: 15px;
}
.contact__details p:last-of-type
{
    margin-bottom: 0;
}
.contact__form
{
    background-color: #EFEFEF;
    width: 100%;
}
.contact__details, .contact__form
{
    border-radius: 20px;
    padding: 20px 15px;
}
.contact__form .heading-3 
{
    color: #00A8DC;
    margin-bottom: 9px;
}
.form .form-wrapper
{
    display: -moz-flex;
    display: flex;
    flex-wrap: wrap;
    -moz-justify-content: space-between;
    justify-content: space-between;
}
.form .form-group:nth-of-type(1), .form .form-group:nth-of-type(4)
{
    width: 100%;
}
.form input[type=text], .form input[type=email], .form textarea
{
    transition: all 0.2s ease-in-out;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 8px 20px !important;
    background-color: #ffffff !important;
    border-radius: 20px !important;
    border: 2px solid #ffffff !important;
    outline: none;
    font-size: 18px;
    line-height: 25px;
}
.form .form-group:nth-of-type(2), .form .form-group:nth-of-type(3)
{
    width: 49%;
}
.form .form-group:nth-of-type(4)
{
    margin-bottom: 20px;
}
.form .form-group.-recaptcha
{
    width: 100%;
    margin-bottom: 15px;
}
.button.-blue
{
    background-color: #00A8DC;
    border: 2px solid #00A8DC;
    color: #ffffff;
}

@media (min-width: 992px) {
    .contact__details, .contact__form
    {
        padding: 30px;
    }
    .contact
    {
        padding-top: 75px;
        padding-bottom: 90px;
    }
    .contact__top
    {
        margin-bottom: 75px;
    }
    .contact__details
    {
        max-width: 325px;
        margin-bottom: 0;
    }
    .contact__form
    {
        max-width: 485px;
    }
}
/* #endregion */

/* #region product systems */

.product-index__intro
{
    position: relative;
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: #000000;
}
.product-index__intro::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/public/img/layout/product_index_intro_bkg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.19999;
    z-index: 0;
    content: "";
}
.product-index__intro .container
{
    position: relative;
    z-index: 1;
}
.product-index__title {
    margin-bottom: 10px;
}
.product-index__label {
    margin-right: 10px;
    font-size: 30px;
    line-height: 35px;
    color: #00A8DC;
}
.product-index__number {
    font-size: 40px;
    line-height: 40px;
    color: #ffffff;
}
.product-index__info {
    width: 100%;
    color: #ffffff;
}
.product-grid__items.container {
    max-width: 1402px;
    padding-left: 0;
    padding-right: 0;
}
.product-grid__items.container a {
    color: #000000;
}
.product-grid__item {
    width: 50%;
    padding: 0 15px 50px 15px;
}
.product-grid__item div.product-card, .product-grid__item a
{
    height: 100%;
}
 .product-grid__item a
 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
 }
.product-card__image {
    transition: all 0.2s ease-in-out;
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid #ffffff;
}
.product-card img {
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    display: block;
    width: 100%;
    max-width: 100%;
}
.product-card__title {
    transition: color 0.2s ease-in-out;
    font-size: 17px;
    line-height: 26px;
    text-align: center;
    font-weight: 700;
}



@media (min-width: 992px)
{
    .product-index__intro
    {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .product-index__title {
        margin-bottom: 0;
    }
    .product-index__label {
        font-size: 40px;
        line-height: 45px;
    }
    .product-index__number {
        font-size: 100px;
        line-height: 100px;
        letter-spacing: -5px;
    }
    .product-index__info {
        padding-left: 25px;
        max-width: 920px;
    }
    .product-grid {
        padding-top: 50px;
        padding-bottom: 25px;
    }
    .product-grid__items.container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .product-grid__item {
        width: 33.33333%;
        padding: 0 30px 50px 30px;
    }
}

@media (min-width: 1200px) {
    .product-grid__item {
        width: 20%;
    }
}

/* #endregion */

/* #region products list */

.product-detail__intro {
    position: relative;
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: #000000;
}
.product-detail__info {
    width: 100%;
    max-width: 762px;
    margin-right: 25px;
    margin-bottom: 15px;
    color: #ffffff;
}
.product-detail__title {
    display: block;
    margin-bottom: 25px;
    padding-bottom: 20px;
    font-size: 30px;
    line-height: 35px;
    color: #ffffff;
    border-bottom: 1px solid rgba(217, 217, 217, 0.5);
}
.button.-light {
    border: 2px solid #ffffff;
    color: #ffffff;
}
.product-detail__image {
    display: block;
    width: 100%;
    margin-bottom: 25px;
}
.product-detail__image a {
    display: block;
    width: 100%;
}
.product-detail__full-content {
    padding-top: 50px;
    padding-bottom: 50px;
}
.product-detail__main {
    width: 100%;
}
.product-detail .table {
    max-width: 100%;
    width: 100%;
}
.table-striped {
    min-width: 520px;
    font-size: 15px;
    line-height: 22px;
}
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    display: table;
}
.table-striped thead tr {
    background-color: #00A8DC;
    color: #ffffff;
    font-weight: 700;
}
.table-striped td:first-of-type {
    padding-left: 10px;
}
.table-striped thead td {
    white-space: nowrap;
}
.table-striped td {
    height: 60px;
    padding-left: 20px;
    padding-right: 20px;
    vertical-align: middle;
    border: none;
}
.text-left {
    text-align: left !important;
}
.table-striped td:last-of-type {
    min-width: 90px;
    padding-right: 10px;
}
.text-right {
    text-align: right !important;
}
/* .table-striped tbody tr:nth-of-type(odd) {
    background-color: #ffffff;

}
.table-striped tbody tr:nth-of-type(even) {
    background-color: #EFEFEF;
} */
.table-striped tbody tr:hover {
    background-color: #00A8DC;
    color: #ffffff;
    opacity: 0.7;
}
.table-striped tbody tr {
    transition: all 0.2s ease-in-out;
}
.product-detail__downloads ul, .product-detail__downloads li {
    padding: 0;
    margin: 0;
}
.product-detail__downloads li {
    list-style: none;
}
.product-detail__downloads a {
    transition: all 0.2s ease-in-out;
    margin-bottom: 10px;
    border-radius: 20px;
    background-color: #EFEFEF;
    padding: 20px;
    font-size: 15px;
    line-height: 25px;
    font-weight: 700;
    color: black;
}
.product-detail__downloads .fa-file-arrow-down {
    transition: all 0.2s ease-in-out;
    color: #00A8DC;
}
.product-detail__downloads a:hover {
    background-color: #00A8DC;
    color: white !important;
    text-decoration: none;
}
.product-detail__downloads a:hover i
{
    color: white !important;
}
.product-detail__downloads li span {
    display: block;
    width: 100%;
    padding: 0 20px;
}
.product-detail__aside {
    flex-shrink: 0;
    max-width: 100%;
    width: 100%;
}


@media (min-width: 721px) {
    .product-detail__main {
        margin-bottom: 30px;
        margin-right: 25px;
    }
}

@media (min-width: 992px) {
    .product-detail__intro {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .product-detail__info {
        margin-bottom: 25px;
    }
    .product-detail__image {
        width: 275px;
        height: 275px;
    }
    .product-detail__main {
        margin-bottom: 0;
    }
    .product-detail__aside .heading-3, .product-detail__main .heading-3 {
        font-size: 25px;
        line-height: 33px;
    }
    .product-detail__aside {
        width: 275px;
    }
}

/* #endregion */

/* #region cookiemodal */
.cookiesConsentModal
{
    display: none;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.cookiesConsentModal.-visible
{
    display: flex !important;
}
.cookiesConsentModal__content
{
    background: #fff;
    color: #333;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 45px rgba(0,0,0,0.5);
    animation: modalFadeIn 0.3s ease;
}
@keyframes modalFadeIn
{
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.heading-4
{
    font-size: 22px;
    font-weight: bold;
    color: #222;
}
.cookiesConsentModal__settings li
{
    border-bottom: 1px solid #eee;
    padding: 5px 0;
}
.cookiesConsentModal__groupTitle
{
    font-weight: 600;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    user-select: none;
    flex-grow: 1;
}
.cookiesConsentModal__groupTitle .arrow
{
    margin-left: 10px;
    transition: transform 0.2s ease;
    color: #888;
}
.cookiesConsentModal__groupTitle.-open .arrow
{
    transform: rotate(180deg);
}
.cookiesConsentModal__groupInfo
{
    max-height: 0;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0, 1, 0, 1);
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    padding-right: 15px;
}
.cookiesConsentModal__groupInfo.-show
{
    max-height: 500px;
    opacity: 1;
    transition: all 0.3s ease-in-out;
    padding-bottom: 15px;
}
/* --- STYL DLA PRZEŁĄCZNIKÓW (SWITCHES) --- */
.switch
{
    width: 46px;
    height: 24px;
    background: #ccc;
    border-radius: 12px;
    border: none;
    position: relative;
    cursor: pointer;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
    padding: 0;
    outline: none;
    flex-shrink: 0;
}
.switch__slider
{
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.switch.-active
{
    background-color: var(--rofix-blue);
    box-shadow: 0 2px 8px rgba(0, 179, 240, 0.4);
}
.switch.-active .switch__slider
{
    transform: translateX(22px);
}
.switch.-disabled
{
    cursor: not-allowed;
    background-color: #A6E3F9 !important; 
    box-shadow: none;
}
.button.-blue
{
    display: flex;
    background: var(--rofix-blue);
    color: #fff;
    padding: 12px 0;
    text-align: center;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
    border: none;
}
.button.-blue:hover
{
    background-color: #ffffff;
    color: var(--rofix-blue);
    border: 2px solid var(--rofix-blue);
    /* border-color: ; */
}
/* #endregion */