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

    --font-60: 60px;
    --font-48: 48px;
    --font-40: 40px;
    --font-36: 36px;
    --font-30: 30px;
    --font-24: 24px;

    --container-padding: 40px;

    --row-gap: 15px;
    --position-x: 0;
    --position-y: 0;
    /** SPECIFIC **/
    --color-primary: #000;
    --color-secondary: #fff;
    --color-default: rgba(24, 24, 24, 1);
    --color-border-deafult: #ccc;
}

body {
    color: #000;
    font-family: 'Poppins', sans-serif;
    padding-right: 0;
}

body.noscroll {
    overflow: hidden;
}

body.freeze {
    padding-right: 17px;
    overflow: hidden;
    position: fixed;
}

/**
 * BASIC
 */

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

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: var(--color-primary);
}

a:hover, a:focus {
    color: var(--color-primary);
}

/**
 * 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;
}

/*.mainpage #content{*/
/*    padding-top: 0;*/
/*}*/

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

.container-custom {
    max-width: 1850px;
    padding-left: calc(2 * var(--space-50));
    padding-right: calc(2 * var(--space-50));
}

.container-xl {
    max-width: 1860px;
}

.container-sm {
    max-width: 1444px;
}

.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: transparent;
    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-primary);
    color: var(--color-primary);
}

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

.btn-secondary[disabled],
.btn-secondary[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-color: transparent;
    border-color: var(--color-secondary);
    color: #fff;
}

.btn-white.active {
    background-color: #fff;
    color: #000;
}

.btn-white[disabled],
.btn-white[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;
}

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

    .btn-secondary:not([disabled]):hover,
    .btn-secondary:not([disabled]).active:hover {
        background-color: var(--color-primary);
        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: #fff;*/
    /*    color: #000;*/
    /*}*/
    .btn-lg:not([disabled]):hover,
    .btn-lg:not([disabled]).active:hover {
        width: 95px;
    }
}

.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: 100%;
}

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

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

/**
 * BUTTONS
 */

.btn {
    border-radius: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.btn-lg {
    width: 46px;
    height: 46px;
    justify-content: flex-start;
    padding: 8px;
    padding-left: 16px;
}

/**
 * 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: 18px;
    line-height: 32px;
}

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

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

.text ul > li::before {
    content: "";
    position: relative;
    display: inline-block;
    width: 9px;
    height: 9px;
    background-color: currentColor;
    left: -20px;
    margin-left: -20px;
    line-height: 1em;
    font-family: sans-serif;
    font-weight: 900;
    font-size: 18px;
}

.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;
}

/**
 * HEADER
 */

header {
    position: fixed;
    z-index: 10000000;
    top: -88px;
    left: 0;
    right: 0;
    background-color: #fff;
    transition: top 0.3s;
}

.logo {
    opacity: 0;
}

body:not(.freeze) header {
    top: 0;
}

.header-main {
    padding: calc(var(--space-25) + 5px) 0;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.header-main-right {
    display: flex;
    align-items: center;
}

.logo {
    float: left;
}

.subpage:not(.company) .logo {
    opacity: 1;
}

.logo a {
    display: block;
}

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

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

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

#main-menu li a {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-underline-offset: 3px;
}

@media screen and (min-width: 1140px) {
    #main-menu li a:hover {
        text-decoration: underline;
    }
}

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

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

#main-menu li:hover > ul {
    display: block;
}

.main-menu-button {
    float: right;
    width: 40px;
    margin: 18px 0 18px var(--container-padding);
    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 {
    background-color: var(--color-default);
    color: #fff;
}

.footer-cols {
    display: flex;
    justify-content: space-between;
    margin: calc(-1 * var(--space-40));
    padding: calc(2 * var(--space-50)) 0;
}

.footer-col-content li a {
    color: #fff;
    line-height: 2.5;
    font-weight: 300;
}

.footer-col-content li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: calc(2 * var(--space-60) + 4px);
    padding-top: calc(var(--space-25) + 3px);
    padding-bottom: calc(var(--space-25) + 3px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-bottom .social-list {
    margin-left: auto;
}

.footer-bottom-logotypes {
    display: flex;
    align-items: center;
}

.footer-col {
    padding: var(--space-40);
}

.footer-bottom-images {
    display: flex;
    align-items: center;
    margin: -10px;
}

.footer-bottom-image {
    padding: 10px;
}

.footer-bottom-image img {
    display: block;
    max-width: 100%;
}

.footer-col-title {
    font-size: 20px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: var(--space-40);
    font-weight: 500;
}

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

.footer-bottom-logotype img {
    display: block;
    max-width: 100%;
}

.footer-bottom-logotypes-wrapper {
    display: flex;
    align-items: center;
    gap: calc(var(--space-25) + 7px);
}

.footer-bottom-logotypes {
    margin: calc(-1 * var(--space-40));
}

.footer-bottom-logotype {
    padding: var(--space-40);
}


.copyright-undicom a img {
    filter: invert(1);
}

/* FOOTER BAR */
.footer-bar {
    padding: 10px 0;
    line-height: 30px;
    letter-spacing: 0.05em;
    font-weight: 300;
    font-size: 13px;
    color: #fff;
}

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

.footer-bar-content > * {
    float: left;
}

.footer-bar-content > *:not(:last-child) {
    margin-right: 30px;
}

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

.footer-bar-links {
    position: relative;
}

.footer-bar-links::after {
    content: '';
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    right: -10px;
    height: 12px;
    width: 1px;
    background-color: #fff;
}

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

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

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

.copyright-undicom {
    float: right;
    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: 14px;
    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: 16px;
    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: 14px;
    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: #6d6e71;
}

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

.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.btn {
    color: #fff;
    background-color: #000;
    transition: all 0.4s;
}

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

@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li a.btn:hover {
        color: #000 !important;
        background-color: #fff !important;
    }
}

/**
 * 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
 */

.logotype {
    display: block;
}

.logotypes-slider-container {
    position: relative;
}

.logotypes-slider-container .btn-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(-1 * (2 * var(--space-50)));
    box-shadow: none !important;
}

.logotypes-slider-container .btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(-1 * (2 * var(--space-50)));
    box-shadow: none !important;
}

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


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

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

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 50px;
    height: 50px;
}

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

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


/**
 * LANGUAGES MENU
 */
.langs-menu {
    position: relative;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
    z-index: 1001;
}

.langs-menu ul {
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 100%;
    transition: all 0.3s;
    padding-top: 34px;
}

.langs-menu li {
    background-color: #F5F5F5;
    display: flex;
    align-items: center;
    padding: 0 23px;
}

.langs-menu li a {
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.langs-menu li:first-of-type a {
    border-top: 0;
}

.langs-menu.active,
.langs-menu.active ul {
    opacity: 1;
}

.langs-menu a {
    color: inherit;
    text-decoration: none;
}

.langs-menu-icon {
    display: none !important;
    vertical-align: middle;
    line-height: 0;
    margin-right: 18px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lang {
    display: flex;
    align-items: center;
    font-size: 0;
    transition-duration: 0.3s;
    transition-property: background-color, color;
}

.lang-button span {
    text-transform: uppercase;
}

.lang span {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    line-height: 1.1;
    font-weight: 500;
    box-shadow: none;
}

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

.langs-menu ul li .langs-menu-long {
    display: none;
}

.langs-menu ul li .langs-menu-short {
    display: inline-block;
}

.lang-button {
    cursor: pointer;
    position: relative;
    border: 0;
    background-color: transparent;
    padding: 0;
    padding-left: var(--space-50);
    margin-left: calc(var(--space-40) - 5px);
}

.lang-button:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 10px;
    width: 1px;
    left: 0;
    background-color: #000;
}

.lang-button .langs-menu-icon {
    display: none;
}

.lang-button .arrow {
    display: inline-block;
    vertical-align: middle;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    margin-left: 14px;
    font-size: 15px;
    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 {
        text-decoration: underline;
    }

    .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);
    }
}

.flag-icon {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.langs-menu--list .lang-button,
.langs-menu--list .langs-menu-short {
    display: none;
}

.langs-menu.langs-menu--list ul {
    position: static;
    opacity: 1;
    display: flex;
    align-items: center;
    border: none;
    background: none;
}

.langs-menu.langs-menu--list li {
    margin: 4px 10px;
    border: none;
}

.langs-menu.langs-menu--list a {
    height: auto;
    padding: 5px;
    border: none;
}

.langs-menu--list .lang {
    background: none;
}

.langs-menu--list .langs-menu-icon {
    margin: 0;
}

/**
 * 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: 25%;
    padding: 5px;
}

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

.gallery-picture > img {
    display: block;
    max-width: 100%;
    transition: all 0.3s;
    margin: 0 auto;
}

.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;
    }

    .gallery-picture:hover img {
        transform: scale(1.09);
    }
}

@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;
}

#content {
    padding-top: 88px;
}


.box {
    width: 535px;
    height: 535px;
    background: #46B34A;
    margin: 100px auto;
    font-size: 55px;
    font-weight: 300;
    position: relative;
    overflow: visible; /* upewnij się, że litery przy rogach nie obcinają się */
}

.section-main-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    transition: height 1.05s, opacity 0.4s;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100000;
    background-color: #fff;
}

.section-main-logo.hide-main-logo {
    opacity: 0;
    pointer-events: none;
}

.company .section-main-logo {
    height: 100vh;
}


.section-main-logo-wrapper + section {
    margin-top: 100vh;
    position: relative;
    z-index: 100000;
    background-color: #fff;
    transition: margin-top 0.7s;
}

.section-main-logo-wrapper.loaded + section {
    margin-top: 0vh;
}

.main-logo {
    display: flex;
    gap: 11px;
    z-index: 10000001;
}

.section-main-logo-wrapper.loaded .main-logo-image {
    display: block;
    animation: mainLogo 0.7s forwards;
}


/*.section-main-logo-wrapper.loaded .section-main-logo{*/
/*    height: 0vh;*/
/*}*/

.section-main-logo-wrapper.loaded .main-logo {
    display: none;
    align-items: center;
}

.main-logo-image {
    display: none;
    width: 1054px;
    position: fixed;
    z-index: 100000001;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}


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

@keyframes mainLogo {
    0% {
        width: 1054px;
        top: 50%;
        left: 50%;
    }

    100% {
        width: 261px;
        top: 41px;
        left: 193px;
    }
}


.main-logo .squares {
    display: flex;
    gap: 14px;
    margin-top: 12px;
}

.main-logo .square {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
}

.main-logo-left {
    opacity: 0;
}

.main-square {
    width: 220px;
    height: 220px;
    background-color: #000;
    position: absolute;
    top: 55%;
    left: 44%;
    animation: mainSquare ease 1.2s forwards;
    animation-delay: 0.2s;
}

@keyframes mainSquare {
    0% {
        top: 55%;
    }

    40% {
        top: 30%;

    }

    55% {
        top: 30%;
        left: 44%;
        width: 220px;
        height: 220px;
    }

    100% {
        top: var(--position-y);
        left: var(--position-x);
        width: 40px;
        height: 40px;
    }
}

.main-logo-right {
    overflow: hidden;
}

.main-logo-right svg path {
    transform: translateY(-110px);
    position: relative;
}

.main-logo-right.showLogoRight path {
    animation: pathAnimation 0.8s ease forwards;
}

.main-logo-right.showLogoRight .path-1 {
    animation-delay: 0.12s;
}

.main-logo-right.showLogoRight .path-2 {
    animation-delay: 0.24s;
}

.main-logo-right.showLogoRight .path-3 {
    animation-delay: 0.36s;
}

.main-logo-right.showLogoRight .path-4 {
    animation-delay: 0.48s;
}

@keyframes pathAnimation {
    0% {
        transform: translateY(-110px);
    }
    100% {
        transform: translateY(0);
    }
}

.section-main-logo-wrapper.loaded .main-square {
    display: none;
}

.section-main-logo-wrapper.loaded .square:first-of-type {
    opacity: 1;
}

.textImage-item-top {
    position: relative;
}

.textImage-item-navigation {
    position: absolute;
    top: calc(2 * var(--space-40));
    right: var(--space-60);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.textImage-item-navigation-dot {
    cursor: pointer;
    width: 16px;
    height: 16px;
    border: 1px solid #fff;
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.40);
    transition: background-color 0.3s;
}

@media screen and (min-width: 1140px) {
    .textImage-item-navigation-dot:hover {
        background-color: #fff;
    }
}

.textImage-item-navigation-dot.active {
    background-color: #fff;
}

.textImage-image {
    aspect-ratio: 192/95;
    min-height: 650px;
}

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

.textImage-item-wrapper {
    position: absolute;
    bottom: calc(var(--space-60) + 20px);
    left: 0;
    right: 0;
    color: #fff;
}

.textImage-item-top-title {
    text-shadow: 0px 5px 4px rgba(0, 0, 0, 0.60);
    font-size: calc(2 * var(--font-60));
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 1.1387;
    text-transform: uppercase;
    opacity: 1 !important;
    transition: font-size ease 0.1s;
    margin-bottom: -17px;
}

.textImage-item-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.textImage-item-top-title-left {
    font-size: var(--font-36);
    text-shadow: 0px 6px 7px rgba(0, 0, 0, 0.40);
    font-weight: 700;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 20px;
}

.textImage-item-top-title-left .cube {
    width: 32px;
    height: 32px;
    background-color: #fff;
    box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.40);
}

.textImage-item-top-title-left .caption {
    line-height: 0.4;
    white-space: nowrap;
}

.textImage-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--space-40) 0;
}

.textImage-item-bottom-title {
    width: 50%;
    padding-right: var(--space-60);
    font-size: var(--font-60);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.166666;
    text-transform: uppercase;
    margin-top: -7px;
}

.textImage-item-bottom-teaser {
    width: 50%;
}

.section-offer {
    min-height: 100vh;
    position: relative;
    display: flex;
}

.offer-image {
    position: absolute;
    inset: 0;
    flex-grow: 1;
}

.offer-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.40);
}

.offer-image img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.section-offer-inner {
    display: flex;
    position: relative;
    justify-content: flex-end;
    width: 100%;
}

.section-offer .offer-item {
    width: 25%;
    color: #fff;
    display: flex;
    align-items: flex-end;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    padding: var(--space-60);
}

.section-offer .offer-item:first-of-type {
    border-left: none;
}

.offer-item-inner {
    height: 45.5vh;
}

.offer-item-title {
    display: flex;
    align-items: flex-start;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.88px;
    text-transform: uppercase;
    gap: 20px;
    margin-bottom: calc(var(--space-50) - 5px);
}

.offer-item-title .caption {
    margin-top: -6px;
}

.offer-item-title .cube {
    width: 21px;
    height: 21px;
    background-color: #fff;
    flex-shrink: 0;
}

.offer-item-teaser {
    margin-bottom: var(--space-50);
    position: relative;
    z-index: 1;

}

.offer-item-content {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 1s 0.25s ease-in-out,
    transform 0.6s ease-in-out;
}

.offer-item-content .char {
    opacity: 0;
    transition: opacity 0.1s ease;
}

@media screen and (min-width: 1140px) {
    .offer-item:hover .offer-item-content {
        opacity: 1;
        transform: translateY(0);
    }
}

.offer-item-teaser > ul > li:before {
    background-color: var(--dotColor) !important;
}

.section-about-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(3 * var(--space-50)) 0;
    height: 100vh;
    position: relative;
}

.section-about-title {
    font-size: 8.9vw;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    width: 37%;
    z-index: 1;
}

.big-cube-wrapper {
    width: 535px;
    height: 535px;
    flex-shrink: 0;
}

.big-cube-wrapper {
    width: 535px !important;
    height: 535px;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.big-cube {
    display: none;
    width: 535px !important;
    height: 535px;
    flex-shrink: 0;
    font-size: 53px;
    line-height: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.big-cube text {
    font-size: 53px;
    font-weight: 300;
}

.big-cube svg {
    overflow: initial;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}


.big-cube.active {
    position: fixed;
}

.showCube .big-cube {
    display: block;
}

.section-about-item:last-of-type .big-cube {
    position: absolute !important;
}

.big-cube-bg {
    max-height: 535px;
    background-color: red;
    position: absolute;
    height: 0;
    top: 0;
    left: 0;
    right: 0;
}

.section-video-title .char {
    opacity: 0;
    transition: none !important;
}

.section-video-title .char.showIn {
    opacity: 1;
}

.big-cube .word {
    display: flex !important;
    align-items: center;
}

/* główna poprawka */
.big-cube .char {
    position: absolute !important;
    display: block !important;
    /* pełny obszar boksa jako ścieżka: od (0,0) → (535,0) → (535,535) → (0,535) → z powrotem */
    offset-path: path('M141,3 H559 V597 H-38 V-57 H205 Z');
    --i: 0.5em;
    offset-distance: 0;
    font-weight: 300;
    /* left: 0px; */
    /* top: -22px; */
    transform: translateX(-10px) translateY(-1px);
    animation: move 0.65s ease forwards;
}

.big-cube .word:nth-child(5) .char,
.big-cube .word:nth-child(7) .char {
    font-weight: 700;
}

@keyframes move {
    100% {
        offset-distance: calc(var(--i) * var(--char-index));
    }
}

.section-about-right {
    padding-left: calc(3 * var(--space-50));
    font-size: 22px;
    line-height: 1.3636;
    width: calc(63% - 480px);
}

.section-video {
    position: relative;
}

.section-video-overlay {
    position: absolute;
    inset: 0;
}

.section-video-overlay img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mainpage .section-video-inner {
    width: 100%;
    height: 100%;
}

.section-video-inner iframe {
    display: flex;
    width: 100%;
    height: 100%;
}

.section-video-title {
    font-size: 4.3vw;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
    position: absolute;
    bottom: 90px;
    left: 20%;
    letter-spacing: -0.5px;
}

.section-video-title .line1 {
    margin-left: -11%;
    margin-bottom: 22px;
}

.section-vide-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 125px;
    height: 125px;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    color: #fff !important;
    cursor: pointer;
}

.section-vide-play svg {
    width: 34px;
}

@media screen and (min-width: 1140px) {
    .section-vide-play:hover {
        background-color: #fff;
        color: #000 !important;
    }
}

.logotypes {
    padding-top: calc(2 * var(--space-50) + var(--space-40) - 6px);
    padding-bottom: calc(2 * var(--space-50) + var(--space-40) + 5px);
}

.logotypes-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: calc(2 * var(--space-50) + var(--space-40));
}

.logotypes-title.line1 {
    font-weight: 300;
    font-size: var(--font-30);
    line-height: 1.8666;
    text-transform: uppercase;
}

.logotypes-title.line2 {
    font-weight: 600;
    font-size: calc(var(--space-60) + 10px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logotype {
    display: flex;
    justify-content: center;
    align-items: center;
    height: initial;
}

/*.logotype-slider .swiper-wrapper {*/
/*    justify-content: center !important;*/
/*}*/

.about-top-cubes {
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    left: 0;
    top: calc(3 * var(--space-50) - 5px);
}

.about-top-cube {
    width: 38px;
    height: 38px;
}


/*ASIDE*/
.aside-page-row {
    display: flex;
    gap: calc(2 * var(--space-40) + 5px);
    margin-bottom: var(--space-60);
}

.aside-page-row .shop-product-list + .pagination-wrapper:last-child {
    margin-bottom: 0;
}

.aside-page-content {
    flex-grow: 1;
}

.aside {
    width: 338px;
    flex-shrink: 0;
}

@media screen and (min-width: 1140px) {
    .btn-aside-toggle,
    .aside-shadow {
        display: none;
    }
}

.menu-group {
    display: flex;
}

.menu-group > a {
    flex-grow: 1;
}

.menu-group > .icon {
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.2s linear;
}

.aside-list > li > .menu-group {
    border-radius: 10px;
    overflow: hidden;
    color: var(--color-primary);
    transition: all .2s linear;
}

.aside-list > li.slided > .menu-group {
    color: var(--color-primary);
}

.aside-list > li.slided.has-list > .menu-group {
    border-radius: 10px 10px 0 0;
}


.aside-list li > ul {
    border-radius: 0 0 10px 10px;
    padding: 20px 0;
}

.aside-list > li {
    transition: all .2s linear;
}

.aside-list > li.slided {
    border-color: transparent;
}

.aside-list > li > .menu-group > a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    min-height: 56px;
    font-size: 20px;
    font-weight: 600;
    color: inherit;
    transition: none;
}

.aside-list > li > .menu-group > a > .icon {
    width: 24px;
}

.aside-list > li > .menu-group > .icon {
    width: 50px;
}

.aside-list li:not(.active) > ul {
    display: none;
}

.aside-list > li > ul > li > .menu-group > a {
    min-height: 36px;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 20px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
}

@media screen and (min-width: 1140px) {
    .aside-list > li > ul > li > .menu-group > a:hover {
        text-decoration: underline;
    }
}

.aside-list > li > ul > li.slided > .menu-group > a {
    text-decoration: underline;
}

.aside-list > li > ul > li > .menu-group > .icon {
    width: 50px;
    color: var(--color-primary);
}

.aside-list .menu-group #ver {
    transition: all .2s linear;
    transform-origin: center;
}

.aside-list li.slided > .menu-group #ver {
    transform: rotate(90deg);
}

.aside-list > li > ul > li > ul {
    padding: 18px 18px 18px 60px;
    font-size: 14px;
    font-weight: 400;
    line-height: 2.1428em;
    border-radius: 10px;
}

.aside-list > li.slided + li {
    border-color: transparent;
}

.aside-list > li > ul > li > ul > li.active a {
    font-weight: 600;
    color: var(--color-secondary);
}

@media screen and (min-width: 1140px) {
    .aside-list > li > ul > li > ul > li a:hover {
        color: var(--color-secondary);
    }

    .aside-list > li:hover + li {
        border-top-color: transparent;
    }
}

.asidedPage-aside-section .filter-form-title {
    font-size: calc(var(--font-24) + 2px);
    font-weight: 300;
    margin-top: var(--space-50);
    margin-bottom: var(--space-40);
}

.aside-filters-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: var(--space-40);
}

.asidedPage-aside-section .filter-form-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.imageText-inner {
    display: flex;
}

.imageText-left {
    width: 40%;
}

.imageText-right {
    width: 60%;
}


/* || Lista produktów || */
.projects-category .aside-page-row {
    gap: calc(2 * var(--space-50));
    margin-bottom: var(--space-50);
}

.projects-category .aside {
    width: 176px
}

.shop-product-list {
    display: flex;
    flex-wrap: wrap;
    margin: -12px;
}

.shop-product-box {
    width: 25%;
    padding: 12px;
}

.product-container {
    position: relative;
    display: flex;
}

.product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image:after {
    position: absolute;
    content: "";
    background-color: #000;
    inset: 0;
    z-index: 1;
    opacity: 0;
    transition: .3s opacity;
}

.product-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(var(--space-25) - 5px);
    z-index: 2;
    transition: .3s opacity;
    opacity: 0;
    color: #fff;
}

.product-content a {
    color: #fff;
}

.product-content .product-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.5em;
    text-align: center;
}

@media screen and (min-width: 1140px) {
    .product-container:hover .product-image:after {
        opacity: .5;
    }

    .product-container:hover .product-content {
        opacity: 1;
    }
}

.product-categories {
    display: flex;
    column-gap: 20px;
    align-items: center;
    row-gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.product-categories-item {
    font-size: 12px;
    position: relative;
    text-align: center;
}

.product-categories-item:after {
    position: absolute;
    background-color: #fff;
    content: "";
    width: 1px;
    height: 12px;
    top: 50%;
    right: -10px;
    transform: translateY(-40%) scale(1.5, 1);
    pointer-events: none;
}

.product-categories .product-categories-item:last-child:after {
    content: unset;
}

.projects-category .aside-list > li > .menu-group > a {
    padding: 0;
    min-height: unset;
    font-size: 22px;
    font-weight: 900;
    color: #949494;
    margin-bottom: 7px;
    transition: .3s all;
}

.projects-category .aside-list > li.active > .menu-group > a {
    color: #000;
}

@media screen and (min-width: 1140px) {
    .projects-category .aside-list > li > .menu-group > a:hover {
        color: #000;
    }
}

.projects-category .aside-list > li > ul > li > .menu-group > a {
    min-height: unset;
    font-size: 16px;
    font-weight: 400;
    padding: 3px 0;
}

.projects-category .aside-list li > ul {
    padding: 0;
    padding-bottom: var(--space-60);
}

.projects-category .aside-list > li > ul > li.slided > .menu-group > a {
    font-weight: 600;
}

.projects-category .aside-list > li.slided.has-list > .menu-group {
    border-radius: 0;
}

.projects-category .aside-list > li > .menu-group {
    border-radius: 0;
}

/* || Podgląd produktu || */
/* || mainImage || */
.mainImage-section {
    position: relative;
}

.mainImage-image {
    aspect-ratio: 1920 / 860;
}

.mainImage-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
}

.mainImage-text-wrapper {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
}

.mainImage-text {
    font-size: calc(2 * var(--font-40));
    font-weight: bold;
    color: #fff;
    letter-spacing: 1.4px;
    line-height: 1.46em;
    text-shadow: 5px 6px 16px rgba(0, 0, 0, 0.40);
    animation: fontScale 0.6s ease forwards;
    animation-delay: 0.7s;
}

@keyframes fontScale {
    0% {
        font-size: calc(2 * var(--font-40));
    }
    100% {
        font-size: calc(var(--font-48) + 2px);
    }
}

@keyframes fontScale1440 {
    0% {
        font-size: calc(2 * var(--font-36));
    }
    100% {
        font-size: calc(var(--font-48));
    }
}

@keyframes fontScale1139 {
    0% {
        font-size: calc(2 * var(--font-36));
    }
    100% {
        font-size: calc(var(--font-48) - 6px);
    }
}

@keyframes fontScale900 {
    0% {
        font-size: calc(1 * var(--font-48) + 4px);
    }
    100% {
        font-size: calc(var(--font-36));
    }
}

@keyframes fontScale639 {
    0% {
        font-size: calc(1 * var(--font-48) + 2px);
    }
    100% {
        font-size: calc(var(--font-36) - 2px);
    }
}

@keyframes fontScale560 {
    0% {
        font-size: calc(1 * var(--font-36));
    }
    100% {
        font-size: calc(var(--font-36) - 4px);
    }
}

/* || Params || */
.params-section {
    padding-top: calc(var(--space-25) - 3px);
    padding-bottom: calc(3 * var(--space-50) + var(--space-25) + 3px - var(--space-50) - var(--space-25));
}

.params-section-title {
    color: var(--color-primary);
    font-size: calc(3 * var(--font-48) - 4px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1em;
    margin-bottom: 15px;
}

.params-section-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.params-section-text {
    font-size: calc(1px + var(--font-24));
    font-weight: 700;
    max-width: 1502px;
    margin-left: auto;
    line-height: 1.6em;
}

.params-section-text,
.params-section-title {
    text-align: right;
}

.param-title {
    font-size: calc(var(--font-24) - 4px);
    line-height: 1.7em;
}

.param-values {
    font-size: calc(var(--font-24) - 4px);
    line-height: 1.7em;
    font-weight: 800;
    display: flex;
    flex-direction: column;
}

.param-values a {
    transition: .3s color;
}

@media screen and (min-width: 1140px) {
    .param-values a[href]:hover {
        color: #2194D3;
    }
}

.params {
    max-width: 1082px;
    display: grid;
    column-gap: calc(2 * var(--space-60));
    row-gap: calc(var(--space-25) - 1px);
    grid-template-columns: 1fr 1fr 1fr;
}

.params-section-inner {
    display: flex;
    flex-direction: column;
    gap: calc(2 * var(--space-60) + 20px);
}

/* || BigText-section || */

.project-sections > section {
    position: relative;
    z-index: 1;
    background-color: #fff;
}


.bigText-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    height: auto;
}

.bigText-text {
    font-size: calc(var(--font-48) + 4px);
    font-weight: 800;
    text-align: center;
    padding: calc(1 * var(--font-40));
}

/* || Texts - section || */
.texts-section {
    padding: calc(3 * var(--space-50) + 16px) 0;
}

.texts-item {
    display: flex;
    column-gap: 20px;
    row-gap: 10px;
    align-items: center;
    min-height: 94px;
    border-bottom: 1px solid rgba(0, 0, 0, 1);
    padding: 16px 20px;
    flex-wrap: wrap;
}

.texts-list .texts-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 1);
}

.text-item-left {
    background-color: #000;
    color: #fff;
    font-size: calc(var(--font-36) + 4px);
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    letter-spacing: 1.2px;
}

.text-item-right {
    font-size: calc(var(--font-36) + 4px);
    font-weight: 800;
    letter-spacing: 1.2px;
}

/* || imageText-section || */
.imageText-section {
    padding: calc((1 * var(--space-50)) + var(--space-25)) 0;
}

.imageText-left {
    padding-right: calc(3 * var(--space-60) + 7px);
    width: 46.5%;
}

.imageText-right {
    width: 53.5%;
}

.imageText-title {
    font-size: calc(var(--font-36) + 4px);
    font-weight: 800;
    margin-bottom: calc(var(--space-25) + 7px);
    line-height: 1.5em;
}

.imageText-title:has(br) {
    margin-bottom: 19px;
}

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

.imageText-text {
    text-align: justify;
    font-size: 20px;
    line-height: 34px;
}

.gallery._3-col .gallery-list {
    margin: -7px;
}

.gallery._3-col .gallery-list-item {
    width: 33.33%;
    padding: 7px;
}

.imageText-right {
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    flex-direction: column;
    gap: var(--space-40);
}

/* || section-slider || */
.section-slider {
    /*margin: calc(3 * var(--space-50)) 0;*/
    height: 100vh;

    z-index: 0 !important;
}

.section-video {
    height: 100vh;

    z-index: 0 !important;
}

.section-slider.fixedPosition .product-view-slider,
.section-video.fixedPosition .section-video-inner {
    position: fixed;
    inset: 0;
}

.product-view-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.product-view-arrows {
    position: absolute;
    padding: 0 var(--space-50);
    top: 50%;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
}

.btn-arrow {
    background: none;
    border: none;
    padding: 0;
    max-width: 14px;
    color: #fff;
}

/* || Video || */
.video-countdown-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    min-height: 400px;
}

.video-countdown-section.active .video-countdown {
    animation: pulse 2.35s linear infinite;
    transform: scale(0.9);
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(0.9);
    }
}


/*.video-countdown-section.active{*/
/*    position: fixed;*/
/*    inset: 0;*/
/*    z-index: 999;*/
/*    background-color: #fff;*/
/*}*/

.video-countdown {
    font-size: calc(7 * var(--font-60) + var(--font-36) + 4px);
    font-weight: 800;
}

/* || imageTextHover-section || */
.imageTextHover-section {
    padding: calc(2 * var(--space-50) / 2) 0;
}

.imageTextHover-title {
    font-size: calc(var(--font-36) + 4px);
    font-weight: bold;
    color: #cccccc;
    line-height: 1.7186em;
    transition: .3s color;
    cursor: pointer;
}

.imageTextHover-title.active {
    color: #f29f05;
}

@media screen and (min-width: 1140px) {
    .imageTextHover-title:hover {
        color: #f29f05;
    }
}

.imageTextHover-containers {
    display: grid;
    grid-template-columns: 762fr 877fr;
    grid-template-rows: auto auto;
    row-gap: var(--space-50);
}

.imageTextHover-text {
    grid-column: 2;
    position: relative;
}

.imageTextHover-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imageTextHover-image-container {
    position: relative;
    aspect-ratio: 877 / 585;
}

.imageTextHover-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: .7s opacity;
}

.imageTextHover-image.active {
    opacity: 1;
}

.imageTextHover-nav {
    display: flex;
    flex-direction: column;
    margin-bottom: 6px;
    justify-content: center;
    align-items: flex-start;
    padding-right: calc(2 * var(--space-40) + 10px);
}

.imageTextHover-text {
    position: relative;
}

.imageTextHover-teaser {
    font-size: 20px;
    line-height: 34px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.imageTextHover-teaser.active {
    opacity: 1;
    visibility: visible;
}

/* || Produkt - Powrót || */
.product-view-btn-return {
    padding-top: calc(2 * var(--space-50));
    padding-bottom: calc(2 * var(--space-50) + 10px);
}

.product-view-btn-return .row-flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* || Galeria || */
.btn-return .btn-back {
    display: flex;
    gap: calc(var(--space-25) - 3px);
    min-height: 46px;
    font-size: 14px;
    text-transform: uppercase;
    align-items: center;
    font-weight: 500;
    border: 1px solid #000;
    min-width: 206px;
    padding-left: 19px;
    padding-right: 25px;
}

.btn-return .btn-back .icon {
    background: transparent;
}

/* || section - gallery || */
.section-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: calc(1 * var(--space-50)) 0;
}

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

.gallery-slider-wrapper {
    margin-left: calc((2060px - 1920px) * -0.5);
    margin-right: calc((2060px - 1920px) * -0.5);
}

.gallery-slider {
    margin: calc(-1 * (var(--space-25) - 13px));
}

.gallery-slide {
    padding: calc(var(--space-25) - 13px);
}

.gallery-big-slider {
    margin: calc(-1 * (calc(var(--space-25) - 10px)));
}

.gallery-big-slide {
    padding: calc(var(--space-25) - 10px);
    width: 25.1422%;
}

.gallery-slider-big-wrapper {
    margin-left: calc((2451px - 1920px) * -0.634);
    margin-right: calc((2451px - 1920px) * -0.366);
}

.section-gallery-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: calc(1 * var(--space-60) + 18px);
}

.section-gallery-title-1 {
    font-size: calc(var(--font-24) + 2px);
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 2px;
    line-height: 2.154em;
    text-align: center;
}

.section-gallery-title-2 {
    font-size: calc(var(--font-36) + 4px);
    font-weight: 800;
    letter-spacing: 1.2px;
    line-height: 1.4em;
    text-align: center;
}

.section-gallery-title-1 + .section-gallery-title-2 {
    font-size: calc(var(--font-48) + 2px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.12em;
}

.section-gallery-link {
    display: flex;
    justify-content: center;
    margin: calc(2 * var(--space-60)) 0;
}

.section-gallery + .section-gallery {
    padding-top: calc(1 * var(--space-50) + 15px);
}

.gallery-list {
    margin: -7px;
}

.gallery-list-item {
    width: 12.5%;
    padding: 7px;
}

.gallery._2-col .gallery-list .gallery-list-item {
    width: 50%;
}

.gallery._2-col .gallery-list .gallery-list-item:first-child {
    width: 100%;
}

.bigText-section + * {
    padding-top: 0 !important;
}

.no-margin-bottom {
    padding-bottom: 0 !important;
}

.page-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.5em;
}

.page-heading {
    margin-top: calc(var(--space-40) + 5px);
    margin-bottom: calc(var(--space-25) + 4px);
}

.company-title {
    font-size: calc(var(--font-36) + 4px);
    font-weight: 600;
    text-align: center;
}

.company-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    min-height: 127px;
    align-items: center;
    gap: calc(var(--space-25) + 9px);
}

.company-gallery-item img {
    display: block;
    max-width: 100%;
}

.company-top {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-40) + 2px);
    margin-bottom: calc(var(--space-60) + 2px);
}

.company-text {
    font-size: 20px;
    line-height: 2.057em;
    letter-spacing: 0.9px;
}

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

.company-img a {
    display: block;
}

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

.section-title {
    font-size: calc(var(--font-36) + 4px);
    font-weight: 800;
    line-height: 1.4em;
    margin-bottom: calc(var(--space-40) - 2px);
}

.company-description {
    /*max-width: 674px;*/
    margin-bottom: calc(var(--space-60) + 16px);
}

.company-people-item {
    display: flex;
    padding: var(--space-50) 0;
}

.company-people-content {
    width: 75.9%;
    margin-top: -8px;
    padding-left: calc(2 * var(--space-40) + 6px);
}

.company-people-img {
    width: 24.1%;
}

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

.company-map .map {
    aspect-ratio: 1920 / 964;
}

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

.company-people-name {
    font-size: calc(var(--font-24) - 2px);
    font-weight: 800;
    margin-bottom: calc(var(--space-25) + 9px);
    text-transform: uppercase;
}

.company-collections {
    margin-bottom: calc(var(--space-60) + 8px);
}

.company-collections > * {
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.company-collections > *:first-child {
    border-top: 1px solid rgba(0, 0, 0, .2);
}

.company-icons {
    padding-top: calc(var(--space-60) + 5px);
    padding-bottom: calc(2 * var(--space-40) + 11px);
}

.company-icons-item-wrapper {
    padding: calc(var(--space-40) + 7px);
    width: 18.519%;
}

.company-icons-item {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) + 4px);
    max-width: 230px;
    margin: 0 auto;
}

.company-icons-img {
    padding-left: 60px;
}

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

.company-icons-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: calc(-1 * (calc(var(--space-40) + 7px)));;
}

.company-icons-text {
    font-size: 18px;
    line-height: 30px;
}

.company-icons .company-icons-item-wrapper:first-child:nth-child(5n+1),
.company-icons .company-icons-item-wrapper:last-child:nth-child(5n+5) {
    width: 22.221%;
}

.company-logotypes {
    padding: calc(var(--space-60) + 10px) 0;
}

.company-section-title {
    font-size: calc(var(--font-36) + 4px);
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: calc(var(--space-60) + 9px);
    line-height: 1.4em;
}

.map img {
    display: block;
}

.company-logotypes-list {
    display: flex;
    justify-content: center;
    margin: calc(-1 * (2 * var(--space-40) + 6px));
    flex-wrap: wrap;
}

.company-logotypes-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(2 * var(--space-40) + 6px);
}

.company-logotypes-item img {
    display: block;
    max-width: 100%;
}

.team-squares {
    margin-bottom: calc(var(--space-25) - 2px);
}

.team-top {
    margin-top: calc(var(--space-40) + 1px);
    margin-bottom: calc(2 * var(--space-60));
}

.team-top-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.team-name {
    margin-top: calc(var(--space-25) - 5px);
    align-self: flex-end;
}

.team-top-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name svg {
    display: block;
}

.company-people-desc > p:first-child {
    margin-bottom: 14px;
}

.contact-map-wrapper {
    aspect-ratio: 674 / 416;
    position: relative;
}

.contact-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.contact-map-overlay {
    display: none;
    gap: 6px;
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: -1px;
    pointer-events: none;
    transition: .3s opacity;
    opacity: 1;
    background-color: rgb(255, 255, 255, .85);
    text-transform: uppercase;
}

.contact-map-overlay .square {
    background-color: #000;
    width: 13px;
    height: 13px;
}

@media screen and (min-width: 1140px) {
    .contact-map-overlay {
        display: flex;
    }

    .contact-map-wrapper:hover .contact-map-overlay {
        opacity: 0;
    }
}

.prize-image-item {
    max-height: 0;
    transition: 1.5s all ease;
    margin-top: 20px;
}

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

.prize-nav-item {
    overflow: hidden;
}

.section-gallery .imageText-inner {
    justify-content: flex-end;
    padding-top: var(--space-50);
}

.mission-gallery {
    margin-top: calc(2 * var(--space-50) + 10px);
    margin-bottom: calc(2 * var(--space-60));
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.textImage-item-bottom-teaser.text {
    font-size: 16px;
    line-height: 33px;
}

.offer-item-teaser.text {
    font-size: 16px;
    line-height: 30px;
    padding-left: 6px;
}

.offer-item-teaser.text ul ul {
    margin-left: -9px;
}

.footer-col-content .text {
    font-size: 16px;
    font-weight: 300;
    line-height: 2.5;
}

.image-text-wrapper {
    margin-top: -17px;
}

.company-text.text strong {
    font-weight: 800 !important;
}

.company-people-desc.text strong,
.company-icons-text strong {
    font-weight: 800 !important;
}

.timeline-item-list-element.has-image > span {
    position: relative;
    cursor: pointer;
}

.timeline-item-list-element.has-image > span:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #46B34A;
    transition: .3s all;
    z-index: -1;
}

.section-gallery + .imageText-section {
    padding-top: calc(2 * var(--space-50));
}

@media screen and (min-width: 1140px) {
    .timeline-item-list-element.has-image > span:hover:before {
        background-color: #f9cf82;
        height: 8px;
    }
}

.files {
    margin-bottom: calc(2 * var(--space-50));
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.file {
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 16px;
    transition: border-color 0.3s;
    width: calc(33.3333% - 10px);
}

.file .caption {
    color: var(--color-default);

    font-size: 16px;
}

.file-left {
    display: flex;
    align-items: center;
    padding: 12px var(--space-25);
    padding-right: 10px;
    flex-grow: 1;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s;
}

.file-right {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-default);
    font-size: 16px;
    transition: color 0.3s;
    font-weight: 600;
    padding: 0 17px;
}

.file .file-right svg path {
    transition: fill 0.3s;
}


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

    .file:hover .file-right {
        color: var(--color-primary);
    }

    .file:hover .file-right svg path {
        fill: var(--color-primary);
    }

    .file:hover .file-left {
        border-color: var(--color-primary);
    }
}

.file-left .icon {
    display: flex;
    max-width: 44px;
    margin: -10px -13px;
    margin-right: 5px;
}

.file-right .icon {
    display: flex;
    max-width: 34px;
    margin: -10px;
}

.product-view-arrows .btn-arrow {
    max-width: initial;
}

.product-view-arrows .btn-arrow .icon svg {
    width: 36px;
}

.gallery-box-sub-container .media-left{
    display: block;
}