/**
 * GLOBAL VARIABLES
 */
:root {
    /** UNIVERSAL **/
    --space-60: 60px;
    --space-50: 50px;
    --space-40: 40px;
    --space-25: 25px;

    --font-ratio: 1;
    --font-70: clamp(1.875rem, calc(3.9vw * var(--font-ratio)), 4.375rem);
    --font-60: clamp(1.5625rem, calc(3.2vw * var(--font-ratio)), 3.75rem);
    --font-48: clamp(1.5rem, calc(2.5vw * var(--font-ratio)), 3rem);
    --font-40: clamp(1.375rem, calc(2.1vw * var(--font-ratio)), 2.5rem);
    --font-36: clamp(1.25rem, calc(2.2vw * var(--font-ratio)), 2.25rem);
    --font-32: clamp(1.1875rem, calc(1.7vw * var(--font-ratio)), 2rem);
    --font-30: clamp(1.125rem, calc(1.6vw * var(--font-ratio)), 1.875rem);
    --font-24: clamp(1rem, calc(1.3vw * var(--font-ratio)), 1.5rem);

    --container-padding: 40px;

    --row-gap: 10px;

    /** SPECIFIC **/
    --color-primary: #011D2F;
    --color-secondary: #00ff00;
    --color-default: #333;
    --color-border-deafult: #ccc;

    --gradient-gold: linear-gradient(90deg, #DBB975 46.93%, #BC9354 67.04%, #AD8044 83.52%, #ECC980 100%);
    --gradient-gold-bottom: linear-gradient(0deg, #DBB975 46.93%, #BC9354 67.04%, #AD8044 83.52%, #ECC980 100%);


    --font-primary: "Poppins", sans-serif;;
    --font-secondary: "Lato", sans-serif;
}

body {
    color: var(--color-primary);
    font-family: var(--font-primary);
}

/**
 * BASIC
 */


.icon-wrapper,
.icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper img,
.icon-wrapper svg,
.icon img,
.icon svg {
    display: block;
    max-width: 100%;
    max-height: 28px;
}

.icon *[fill]:not([fill="none"]),
.social-icon *[fill]:not([fill="none"]) {
    fill: currentColor;
}

.icon *[stroke]:not([stroke="none"]),
.social-icon *[stroke]:not([stroke="none"]) {
    stroke: currentColor;
}

img {
    display: block;
    max-width: 100%;
}

a, input, select, textarea, option, button {
    outline: none !important;
}

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: #000;

}

a:hover, a:focus {
    color: inherit;
    text-decoration: none;
}

/**
 * EXTRA
 */
/* Animations lib */
.animationDuration {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

/* Mourning class added to body */
.mourning {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}


.grayscale {
    filter: grayscale(1);
}

.grayscale-fade {
    transition: filter 0.2s;
}

.grayscale-fade:hover,
.grayscale-fade:focus {
    filter: grayscale(0);
}

/**
 * PAGE
 */

#page,
#content {
    overflow: hidden;
}

.container {
    clear: both;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    max-width: 1720px;
    width: 100%;
}

.container-small {
    max-width: 1440px;
}

.container--noClear {
    clear: none;
}

.container--noClear::before,
.container--noClear::after {
    display: none;
}

/**
 * ICONS
 */

.icon-mask.icon-mask {
    -webkit-mask-size: cover;
    -mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: currentColor;
}

.icon-facebook {
    -webkit-mask-image: url('../images/icons/social/facebook.svg');
    mask-image: url('../images/icons/social/facebook.svg');
}

.icon-instagram {
    -webkit-mask-image: url('../images/icons/social/instagram.svg');
    mask-image: url('../images/icons/social/instagram.svg');
}

.icon-linkedin {
    -webkit-mask-image: url('../images/icons/social/linkedin.svg');
    mask-image: url('../images/icons/social/linkedin.svg');
}

.icon-twitter,
.icon-x {
    -webkit-mask-image: url('../images/icons/social/twitter.svg');
    mask-image: url('../images/icons/social/twitter.svg');
}

.icon-youtube {
    -webkit-mask-image: url('../images/icons/social/youtube.svg');
    mask-image: url('../images/icons/social/youtube.svg');
}

.icon-pinterest {
    -webkit-mask-image: url('../images/icons/social/pinterest.svg');
    mask-image: url('../images/icons/social/pinterest.svg');
}

.icon-user {
    -webkit-mask-image: url('../images/icons/user.svg');
    mask-image: url('../images/icons/user.svg');
}

.icon-register {
    -webkit-mask-image: url('../images/icons/register.svg');
    mask-image: url('../images/icons/register.svg');
}

.icon-logout {
    -webkit-mask-image: url('../images/icons/logout.svg');
    mask-image: url('../images/icons/logout.svg');
}


/**
 * THEMES
 */

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.active:focus,
.btn-primary:hover:focus,
.btn-primary:hover:active,
.btn-primary:focus:active {
    background-color: rgba(0,0,0,0.01);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-primary.disabled.focus,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary[disabled].focus,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}


.btn-primary.active {
    background-color: #fff;
    color: var(--color-primary);
}

.btn-primary[disabled],
.btn-primary[disabled]:hover {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active,
.btn-secondary.active:focus,
.btn-secondary:hover:focus,
.btn-secondary:hover:active,
.btn-secondary:focus:active {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}

.btn-secondary.active {
    background-color: #fff;
    color: var(--color-secondary);
}

.btn-secondary[disabled],
.btn-secondary[disabled]:hover {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-default,
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.btn-default.active:focus,
.btn-default:hover:focus,
.btn-default:hover:active,
.btn-default:focus:active {
    background-color: var(--color-default);
    border-color: var(--color-default);
    color: #fff;
}


.btn-default.disabled.focus,
.btn-default.disabled:focus,
.btn-default.disabled:hover,
.btn-default[disabled].focus,
.btn-default[disabled]:focus,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default.focus,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default:hover {
    background-color: var(--color-default);
    border-color: var(--color-default);
}

.btn-default.active {
    background-color: #fff;
    color: var(--color-default);
}

.btn-default[disabled],
.btn-default[disabled]:hover {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-white,
.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white.active,
.btn-white.active:focus,
.btn-white:hover:focus,
.btn-white:hover:active,
.btn-white:focus:active {
    background: rgba(0,0,0,0.005);
    border-color: #fff;
    color: #fff;
}

.btn-white.disabled.focus,
.btn-white.disabled:focus,
.btn-white.disabled:hover,
.btn-white[disabled].focus,
.btn-white[disabled]:focus,
.btn-white[disabled]:hover,
fieldset[disabled] .btn-white.focus,
fieldset[disabled] .btn-white:focus,
fieldset[disabled] .btn-white:hover {
    background-color: var(--color-default);
    border-color: var(--color-default);
    color: #fff;
}

.btn-white.active {
    background-color: #fff;
    color: var(--color-default);
}

.btn-white[disabled],
.btn-white[disabled]:hover {
    opacity: 0.6;
    cursor: not-allowed;
}

@media screen and (min-width: 1140px) {
    .btn-primary:not([disabled]):hover,
    .btn-primary:not([disabled]).active:hover {
        background-color: var(--color-primary);
        color: #fff;
    }

    .btn-secondary:not([disabled]):hover,
    .btn-secondary:not([disabled]).active:hover {
        background-color: #fff;
        color: var(--color-secondary);
    }

    .btn-default:not([disabled]):hover,
    .btn-default:not([disabled]).active:hover {
        background-color: #fff;
        color: var(--color-default);
    }

    .btn-white:not([disabled]):hover,
    .btn-white:not([disabled]).active:hover {
        background-color: var(--color-primary);
        color: #fff;
        border-color: var(--color-primary);
    }
}

/**
 * BUTTONS
 */

.btn {
    border-radius: 0;
    box-shadow: none !important;
    text-align: center;
    font-style: normal;
    line-height: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-lg {
    font-size: 0.875rem;
    font-weight: 400;
    padding: 0 35px;
    gap: 20px;
    min-height: 46px;
}

/**
 * BOOTSTRAP
 */
.panel,
.panel-heading,
.modal-content,
.alert,
.popover {
    border-radius: 0;
}

.panel {
    box-shadow: none;
}

.panel-default {
    border-color: #e5e5e5;
}

.row {
    margin-left: calc(-1 * var(--row-gap));
    margin-right: calc(-1 * var(--row-gap));
    display: flex;
    flex-wrap: wrap;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7,
.col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5,
.col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3,
.col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12,
.col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    padding-left: var(--row-gap);
    padding-right: var(--row-gap);
}

.modal-footer[style="display: block;"] {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.modal-footer:after, .modal-footer:before {
    content: none;
}

/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: 0.875rem;
    line-height: 30px;
    font-weight: 400;

}

/** Text list custom dots **/
.text ul,
.text ol ul,
.text ul ul {
    list-style: none;
}

.text ul > li,
.text ol > li {
    left: 25px;
    position: relative;
    padding-right: 0;
}

.text ul > li::before {
    content: "•";
    position: relative;
    display: inline-block;
    width: 10px;
    left: -10px;
    margin-left: -10px;
    line-height: 1em;
    font-family: sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
}

.text ol > li::marker {
    word-spacing: 3px;
}

/** Text table **/
.text table {
    margin: 30px 0;
}

.text table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.05);
}

.text table td {
    padding: 12px 12px;
    border: 1px solid #ddd;
}

.text ul, .text ol{
    padding-left: 5px;
}

/**
 * HEADER
 */

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
}

.header-top {
    background-color: #337ab7;
}

.header-top-inner {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    min-height: 54px;
}

.header-top-right {
    display: flex;
    align-items: stretch;
}

.logo {
    float: left;
}

.logo a {
    display: block;
}

.logo a img {
    display: block;
    max-width: 100%;
}

#main-menu ul {
    font-size: 0;
    display: flex;
    align-items: center;
    gap: calc(var(--space-50) - 5px);
}

#main-menu li {
    position: relative;
    display: inline-block;
    font-size: 1rem;
}

#main-menu ul li a {
    color: var(--color-primary);
    text-align: center;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

#main-menu li > ul {
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    transition: all 0.3s;
    gap: 0;
    width: max-content;
    align-items: start;
    padding: 0 0 0 0;
    max-height: 500px;
    overflow-y: auto;
}

#main-menu li > ul > li > ul {
    top: 0;
    left: 100%;
}

#main-menu li:hover > ul {
    z-index: 5;
    pointer-events: unset;
    width: max-content;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 1;
    align-items: start;
    padding: 0 0 0 0;
    max-height: 500px;
    overflow-y: auto;
}

#main-menu li ul li {
    width: 100%;
    background: var(--color-primary);
}

#main-menu li ul li a {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    padding: 10px 10px;
    color: #fff;
    position: relative;
    z-index: 2;
}

@media screen and (min-width: 1140px) {
    #main-menu li ul li:hover::before {
        opacity: 1;
    }
}


body * ::-webkit-scrollbar {
    width: 6px;
}

body * ::-webkit-scrollbar-track {
    background: var(--color-primary);
}

body * ::-webkit-scrollbar-thumb {
    background: var(--gradient-gold-bottom);
}

#main-menu li ul li::before {
    transition: all 0.3s;
    position: absolute;
    inset: 0;
    content: '';
    opacity: 0;
    z-index: 1;
    background: var(--gradient-gold);
}

.main-menu-button {
    float: right;
    width: 42px;
    border: none;
    background: transparent;
}

.main-menu-button.animIcon--hamburger.active span {
    background-color: var(--color-primary);
}

.mainsearch.rwdPanel {
    display: block;
}

.mainsearch {
    float: left;
    position: relative;
    width: 350px;
    max-width: 100%;
}

.mainsearch-search {
    display: flex;
    align-items: stretch;
}

.mainsearch .form-element-container {
    flex-grow: 1;
}

.mainsearch input.form-control {
    display: block;
    height: 46px;
    padding: 5px 15px;
    border-right: none;
    box-shadow: none;
}

.mainsearch-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.mainsearch .alert-block {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.mainsearch .form-control-feedback {
    display: none;
}

/*
* USER NAV
*/

.header-top .user-nav {
    display: flex;
    align-items: stretch;
}

.header-top .user-nav-item {
    display: flex;
    align-items: stretch;
    position: relative;
}

.header-top .user-nav-item-inner {
    display: flex;
    align-items: center;
    color: #fff;
}

.header-top .user-nav-item + .user-nav-item {
    padding-left: 20px;
    margin-left: 20px;
}

.header-top .user-nav-item + .user-nav-item::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.6);
}

.header-top .user-nav-item .icon {
    width: 26px;
    height: 26px;
}

/**
 * FOOTER
 */
footer {
}

/* FOOTER BAR */
.footer-bar {
    padding: 10px 0;
    line-height: 30px;
    letter-spacing: 0.05em;
    font-weight: 300;
    background-color: var(--color-primary);
    font-size: 0.875rem;
    color: #fff;
}

.footer-bar-left {
    display: flex;
    align-items: center;
    flex-grow: 1;
    flex-wrap: wrap;
}

.footer-bar-right {
    display: flex;
    align-items: center;
}

.footer-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bar-links a {
    text-transform: uppercase;
}

.footer-bar-links {
    margin-left: -5px;
    font-size: 0;
    margin-right: 8px;
}

.footer-bar-links:has(li) + .copyright:before {
    content: "|";
    color: currentColor;
    margin-right: 10px;
    display: inline-block;
}

.footer-bar-links > li + li:before {
    content: "|";
    color: currentColor;
    margin-right: 16px;
    display: inline-block;
}

.footer-bar-links > li {
    display: inline-block;
    vertical-align: middle;
    margin: 3px 8px;
    font-size: 13px;
    line-height: 2;
    font-weight: 300;
}

.footer-bar-links a:hover {
    text-decoration: underline;
}

.footer-bar-links a {
    color: inherit;
}


.copyright-undicom {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    color: inherit;
}

.copyright-undicom svg {
    max-width: 15px;
    fill: currentColor;
}

/**
 * FORM
 */
form.form {
    /* padding: 15px 0; */
}

/* INPUTY */
.form-control,
.form .form-control {
    box-shadow: none;
    height: 46px;
}

/* TEXTAREA */
.form textarea.form-control:not([rows]) {
    /* height: 130px; */
}

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    /* font-size: 12px; */
}

.form .consent-row .error {
    /* font-size: 12px; */
    /* letter-spacing: 0; */
}

/* CAPTCHA */
.form .captcha-image-wrapper,
.form .form-group-sm .captcha-image-wrapper,
.form .form-group-lg .captcha-image-wrapper {
    border-radius: 6px;
    box-shadow: none;
}

/* KOLOR GWIAZDKI WYMAGANEGO POLA */
.form .form-required-mark {
    /* color: #a94442; */
}

.form-element-select .form-control-feedback,
.form-element-country .glyphicon {
    display: none;
}

.form button.captcha-refresh {
    right: var(--row-gap);
    color: #e10121;
    border-radius: 0 6px 6px 0;
    background-color: transparent;
    border-color: var(--color-default);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
}

.form button.captcha-refresh .fa.fa-spin {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused
}

@media screen and (min-width: 1140px) {
    .form button.captcha-refresh:hover {
        border-color: #e10121;
        color: #e10121;
    }

    .form button.captcha-refresh:hover .fa.fa-spin {
        -webkit-animation-play-state: running;
        -moz-animation-play-state: running;
        -o-animation-play-state: running;
        animation-play-state: running
    }
}

.form-control-feedback {
    top: 50%;
    right: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

/*---- SELECT 2 -----*/

.select2-dropdown {
    z-index: 100;
    border-radius: 0;
}

.select2-container--default .select2-selection--multiple,
.select2-container .select2-selection--single {
    height: 46px;
    border-color: #ccc;
    border-radius: 6px;
    text-align: left;
    padding: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
    padding-left: 12px;
    font-size: 0.875rem;
    padding-right: 44px;
    color: #555;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search {
    line-height: 44px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    line-height: 24px;
    display: inline-block;
    float: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 8px;
}

.has-feedback .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 68px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: auto;
    transition: all 0.4s;
    right: 16px;
    color: #000;
    text-align: center;
    font-size: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:before {
    content: '\f107';
    font-family: 'FontAwesome';
    font-size: 1rem;
    vertical-align: middle;
}

.select2-container--default.select2-container--open .select2-selection__arrow {
    -webkit-transform: translateY(-50%) scaleY(-1);
    -moz-transform: translateY(-50%) scaleY(-1);
    -ms-transform: translateY(-50%) scaleY(-1);
    -o-transform: translateY(-50%) scaleY(-1);
    transform: translateY(-50%) scaleY(-1);
}

.select2-container--default .select2-selection--single .select2-selection__arrow > b {
    display: none;
}

.select2-results__option[aria-selected] {
    font-size: 0.875rem;
    line-height: 24px;
    color: #000;
    font-weight: 300;
    padding: 6px 22px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--color-primary);
}

@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
    .form-element-multiselectCheckbox .select2-results__option:not([role="group"]):not(.select2-results__message)::before {
        -webkit-background-size: 200px 20px !important;
        background-size: 200px 20px !important;
    }
}

/**
 * MAP POINTS
 */

.map-point .custom-map-wrapper {
    position: relative;
}

.map-point .custom-map-wrapper .point {
    position: absolute;
    width: 28px;
    height: 40px;
    background: transparent url('../images/marker.png') no-repeat scroll center center;
    cursor: pointer;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.map-point #marker-cloud-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 10%;
    height: 10%;
    background: red;
}

.map-point #marker-cloud-wrapper .popover {
    top: 0 !important;
    left: 0 !important;
    display: block;
    margin: 0;
    width: 300px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-shadow: none;
}

.map-point #marker-cloud-wrapper .popover .arrow {
    display: none !important;
}

/**
 * BREADCRUMB
 */

.breadcrumb-container {
    margin: 20px 0;
}

.breadcrumb {
    padding: 0;
    margin: 0;
    text-align: left;
    border-radius: 0;
    background-color: transparent;
}

.breadcrumb > li {
    position: relative;
    display: inline;
    color: var(--color-primary);
}

.breadcrumb > li > a {
    font-size: 12px;
    text-transform: uppercase;
}

.breadcrumb > li > a:not([href]),
.breadcrumb > li > a:not(:hover) {
    color: inherit;
}

.breadcrumb > li + li:before {
    content: '>';
    font-size: 12px;
    padding: 0 15px;
    color: inherit;
}

.breadcrumb > li > a.last {
    color: var(--color-primary);
}

/**
 * PAGINATION
 */

.pagination-wrapper ul li a {
    color: #333;
    transition: color 0.4s;
}

.pagination-wrapper ul li.active a {
    color: var(--color-primary);
}

@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li a:hover {
        color: var(--color-primary);
    }
}

/**
 * ANIMATABLE ICON
 */

.loader-spin {
    margin: 0 10px;
    font-size: 3px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    animation: mulShdSpin 1.3s infinite linear;
    transform: translateZ(0);
}

.btn .loader-spin {
    margin: 0 14px;
}

@keyframes mulShdSpin {
    0%,
    100% {
        box-shadow: 0 -3em 0 0.2em,
        2em -2em 0 0em, 3em 0 0 -1em,
        2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 -1em, -3em 0 0 -1em,
        -2em -2em 0 0;
    }
    12.5% {
        box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em,
        3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 -1em, -3em 0 0 -1em,
        -2em -2em 0 -1em;
    }
    25% {
        box-shadow: 0 -3em 0 -0.5em,
        2em -2em 0 0, 3em 0 0 0.2em,
        2em 2em 0 0, 0 3em 0 -1em,
        -2em 2em 0 -1em, -3em 0 0 -1em,
        -2em -2em 0 -1em;
    }
    37.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
        3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em,
        -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    50% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
        3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em,
        -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    62.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
        3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0,
        -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
    }
    75% {
        box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em,
        3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
    }
    87.5% {
        box-shadow: 0em -3em 0 0, 2em -2em 0 -1em,
        3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
    }
}


.loader2 {
    width: 48px;
    height: 48px;
    border: 5px solid #e5e5e5;
    border-bottom-color: var(--color-primary);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotationLoader2 1s linear infinite;
}

@keyframes rotationLoader2 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.animIcon {
    position: relative;
    display: inline-block;
    width: 32px;
    padding: 0 !important;
}

.animIcon::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.animIcon span {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-primary);
    transition: all .4s ease;
}

/* Close */
.animIcon.animIcon--close span {
    top: 50%;
    margin-top: -1px;
    transform-origin: center;
}

.animIcon.animIcon--close span:nth-child(1) {
    transform: rotateZ(45deg);
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
}

.animIcon.animIcon--close span:nth-child(2) {
    transform: rotateZ(-45deg);
    -webkit-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
}

/* Hamburger -> Close */
.animIcon.animIcon--hamburger span {
    top: 0;
    left: 0;
    transform-origin: left center;
}

.animIcon.animIcon--hamburger span:nth-child(1) {
    margin-top: 20%;
}

.animIcon.animIcon--hamburger span:nth-child(2) {
    margin-top: 50%;
}

.animIcon.animIcon--hamburger span:nth-child(3) {
    margin-top: 80%;
}

.animIcon.animIcon--hamburger.active span:nth-child(1) {
    margin-top: 15%;
    margin-left: 15%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.animIcon.animIcon--hamburger.active span:nth-child(2) {
    opacity: 0;
    margin-top: 70%;
}

.animIcon.animIcon--hamburger.active span:nth-child(3) {
    margin-top: 85%;
    margin-left: 15%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

/**
 * LOGOTYPES SLIDER
 */
.logotypes {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    height: 156px;
    padding: 28px 0;
}

.logotypes .logotypes-title {
    float: left;
    padding-right: 30px;
    font-size: 1.375rem;
    line-height: 100px;
    vertical-align: middle;
}

.logotypes-slider-container {
    height: 100px;
}

.logotype-slider {
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.slick-initialized .logotype {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 4px;
}

.logotype img {
    max-height: 100px;
    max-width: 100%;
    margin: 0 auto;
}


/**
 * SOCIALS
 */
.social-list > ul {
    margin: -5px;
    font-size: 0;
}

.social-list > ul > li {
    display: inline-block;
    vertical-align: middle;
    padding: 5px;
    text-align: center;
    font-size: 1rem;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #f0f;
}

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

.social-icon .fa {
    font-size: 20px;
}


/**
 * LANGUAGES MENU
 */


.langs-menu {
    position: relative;
    float: right;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
    z-index: 1001;
}

.langs-menu ul {
    overflow: hidden;
    position: absolute;
    top: 100%;
    width: 100%;
    background-color: transparent;
    transition: all 0.3s;
}

.langs-menu li {
    margin: 5px 0;
    background: #fff;
}


.only-rwd{
    display: none !important;
}
.langs-menu.active,
.langs-menu.active ul {
    opacity: 1;
}

.langs-menu a {
    color: inherit;
    text-decoration: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.langs-menu-icon {
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lang {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 5px 12px;
    font-size: 0;
    transition-duration: 0.3s;
    transition-property: background-color, color;
}

.lang span {
    vertical-align: middle;
    font-size: 16px;
    text-transform: uppercase;
}

.lang .langs-menu-long {
    display: none;
}

.lang-button {
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.lang-button .arrow {
    display: inline-block;
    vertical-align: middle;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    font-size: 18px;
    line-height: 12px;
    transition-duration: 0.3s;
    transition-property: transform, -webkit-transform, -ms-transform;
}

.langs-menu-icon img {
    max-width: 100%;
}



@media screen and (min-width: 1140px) {
    a.lang:hover,
    a.lang:focus {
        color: #fff;
    }

    .langs-menu:not(.langs-menu--list):not(:hover):not(:focus):not(:focus-within) ul {
        pointer-events: none;
        opacity: 0;
        display: flex;
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
    }

    .langs-menu:focus-within .lang-button .arrow,
    .langs-menu:hover .lang-button .arrow,
    .langs-menu:focus .lang-button .arrow {
        transform: rotateZ(180deg);
        -webkit-transform: rotateZ(180deg);
        -ms-transform: rotateZ(180deg);
    }
}


.lang-button {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    box-shadow: none;
    transition: all 0.3s;
}


.langs-menu-long, .langs-menu-short {
    display: none;
    background: rgba(0,0,0,0.005);
}


/**
 * ARTICLE
 */
.article {
    overflow: hidden;
}

.article-content::after {
    content: "";
    display: table;
    clear: both;
}

.article-image {
    position: relative;
    z-index: 10;
    display: inline-block;
    vertical-align: top;
    float: left;
    max-width: 50%;
    margin-right: 50px;
    margin-bottom: 20px;
}

.article-image img {
    max-width: 100%;
}

.article-subtitle {
    padding-bottom: 30px;
}

.article-date {
    font-weight: bold;
}

.article-text {
    margin-bottom: 30px;
}


/**
 * PAGINATION
 */
/*.pagination-wrapper ul li.active a {*/
/*color: #e10024;*/
/*}*/

/*@media screen and (min-width: 1140px) {*/
/*.pagination-wrapper ul li a:hover {*/
/*color: #e10024;*/
/*}*/
/*}*/


/**
 * GALLERY
 */

.gallery {
    clear: both;
}

.gallery-list {
    margin: -5px;
    font-size: 0;
}

.gallery-list-item {
    display: inline-block;
    vertical-align: top;
    width: 33.33%;
    padding: 5px;
}

.gallery-picture {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
}

.gallery-picture > img {
    display: block;
    max-width: 100%;
}

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    transition: opacity 0.3s;
}

@media screen and (min-width: 1140px) {
    .gallery-picture:hover .gallery-picture-hover {
        opacity: 1;
    }
}

@media screen and (min-width: 1140px) {
    .page-list-aside .ui-widget.ui-widget-content {
        -webkit-transform: scaleY(33.3333%);
        -moz-transform: scaleY(33.3333%);
        -ms-transform: scaleY(33.3333%);
        -o-transform: scaleY(33.3333%);
        transform: scaleY(33.3333%);
    }

    .page-list-aside .ui-widget.ui-widget-content:hover,
    .page-list-aside .ui-widget.ui-widget-content:focus,
    .page-list-aside .ui-widget.ui-widget-content:focus-within {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .ui-slider .ui-slider-handle {
        opacity: 0;
        transition: opacity 0.2s;
    }

    .ui-widget.ui-widget-content:hover .ui-slider-handle,
    .ui-widget.ui-widget-content:focus .ui-slider-handle,
    .ui-widget.ui-widget-content:focus-within .ui-slider-handle {
        opacity: 1;
    }
}

.ui-slider .ui-slider-range {
    border-radius: 0;
    background-color: var(--color-primary);
}

.ui-slider .ui-slider-handle {
    border-radius: 0;
    border: none;
    height: 13px;
    width: 13px;
    background-color: var(--color-primary);
}

.ui-slider-horizontal .ui-slider-handle {
    top: -2px;
    left: -7px;
}

.form-range .row + .row {
    margin-top: 15px;
}

.valueFrom .input-label,
.valueFrom .price-suffix,
.valueTo .input-label,
.valueTo .price-suffix {
    display: none;
}

.valueFrom .from,
.valueTo .to {
    height: 36px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Tenor Sans', sans-serif;
    color: var(--color-primary);
}

.valueTo:before {
    content: '-';
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 33px;
    line-height: 36px;
}

.form-range {
    background-color: transparent;
    border: none;
}

.ui-widget.ui-widget-content {
    border-radius: 0;
}

.form-range {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.form-range .range-row {
    width: 100%;
}

.form-range .col {
    width: 45%;
    margin-top: 10px;
}

.header-up-inner {
    display: flex;
    align-items: center;
    justify-content: end;
    min-height: 72px;
    transition: all 0.3s;
}

#wcag ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

#wcag ul li a svg {
    max-width: 100%;
    max-height: 100%;
}

.main-menu-w-svg svg {
    max-width: 46px;
    max-height: 46px;
}

.header-up {
    background: var(--color-primary);
}

.wcag-item {
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    width: 46px;
    height: 46px;
    border: 1px solid var(--color-primary);
}

.header-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 122px;
    transition: all 0.3s;
}

.logo img {
    width: 122px;
    transition: all 0.3s;
}

header.sticked .header-bottom-inner {
    min-height: 80px;
}

header.sticked .logo img {
    width: 90px;
}

header.sticked .header-up-inner {
    min-height: 66px;
}

.header-bottom {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.eu-logo-first {
    width: 46px;
    height: 46px;
}

.eu-logo-second {
    width: 52px;
    height: 46px;
}

.eu-logo-wrapper {
    display: flex;
    gap: var(--space-40);
}

.language-shortcut {
    display: none;
}

#main-menu {
    position: relative;
}

#main-menu .line {
    height: 1px;
    position: absolute;
    display: block;
    bottom: -15px;
    transition-duration: 0.5s;
    z-index: 1;
}

#main-menu .line:before {
    content: '';
    width: 100%;
    height: 1px;
    display: block;
    margin: auto;
    background: var(--color-primary);
}

.gold-gradient-hover {
    position: relative;
}

.gold-gradient-hover::before {
    position: absolute;
    content: '';
    inset: 0;
    opacity: 0;
    z-index: 1;
    transition: all 0.3s;
    background: var(--gradient-gold);
}

.gold-gradient-hover > * {
    position: relative;
    z-index: 2;
}


@media screen and (min-width: 1140px) {
    .gold-gradient-hover:hover::before {
        opacity: 1;
    }

    .wcag-item:hover {
        color: #fff;
        background: var(--color-primary);
    }

    .lang-button:hover {
        border-color: var(--color-primary);
    }
}

li.active .wcag-item,
li:focus .wcag-item {
    color: #fff;
    background: var(--color-primary);

}

#page {
    padding-top: 123px;
}

.main-slide {
    aspect-ratio: 1920/744;
}

.main-slide .container {
    height: 100%;
}

.background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-slide-inner {
    display: flex;
    flex-direction: column;
    padding: var(--space-50) 0;
    align-items: start;
    justify-content: center;
    height: 100%;
}

.main-slider-name {
    color: #FFF;
    display: inline-flex;
    font-size: calc(var(--font-70) + var(--font-48) + 10px);
    font-style: normal;
    font-weight: 700;
    line-height: 1em;
    background: rgba(0,0,0,0.005);
}

.main-slider-content-inner {
    margin: auto 0;
}

.main-slider-content {
    aspect-ratio: 1640/640;
    overflow-y: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.main-slide-text {
    color: #FFF;
    display: inline-flex;
    background: rgba(0,0,0,0.005);
    font-size: var(--font-40);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5em; /* 150% */
}

.main-slide-inner .btn {
    margin-top: calc(var(--space-60) + 10px);
}

.main-about-us-inner {
    display: flex;
}

.main-about-us-left {
    width: 50%;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.main-about-us-right {
    display: flex;
    align-items: start;
    justify-content: end;
    width: 50%;
    padding: calc(var(--space-50) * 2) 0 calc(var(--space-50) * 2) var(--space-50);
}

.main-about-us-right-wrapper {
    max-width: 672px;
}

.main-about-us-title {
    margin-bottom: var(--space-25);
    font-size: calc(var(--font-60) + 4px);
    font-style: normal;
    display: inline-block;
    font-weight: 700;
    line-height: 1.25em; /* 125% */
    background: rgba(0,0,0,0.005);
}

.main-about-us-right-wrapper .btn {
    margin-top: var(--space-40);
}

.main-tiles-right-img {
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
}

.main-tiles-right-text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: var(--space-50);
    width: 100%;
    aspect-ratio: 1/1;
}

.main-tiles-right-teaser {
    max-width: 290px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.main-tiles-left-title {
    font-size: calc(var(--font-60) + 4px);
    font-style: normal;
    font-weight: 700;
    display: inline-block;
    background: rgba(0,0,0,0.001);
    line-height: 1.25em; /* 125% */
    margin-bottom: calc(var(--space-25) + 5px);
}

.main-tiles-left-teaser {
    margin-bottom: calc(var(--space-40) * 2);
    overflow-y: auto;
    max-height: 400px;
    padding-right: 10px;
    margin-right: 10px;
}

.main-tiles-left-logo {
    width: 100%;
    display: flex;
    justify-content: end;
}

.main-tiles-wrapper {
    display: flex;
}


.main-tiles-right {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    width: 65.7%;
    flex-wrap: wrap;
}

.main-tiles-right-tiles-wrapper {
    display: flex;
    width: 50%;
    justify-content: center;
    flex-direction: column;
}

.main-tiles-left-content {
    max-width: 540px;
}

.main-titles-left {
    width: 44.3%;
    padding-left: max(calc(((1920px - 1720px + 2 * var(--container-padding)) / 2)), calc(var(--container-padding)));
    padding-right: var(--space-50);
    padding-top: calc(var(--space-50) * 2 + 10px);
    padding-bottom: calc(var(--space-50) * 2 + 10px);
}

@media screen and (max-width: 1920px) {
    .main-titles-left {
        padding-left: max(calc(((100vw - 1720px + 2 * var(--container-padding)) / 2)), calc(var(--container-padding)));
    }
}

.main-tiles-right-icon {
    margin-bottom: 10px;
}

.main-tiles-right-title {
    margin-bottom: 20px;
    background: rgba(0,0,0,0.001);
}

.main-tiles {
    background: rgba(1, 29, 47, 0.05);
}

.main-tiles-right-title {
    text-align: center;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    max-width: 200px;
    line-height: 1.6667em; /* 166.667% */
}

.main-tiles-right-tiles-wrapper:nth-child(2) {
    flex-direction: column-reverse;
}

.main-tiles-right-tiles-wrapper:nth-child(2) .main-tiles-right-img {
    background: var(--color-primary);
}

.main-tiles-right .background {
    z-index: 2;
}

.main-tiles-two {
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--color-primary);
}

.main-tiles-two .main-tiles-wrapper {
    flex-direction: row-reverse;
}

.main-tiles-two .main-tiles-right {
    border-left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.main-tiles-two .main-tiles-right-tiles-wrapper {
    flex-direction: column-reverse;
}

.main-tiles-two .main-tiles-right-tiles-wrapper:nth-child(2) {
    flex-direction: column;
}

.main-tiles-two .main-tiles-left-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.main-tiles-two .main-titles-left {
    display: flex;
    justify-content: end;
    width: 44.3%;;
    padding-right: max(calc(((1920px - 1720px + 2 * var(--container-padding)) / 2)), calc(var(--container-padding)));
    padding-left: var(--space-50);
    padding-top: calc(var(--space-50) * 2 + 10px);
    padding-bottom: calc(var(--space-50) * 2 - 10px);
}


@media screen and (max-width: 1920px) {
    .main-tiles-two .main-titles-left {
        padding-right: max(calc(((100vw - 1720px + 2 * var(--container-padding)) / 2)), calc(var(--container-padding)));
    }
}

.page-title {
    text-align: center;
    font-size: calc(var(--font-60) + 4px);
    font-style: normal;
    font-weight: 700;
    line-height: 1.25em; /* 125% */
}

.page-heading {
    display: flex;
    align-items: center;
    gap: var(--space-25);
    flex-direction: column;
    margin-bottom: var(--space-40);
}

.products-list {
    display: flex;
    flex-wrap: wrap;
}

.product-image {
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
}

.product-item:hover .product-name{
    transition: all 0.3s;
}

.product-item:hover .product-content .text{
    transition: all 0.3s;
}

.product-image img {
    transition: all 0.3s;
}

@media screen and (min-width: 1140px) {
    .product-item:hover {
        cursor: pointer;
    }

    .product-item:hover .product-name{
        color: #0073E6;
    }


    .product-item:hover .product-image img {
        transform: scale(1.1);
    }

    .product-item:hover .product-content .btn {
        background: var(--color-primary);
        color: #fff;
    }


}

.product-item {
    flex-direction: column;
    display: flex;
    justify-content: center;
    width: 33.33%;
}

.product-icon {
    margin-bottom: 17px;
}

.product-content .btn {
    margin-top: 20px;
}


.product-name {
    max-width: 380px;
    text-align: center;
    margin-bottom: var(--space-25);
    font-size: var(--font-32);
    font-style: normal;
    color: var(--color-primary);
    font-weight: 700;
    background: rgba(0,0,0,0.001);
    line-height: 1.25em; /* 125% */
}

.product-content {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    padding: var(--space-50);
    justify-content: center;
    flex-direction: column;
}

@media screen and (min-width: 901px) {
    .product-item:nth-of-type(3n + 2) {
        flex-direction: column-reverse;
    }
}

.main-products {
    margin-top: calc(var(--space-40) * 2);

}

.main-t {
    background: var(--color-primary);
    padding-top: calc(var(--space-50) * 2 - 10px);
    padding-bottom: calc(var(--space-50) * 2 + 10px);
}

.main-t-wrapper {
    display: flex;
    align-items: center;
}

.main-t-title {
    color: #FFF;
    font-size: calc(var(--font-60) + 4px);
    font-style: normal;
    font-weight: 700;
    margin-bottom: var(--space-25);
    line-height: 1.25em; /* 125% */
    background: rgba(0,0,0,0.005);
}

.main-t-text {
    color: #fff;
}

.main-t-texts {
    margin-right: 15px;
}

.main-t-text-wrapper {
    max-width: 546px;
}

.main-t-image-logo {
    margin-right: calc(var(--space-50) * 2 - 10px);
}

.main-t-right {
    margin-left: auto;
}

.main-t-image {
    margin-bottom: calc(var(--space-25) + 5px);
}

.copyrights-container {
    background: var(--color-primary);
}

.copyright-inner {
    display: flex;
    align-items: center;
    height: 100px;
    justify-content: space-between;
}

.copyright-u, .copyright-u a {
    display: flex;
    color: #fff;
    align-items: center;
    gap: 5px;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.copyright-u img {
    width: 10px;
    height: 11px;
    filter: brightness(0) invert(1);
}

.copyright .caption {
    color: #fff;
    font-size: 0.875rem;
}

@media screen and (min-width: 1140px) {
    .copyright-u a:hover {
        color: #b2d43d;
    }
}

.partner-box {
    display: flex;
    align-items: center;
    aspect-ratio: 1/1;
    width: 14.2857% !important;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.partner-box:nth-last-child(even) {
    background: #f5f5f5;
    border-color: transparent;
    z-index: -1;
}

.partners-wrapper {
    display: flex;
}

.partners-slider{
    padding: 4px !important;
}

.partner-box-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px;
}

.partners {
    margin: calc(var(--space-50) * 2) 0;
}


@media screen and (min-width: 1140px) {
    .rwd-only {
        display: none !important;
    }
}

.side-menu-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.side-menu-list ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-primary);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: none;
    padding: 0 20px;
    background: transparent;
    min-height: 46px;
    transition: all 0.3s;
    gap: 15px;

}

.side-menu-list ul li.active a {
    background: var(--color-primary);
    color: #fff;
}

@media screen and (min-width: 1140px) {
    .side-menu-list ul li a:hover {
        background: var(--color-primary);
        color: #fff;
        cursor: pointer;
    }
}

.about-image-text-wrapper {
    display: flex;
    padding: 20px 0;

}

.about-image-text-border {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: calc(var(--space-50) * 2 - 10px);
}

.about-image-text-left {
    width: 50%;
    aspect-ratio: 1/1;
    justify-content: center;
    display: flex;

    align-items: center;
}

.about-image-text-left.emptytext{
    margin: 0 auto;
}


.about-image-text-right {
    padding: var(--space-50) 0 var(--space-50) var(--space-50);
    max-width: 667px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.about-image-text-title {
    font-size: var(--font-24);
    font-style: normal;
    font-weight: 300;
    line-height: 1.25em; /* 125% */
}

.side-menu {
    margin-bottom: calc(var(--space-60) + 10px);
}

.gallery {
    margin-top: var(--space-60);
}

.section-title {
    text-align: center;
    font-size: var(--font-48);
    font-style: normal;
    font-weight: 700;
    line-height: normal; /* 83.333% */
    margin-bottom: var(--space-40);
}

.downloads ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-title {
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}

.download-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding-left: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}


.downloads-border {
    padding-top: calc(var(--space-50) * 2 + 10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: calc(var(--space-50) + var(--space-40));
}

.text a {
    color: #0073E6;
    text-decoration: underline transparent;
    transition: all 0.3s;
}

@media screen and (min-width: 1140px) {
    .text a:hover {
        text-decoration-color: #0073E6;
    }
}

.summary-tiles ul {
    display: flex;
    margin-top: calc(var(--space-60) + 10px);
    flex-wrap: wrap;
}

.summary-tiles li {
    width: 33.33%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.summary-tile {
    width: 100%;
    height: 100%;
}

.tile-svg svg {
    max-width: 100%;
    max-height: 100%;
}

.download-div .text{
    margin-right: 15px;
    line-height: 1.4em;
    padding: 5px 0;
}

.tile-svg {
    max-width: 225px;
    aspect-ratio: 1/1;
}

.summary-tile {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    padding: var(--space-25);
}

.tile-titles {
    text-align: center;
    font-size: calc(var(--font-20));
}

.products-text {
    margin-top: var(--space-60);
}

.downloads-text-w {
    margin-top: var(--space-40);
}

.side-menu-text-w .side-menu {
    margin-bottom: 0;
    margin-top: var(--space-60);
}

.download-margin {
    margin-top: var(--space-40);
}

.download-text {
    margin-bottom: var(--space-40);
}

.side-menu-list .icon .svg {
    max-width: 100%;
    max-height: 100%;
}


.side-menu-list .icon {
    max-width: 25px;
    max-height: 25px;
}

.park-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
    flex-wrap: wrap;
    row-gap: var(--space-60);
}

.park-list {
    margin-top: calc(var(--space-60) + 10px);
}

.park-list ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    gap: 15px;

    text-align: center;
    font-size: 1.125rem;
}

.park-image{
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: var(--space-25);
}

.park-name{
    margin-top: var(--space-40);
    color: var(--color-primary);
    text-align: center;
    font-size: var(--font-24);
    font-style: normal;
    max-width: 485px;
    font-weight: 700;
    line-height: 1.6667em; /* 166.667% */
}

.park-list ul li a img {
    transition: all 0.3s;
}

@media screen and (min-width: 1140px) {
    .park-list ul li a:hover img {
        transform: scale(1.1);
    }
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.contact-box {
    width: 33.33%;
    aspect-ratio: 1/1;
}

.map iframe {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

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

.contact-img {
    width: 100%;
    height: 100%;
}

.contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-box-items-wrapper {
    display: grid;
    row-gap: 17px;
    column-gap: 30px;
    margin-top: var(--space-50);
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
}

.contact-box .contact-box-items-wrapper a {
    display: flex;
    align-items: center;
    padding: 0;
    left: 0;
}

.contact-box .text ul li::before {
    display: none;
}

.contact-box .contact-box-items-wrapper .icon  {
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    width: 46px !important;
    height: 46px !important;
    color: var(--color-primary) !important;
    transition: all 0.3s;
}

@media screen and (min-width: 1140px){
    .contact-box .contact-box-items-wrapper a:hover{
        color: #0073E6;
        cursor: pointer;
    }
    .contact-box .contact-box-items-wrapper a:hover .icon{
        border-color: var(--color-primary);
        color: var(--color-primary) !important;
    }
}

.contact-box ul li {
    display: flex;
    align-items: center;
}

.contact-box .text {
    max-width: 400px;
    margin: var(--space-25);
}

.contact-box:has(.text) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-box .text h3 {
    font-size: var(--font-24);
    font-style: normal;
    font-weight: 300;
    line-height: 1.25em; /* 125% */
}

.form-div-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-div-wrapper .form-div {
    width: calc(50% - 10px);
}

.form-div-big.message {
    margin: 20px 0;
}

.form-div .form-element-name,
.form-div-big .form-element-name {
    margin-bottom: 8px;
}

.form-div .form-control,
.form-div-big .form-control {
    border-radius: 0;
}

.captcha-image {
    display: flex;
    justify-content: center;
}

.captcha-refresh.btn {
    height: 46px;
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 1px;
    border-style: solid;
    border-color: var(--color-primary);
    border-image: initial;
    padding: 0;
    background: var(--color-primary);
}

.form-div-big.message .form-control {
    min-height: 200px;
}

.form-button {
    display: flex;
    justify-content: center;
    margin-top: var(--space-40);
}

.checkboxradio-container .glyphicon {
    display: none;
}

.error {
    color: darkred;
}

.has-feedback .checkboxradio-container {
    padding-right: 0 !important;
}

.row.consent-row {
    margin-bottom: 10px;
}

#main-menu > ul > li > ul {
    display: none !important;
}

.download-margin .container::before {
    display: none;
}

footer {
    margin-top: calc(var(--space-50) + var(--space-40));
}


@media screen and (min-width: 1140px) and (max-width: 1440px) {

    .langs-menu:not(.langs-menu--list):not(:hover):not(:focus):not(:focus-within) ul {
        pointer-events: none;
        opacity: 0;
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
    }

    .langs-menu:focus-within .lang-button .arrow,
    .langs-menu:hover .lang-button .arrow,
    .langs-menu:focus .lang-button .arrow {
        transform: rotateZ(180deg);
        -webkit-transform: rotateZ(180deg);
        -ms-transform: rotateZ(180deg);
    }
}

.main-about-us-right-wrapper .text {
    overflow-y: auto;
    max-height: 425px;
    padding-right: 10px;
    margin-right: -10px;
}


.product-content .text {
    text-align: center;
    color: var(--color-primary);
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
 .side-menu-select .select2-container--default .select2-selection--single{
    min-height: 42px;
    border: 1px solid var(--color-primary);
    border-radius: 0;

}

 .side-menu-select .select2-container--default .select2-selection--single .select2-selection__rendered{
     line-height: 42px;
 }

 .side-menu-select .select2-container--default .select2-selection--single .select2-selection__arrow{
     top: 21px;
     height: 42px;
     display: flex;
     align-items: center;
     justify-content: center;
     right: 10px;
 }

 .select2-dropdown{
     border-radius: 0 !important;
 }

.select2-container .select2-selection--single .select2-selection__rendered{
    padding-left: 10px;
    padding-right: 30px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected]{
     background-color: var(--color-primary) !important;
     color: #fff !important;
 }
.side-menu-select{
    width: 100%;
    min-height: 42px;
}

.about-image-text-right.emptyimg{
    max-width: unset;
}

.text h2{
font-size: calc(var(--font-32));
    margin-bottom: 10px;
}
.text h3{
font-size: calc(var(--font-32) - 4px);
    margin-bottom: 10px;
}
.text h4{
font-size: var(--font-24);
    margin-bottom: 10px;
}
.text h5{
font-size: calc(var(--font-24) - 4px);
    margin-bottom: 10px;
}
.text h6{
font-size: 1rem;
    margin-bottom: 10px;
}

.error-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: var(--space-60) 0;
    text-align: center;
}

.error-wrapper .btn{
    margin-top: var(--space-40);
}

.btn .icon{
    flex-shrink: 0;
}

.tile-title{
    font-weight: 700;
    font-size: 1.125rem;
}

.contact-box a{
    color: var(--color-primary);
    text-decoration: none !important;
}

.form-control-feedback{
    top: 35%;
}

.form-control-feedback.glyphicon-ok {
top: 50%;
}

.form-control:focus{
    border-color: unset !important;
    box-shadow: none !important;
}


.side-menu-text-w{
    padding-bottom: 2px;
    margin-bottom: 2px;
}

.sr-only{
    background: rgba(0,0,0,0.005);
    color: #fff;
}


/*@media screen and (min-width: 1140px) {*/
/*    .icon-animations svg {*/
/*        stroke-dashoffset: 1000;*/
/*        stroke-dasharray: 1000;*/
/*        opacity: 0;*/
/*    }*/

/*    .draw-svg svg {*/
/*        animation: ease-in-out 1.8s draw-svg forwards;*/
/*    }*/

/*    @keyframes draw-svg {*/
/*        100% {*/
/*            stroke-dashoffset: 1000;*/
/*            opacity: 0;*/
/*        }*/
/*        65%{*/
/*            opacity: 1;*/
/*        }*/
/*        100% {*/
/*            stroke-dashoffset: 700;*/
/*            opacity: 1;*/
/*        }*/
/*    }*/
/*}*/

.page-title{
    background: rgba(0,0,0,0.005);
}


.wcag-item:focus{
    color: var(--color-primary);
}

.eu-logo a{
    display: block;
}

.main-slider-content-inner{
    padding: 4px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.downloads{
    padding-bottom: 4px;
}

#content{
    padding-bottom: 4px;
}

.partner-box{
    transition: border-color 0.3s !important;
}

@media screen and (min-width: 1140px) {
    .wcag-item:focus:hover{
        color: var(--color-primary);
    }

    li.active .wcag-item:focus:hover{
        color: #fff;
    }

    .partner-box:hover{
        border-color: var(--color-primary);
    }
}


.copyright{
    display: flex;
    color: #fff;
    align-items: center;

}

.copyright li{
    margin: 0;
}

.copyright a{
    margin-right: 5px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    text-transform: none;
    line-height: normal;
    padding-right: 5px;
    position: relative;
    color: #fff;
}
.footer-bar-links{
    margin-left: 0;
}


.copyright a::before{
    content: '';
    right: -5px;
    position: absolute;
    width: 1px;
    top: 0;
    height: 12px;
    background: #fff;
    transform: translateY(30%);
}
.text img{
    display: inline-block;
}

.main-tiles-right-icon svg{
    max-height: 100%;
}

.header-bottom-inner-right{
    display: flex;
    gap: 10px;
}