/**
 * GLOBAL VARIABLES
 */

:root {
    /** UNIVERSAL **/
    --space-60: 60px;
    --space-50: 50px;
    --space-40: 40px;
    --space-25: 25px;
    --font-70: clamp(30px, 4.5vw, 60px);
    --font-48: clamp(25px, 3vw, 48px);
    --font-40: clamp(22px, 3vw, 40px);
    --font-36: clamp(20px, 2.2vw, 36px);
    --font-30: clamp(18px, 1.6vw, 30px);
    --font-24: 24px;

    --container-padding: 40px;

    --row-gap: 8px;

    /** SPECIFIC **/
    --color-primary: #DE2424;
    --color-secondary: #F5F5F5;
    --color-default: #000;
}

body {
    color: #000;
    font-family: "Red Hat Display", sans-serif;
}


.text a {
    text-decoration: underline;
    color: inherit;
}

/**
 * BASIC
 */
a:hover, a:focus {
    color: inherit;
}

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

em {
    padding-right: 2px;
}

.text h1 {
    font-size: var(--font-70);
    margin-bottom: var(--space-40);
    font-weight: 900;
}

.text h2:not(:first-child) {
    margin-top: var(--space-25);
}

.text h2 {
    font-size: var(--font-24);
    margin-bottom: var(--space-25);
    font-weight: 900;
}

.text h3:not(:first-child) {
    margin-top: var(--space-25);
}

.text h3 {
    font-size: var(--font-24);
    margin-bottom: var(--space-25);
    font-weight: 900;
}

.text h4:not(:first-child) {
    margin-top: var(--space-25);
}

.text h4 {
    font-size: var(--font-24);
    margin-bottom: var(--space-25);
    font-weight: 900;
}

.text h5:not(:first-child) {
    margin-top: var(--space-25);
}

.text h5 {
    font-size: var(--font-24);
    margin-bottom: var(--space-25);
    font-weight: 900;
}


a {
    color: inherit;
}

/**
 * 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-medium {
    max-width: 1520px;
}

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

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


.container--noClear {
    clear: none;
}

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

/**
 * ICONS
 */

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

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

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

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

.icon-long-arrow-right {
    -webkit-mask-image: url('../images/icons/long-arrow-right.svg');
    mask-image: url('../images/icons/long-arrow-right.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');
}

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

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

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

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

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

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

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

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

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

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

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

.icon-mobile {
    -webkit-mask-image: url('../images/icons/mobile.svg');
    mask-image: url('../images/icons/mobile.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: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.btn-red,
.btn-red:hover,
.btn-red:focus,
.btn-red:active,
.btn-red.active,
.btn-red.active:focus,
.btn-red:hover:focus,
.btn-red:hover:active,
.btn-red:focus:active {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-black,
.btn-black:hover,
.btn-black:focus,
.btn-black:active,
.btn-black.active,
.btn-black.active:focus,
.btn-black:hover:focus,
.btn-black:hover:active,
.btn-black:focus:active {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.btn .icon.icon-arrow-right {
    width: 7px;
    height: 10px;
}

.btn .icon {
    width: 15px;
    height: 15px;
    display: block;
    color: inherit;
}

.btn .icon:last-child {
    margin-left: auto;
}

.btn-offer.btn .icon:last-child {
    margin-left: auto !important;
}

.btn-md {
    min-width: 174px;
    padding: 5px 20px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 14px;
    gap: 18px;
    font-weight: 500;
}

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

.btn-primary[disabled],
.btn-primary[disabled]:hover {
    opacity: 0.2;
    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: transparent;
    border-color: #000;
    color: #000;
}

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

.btn-secondary[disabled],
.btn-secondary[disabled]:hover {
    opacity: 0.2;
    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: transparent;
    border-color: rgba(0, 0, 0, 0.1);
    color: #000;
}

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

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

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

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

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

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

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

/**
 * BUTTONS
 */

.btn {
    border-radius: 0;
    transition: all 0.2s;
}

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


/** 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: 10px;
    left: -10px;
    margin-left: -10px;
    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: 1000;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    right: 0;
}

header.sticky .header-content {
    padding: 10px 0;
}

#content {
    padding-top: calc(var(--space-25) * 2 + 39px);
}

.header-content {
    display: flex;
    align-items: center;
    padding: calc(var(--space-25) - 5px) 0;
    transition: padding 300ms;
}

.header-right {
    gap: calc(var(--space-50) - 15px);
    /* margin-left: auto; */
    display: flex;
    align-items: center;
}

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

.header-left .logo {
    width: 163px;
}

.btn-offer {
    min-height: 46px;
    min-width: 200px;
    display: flex;
    align-items: center;
    margin-left: var(--space-50);
    padding: 5px 15px 5px 20px;
}

.btn-offer .caption {
    font-weight: 900;
    font-size: 13px;
    line-height: 13px;
}

.logo {
    float: left;
}

.logo a {
    display: block;
}

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

#main-menu ul {
    font-size: 0;
}


#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 li > ul {
    display: none;
    flex-direction: column;
    max-height: 80vh;
    min-width: 100%;
    text-align: center;
    flex-wrap: wrap;
    gap: 0 !important;
    position: absolute;
    top: 100%;
    left: 0;
}

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

#main-menu li:hover > ul {
    display: flex;
    background-color: #fff;
}


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

#main-menu {
    margin-left: var(--space-50);
}

#main-menu ul li.active > a {
    color: var(--color-primary);
}

#main-menu ul li a:hover {
    color: var(--color-primary);
}

#main-menu > ul > li > ul {
    padding-top: 15px;
}

#main-menu ul li li {
    width: 100%;
}

#main-menu ul li li a {
    padding: 10px;
    display: block;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

#main-menu ul li a {
    transition: color 300ms;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 10px;
}

#main-menu ul {
    display: flex;
    width: 100%;
    gap: 20px;
    justify-content: space-between;
}

#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: red;
}

.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-cols {
    margin: -10px;
    display: flex;
}

.footer-col li,
.footer-col li a {
    line-height: 30px;
    transition: color 300ms;
    font-size: 14px;
    display: flex;
}

.footer-col li a:hover {
    color: var(--color-primary);
}

.footer-col li a[href^="mailto:"] {
    font-weight: 900;
}

.footer-col .icon {
    width: 15px;
    margin-top: 10px;
    margin-right: 15px;
    margin-bottom: -10px;
    height: 15px;
    color: var(--color-primary);
}

.footer-col {
    width: 16.667%;
    padding: 10px;
}

.footer-col-title {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.625;
    max-width: 230px;
    min-height: calc(2em * 1.625);
}

.footer-wrapper {
    background: center center /cover;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    background-blend-mode: overlay;
    background-attachment: fixed;
}

.footer-bottom {
    display: flex;
    padding: var(--space-40) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
}

.mainLogo:hover {
    border-color: var(--color-primary);
    z-index: 1;
}

.footer-bottom-right {
    margin-left: auto;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(var(--space-50) + var(--space-60));
}

.social-icon {
    transition: background-color 300ms, color 300ms, border-color 300ms;
}

.social-icon:hover {
    color: #fff !important;
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

.footer-wrapper .social-icon {
    border-color: #fff;
}

.contact-section .footer-bottom {
    padding: var(--space-50) 0;
    margin-top: var(--space-50);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-section .social-icon {
    border-color: #000;
}

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

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

.footer-text {
    font-size: var(--font-24);
    font-weight: 900;
}

footer .footer-top {
    padding: calc(var(--space-50) + var(--space-40)) 0 var(--space-50);
}

/* FOOTER BAR */
.footer-bar {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 30px;
    letter-spacing: 0.05em;
    font-weight: 200;
    font-size: 13px;
}

.contact-section .footer-col {
    padding: 0 10px 0 0;
}


.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;
    text-transform: uppercase;
}

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

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

.copyright-undicom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.copyright-undicom a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

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

.row-flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.form .row-flex-center {
    margin-top: var(--space-50);
}

.form .form-element-name {
    font-size: 16px;
    font-weight: 200;
}

/* 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: 14px;
    color: #fff;
}

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

/* CAPTCHA */
.form label a:hover {
    color: var(--color-primary);
}

.form label a {
    text-decoration: underline;
}

.form .captcha-image-wrapper,
.form .form-group-sm .captcha-image-wrapper,
.form .form-group-lg .captcha-image-wrapper {
    border-radius: 0;
    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;
    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: 0px;
    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-results__options li:not(:first-child) {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

/**
 * ANIMATABLE ICON
 */
.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: gray;
    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-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: calc(var(--space-50) * 2);
}

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

.logotypes .section-header {
    margin-top: calc(var(--space-50) * 2);
    margin-bottom: var(--space-60);
}

.logotype {
    width: 11.1111%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: var(--space-40);
}

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

.slick-track,
.slick-list {
    width: 100%;
    min-width: 100%;
}

.logotypes-slider-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.logotype-slider {
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    margin: calc(var(--space-40) * -1);
}

/**
 * SOCIALS
 */
.social-list > ul {
    margin: -5px;
    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;
    width: 45px;
    height: 45px;
    padding: 7px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.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.langs-menu--list li {
    position: relative;
}

.langs-menu.langs-menu--list li.active > a, .langs-menu.langs-menu--list li a.active {
    color: var(--color-primary);
}

.langs-menu.langs-menu--list li + li:before {
    height: 9px;
    width: 1px;
    background: #000;
    display: block;
    top: 0;
    bottom: 0;
    margin: auto 0;
    content: "";
    position: absolute;
    left: -16px;
}

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

.langs-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.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;
    margin-right: 8px;
    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 {
    display: inline-block;
    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: var(--color-primary);
    }

    .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 .langs-menu-short {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
}

.langs-menu--list .lang-button,
.langs-menu--list .langs-menu-icon {
    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 15px;
    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;
}

/**
 * GALLERY
 */

.gallery {
    clear: both;
}

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

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

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

.gallery-picture > img {
    display: block;
    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.4);
    transition: opacity 0.3s;
}

.gallery-picture-hover .icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
}

.gallery-picture-hover .icon {
    color: #fff;
    width: 16px;
    height: 16px;
}

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

.icheckbox_minimal-custom,
.iradio_minimal-custom {
    background-image: url(../images/minimal.png);
}

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
    .icheckbox_minimal-custom,
    .iradio_minimal-custom {
        background-image: url(../images/minimal@2x.png);
    }
}

/*main slider*/

.mainSlider-slide {
    background: center center /cover;
    background-color: rgba(0, 0, 0, 0.3);
    background-blend-mode: overlay;
    color: #fff;
    display: flex !important;
    align-items: stretch;
    height: unset;
}
.mainSlider-video{
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}

.mainSlider-slide .iframe-wrapper,
.mainSlider-slide video,
.mainSlider-slide .iframe-wrapper iframe {
    aspect-ratio: 1920/600;
    width: 100%;
}


.mainSlider-content {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}

.mainSlider:not(.slick-initialized) .mainSlider-slide + .mainSlider-slide {
    display: none !important;
}

.mainSlider .slick-track {
    display: flex;
    align-items: stretch;
}

@media screen and (min-width: 1140px) {
    .mainSlider-top {
        min-height: min(686px, 55vh);
        padding-top: min(25vh, calc(var(--space-60) * 2));
    }
}

.mainSlider-top {
    height: 100%;
}

.mainSlider-bottom:before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    height: 1px;
    display: block;
    content: "";
}

.mainSlider-bottom {
    position: relative;
}

.mainSlider-bottom-content {
    display: flex;
    width: 77%;
    align-items: center;
    min-height: calc(46px + (var(--space-50) * 2));
    justify-content: flex-end;
    gap: var(--space-60) calc(var(--space-60) * 2);
}

.mainSlider-bottom-content .btn {
    flex-shrink: 0;
}

.mainSlider-bottom-content .text {
    font-size: 20px;
    margin: 10px 0;
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    flex-grow: 1;

}

.mainSlider-top {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: var(--space-60);
}

.mainSlider-title {
    font-weight: 900;
    display: inline-block;
    line-height: 1.142857143;
    max-height: calc(3em * 1.142857143);
    overflow: hidden;
    font-size: var(--font-70);
}

.mainSlider-title .line {
    display: block;

}

.mainSlider-title .line:nth-child(2) {
    color: transparent;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #fff;
    text-align: right;
    padding-right: calc(var(--space-50) * 2);
}

.mainSlider-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 15px;
    font-size: 16px;
}

.mainSlider-floating-texts .floating-text {
    line-height: 1.142857143;
}

.mainSlider-floating-texts .floating-text + .floating-text {
    padding-top: 0.6em;
}

.mainSlider-floating-texts {
    width: 100%;
    font-size: var(--font-70);
    margin-bottom: 15px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #fff;
    display: flex;
    justify-content: flex-end;
}

.mainSlider-nav-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
}

.mainSlider-nav {
    display: flex;
    justify-content: flex-end;
    width: 23%;
    align-items: center;
    height: 46px;
    margin: var(--space-50) 0 var(--space-50) auto;
}

.mainSlider-section {
    position: relative;
}

.mainSlider-top {
    position: relative;
}

.main-slide-text {
    width: max-content;
    position: absolute;
    z-index: 4;
}

.main-slide-text.main-slide-text-center {
    top: var(--space-50);
    left: 50%;
    bottom: var(--space-50);
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.main-slide-text.main-slide-text-top-left {
    top: calc(3 * var(--space-50));
    left: var(--space-50);
    right: 50%;
    bottom: var(--space-50);
}

.main-slide-text.main-slide-text-center-left {
    top: var(--space-50);
    left: var(--space-50);
    right: 50%;
    bottom: var(--space-50);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.main-slide-text.main-slide-text-bottom-left {
    top: calc(3 * var(--space-50));
    left: var(--space-50);
    right: 50%;
    bottom: var(--space-50);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.main-slide-text.main-slide-text-top-right {
    top: calc(3 * var(--space-50));
    left: 50%;
    right: var(--space-50);
    bottom: var(--space-50);
}

.main-slide-text.main-slide-text-center-right {
    top: var(--space-50);
    left: 50%;
    right: var(--space-50);
    bottom: var(--space-50);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.main-slide-text.main-slide-text-bottom-right {
    top: calc(3 * var(--space-50));
    left: 50%;
    right: var(--space-50);
    bottom: var(--space-50);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}


.slick-dots:after {
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    width: 100%;
    left: 0;
    position: absolute;
    display: block;
    content: "";
    z-index: -1;
    background: rgba(0, 0, 0, 0.1);
}

.mainSlider-nav .slick-dots:after {
    background: rgba(255, 255, 255, 0.2);
}

.slick-dots {
    z-index: 2;
    position: relative;
    display: inline-flex !important;
    align-items: center;
    gap: var(--space-50);
    justify-content: flex-end;
}

.mainSlider-nav .slick-dot:hover {
    background: #fff;
}

.slick-dot:hover {
    background: #000;
}

.slick-dot {
    transition: background-color 300ms;
    background: var(--color-primary);
    width: 11px;
    height: 11px;
    border-radius: 50%;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
}

.slick-dot:before {
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    aspect-ratio: 1;
    margin: auto;
    pointer-events: none;
    overflow: hidden;
    border-radius: 50%;
    content: "";
    transition: width 300ms;
}

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

.aboutUs-logo {
    max-width: 35%;
}

.slick-active .slick-dot:before {
    width: 30px;
}

.slick-active .slick-dot {
    background: #000;
}

.mainSlider-nav .slick-dot:before {
    background: rgba(255, 255, 255, 0.1);
}

.mainSlider-nav .slick-active .slick-dot {
    background: #fff;
}

/*logos section*/
.bg-emblem img {
    max-width: 100%;
    display: block;
}

.bg-emblem-top {
    left: 0;
    top: 0;
}

.mainLogos-section {
    z-index: 2;
    position: relative;
}

.mainpage section:not(.mainSlider-section):not(.bg-gray):not([style^="background-image"]) {
    margin-bottom: calc(var(--space-50) * 2);
}

.mainLogos-section .bg-emblem {
    z-index: -1;
}

.bg-emblem {
    position: absolute;
    max-width: 45%;
    pointer-events: none;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.section-subtitle {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.section-title {
    font-size: var(--font-48);
    font-weight: 900;
}

.mainpage .section-header {
    margin-top: calc(var(--space-50) * 2);
    margin-bottom: var(--space-60);
}

.mainLogos-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.mainLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    overflow: hidden;
    width: calc(16.666% + 1px);
    margin-right: -1px;
    background: #fff;
    border: 1px solid #F2F2F2;
    padding: 10px;
}

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

/*numbers section*/
.bg-gray {
    background: var(--color-secondary);
}

section.bg-gray {
    background: var(--color-secondary);
    padding-bottom: calc(var(--space-50) * 2);
}

.numbers-list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: calc(var(--space-50) * -1);
    justify-content: center;
}

.numbers-box {
    width: 50%;
    padding: var(--space-50);
}

.numbers-box-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid #000;
    text-align: center;
    padding: var(--space-60) var(--space-25);
}

.numbers-box-number {
    font-size: var(--font-48);
    font-weight: 900;
    margin-bottom: 15px;
}

.numbers-box-caption {
    font-size: 16px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.numbers-section .section-header {
    margin-bottom: var(--space-25);
}

/* offer section */
.mainOffer-section .section-header {
    margin-bottom: var(--space-25);
}

.grid-box {
    display: flex;
    position: relative;
    z-index: 2;
    justify-content: space-between;
    align-items: center;
}

.mainOffer-section .bg-emblem {
    z-index: 0;
}

.mainOffer-section {
    overflow: hidden;
    background: #F2F2F2 !important;
    position: relative;
}

.grid-box:nth-child(2n) {
    flex-direction: row-reverse;
}

.grid-box-left {
    flex-shrink: 0;

    width: 50%;
}

.grid-box-right {
    width: 49.4%;
    flex-shrink: 0;
    position: relative;
}


.offer-box-icon {
    aspect-ratio: 1;
    overflow: hidden;
    width: 22.5%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    position: absolute;
    inset: 0;
    transition: background-color 300ms;
    margin: auto;
    justify-content: center;
    padding: var(--space-40);
}

.offer-box-icon svg {
    display: block;
    width: 100%;
}

.offer-box-icon svg *[fill] {
    fill: #fff;
}

.offer-box-icon svg *[stroke] {
    stroke: #fff;
}

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

.news-box-thumb img {
    width: 100%;
}

.offer-box-left {
    padding: calc(var(--space-60) + var(--space-25) + 5px);
}

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

    .offer-box-left {
        padding: var(--space-60);
    }
}

.offer-box-title {
    padding-right: 60px;
    font-size: var(--font-48);
    font-weight: 900;
    margin-bottom: 15px;
    max-width: 440px;
}

.offer-box-top {
    position: relative;
}

.offer-box-arrow {
    width: 50px;
    right: 0;
    position: absolute;
    bottom: 15px;
    height: 50px;
    transition: background-color 300ms;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
}

.offer-box-arrow .icon {
    width: 8px;
    height: 13px;
    color: #000;
}

.offer-box-text {
    font-size: 14px;
}

.offer-box {
    pointer-events: none;
}

.offer-box-title, .offer-box-text, .offer-box-right {
    pointer-events: auto;
}

.offer-box-left {
    width: 51.2%;
}

.offer-box-right {
    width: 48.8%;
}

.offer-box-arrow {
    pointer-events: auto;
}

.offer-box:hover {
    color: #000;
}

.offer-box .offer-box-right img {
    transition: filter 300ms;
}

.offer-box:hover .offer-box-icon {
    background-color: #000;
}

.offer-box:hover .offer-box-right img {
    filter: grayscale(1);
}

.bg-emblem-top-right {
    top: 0;
    max-width: 50%;
    right: -1%;
}

.bg-emblem-middle {
    top: 0;
    left: 0.5%;
    max-width: 84%;
    transform: translateY(24%);
}

.bg-emblem-middle .bg-emblem-transparent {
    position: absolute;
    width: 100%;
    top: -7%;
    left: 7%;
}

.button-wrapper {
    display: flex;
    position: relative;
    z-index: 2;
    align-items: center;
    justify-content: center;
    margin-top: calc(var(--space-50) + var(--space-50));
}

/* about us section */

.aboutUs-section {
    position: relative;
    padding-bottom: calc(var(--space-60) * 2 + var(--space-25));
    background: center center /cover;
    background-attachment: fixed;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    margin-bottom: calc(var(--space-40) * 2);
    background-blend-mode: overlay;
}

.bg-emblem-top .bg-emblem-transparent-secondary img {
    width: 100%;
}

.bg-emblem-top .bg-emblem-transparent.bg-emblem-transparent-secondary {
    width: 162%;
    top: 7.5%;
    left: 16%;
}

.aboutUs-section-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.aboutUs-section-content .aboutUs-list {
    width: 920px;
    max-height: 620px;
    overflow: hidden;
    margin: calc(var(--space-25) * -1);
}

.aboutUs-item-title {
    font-weight: 700;
    font-size: var(--font-24);
}

.aboutUs-item-title-wrapper {
    margin-bottom: var(--space-25);
    display: flex;
    align-items: center;
}

.aboutUs-item {
    padding: var(--space-25);
}

.aboutUs-item-inner .text {
    display: -webkit-box;
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.aboutUs-item-inner {
    height: 155px;
}

.aboutUs-item-title-wrapper .icon {
    width: 20px;
    height: 20px;
    margin-bottom: -3px;
    color: var(--color-primary);
    margin-right: var(--space-25);
}

.mainpage .aboutUs-section .section-header {
    margin-bottom: calc(var(--space-50) + var(--space-25));
}

.aboutUs-content-right {
    flex-grow: 1;
    justify-content: flex-end;
    display: flex;
    align-items: center;
    gap: calc(var(--space-50) + var(--space-40));
}

.aboutUs-section .slick-dot:hover {
    background: #fff;
}

.aboutUs-section .slick-dots {
    flex-direction: column;
}

.aboutUs-section .slick-dot:before {
    background: rgba(255, 255, 255, 0.1);
}

.aboutUs-section .slick-active .slick-dot {
    background: #fff;
}

.aboutUs-section .slick-dots:after {
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
}

/* grid list */
.mainGrid-section .grid-box-right {
    padding: calc(var(--space-50) * 2) calc(var(--space-50) * 3);
}

.mainGrid-section .grid-box .btn {
    margin-top: var(--space-40);
}

.mainGrid-section .grid-box .section-title {
    margin-bottom: 15px;
}

/* portfolio slider */
.btn-square {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-square .icon {
    width: 8px !important;
    height: 13px !important;
    margin: unset !important;
    color: inherit;
    display: block;
}

.icon-arrow-right {
    margin-left: 2px !important;
}

.portfolio-slider:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
    align-items: center;
}

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

.portfolio-slider .portfolio-box {
    flex-shrink: 0;
    padding: var(--space-25);
    width: 25%;
}

.portfolio-slider-wrapper {
    padding: 0 calc(50px + var(--space-50));
    position: relative;
}

.mainpage .portfolio-section .section-header {
    margin-bottom: var(--space-40);
}

.portfolio-slider-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 30%;
    pointer-events: none;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
}

.portfolio-slider-nav button {
    pointer-events: auto;
}

.portfolio-slider-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.portfolio-box-bottom {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.portfolio-box-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-box:hover .icon-play {
    color: var(--color-primary);
}

.portfolio-box-thumb .icon-play {
    position: absolute;
    top: 50%;
    font-size: 32px;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    font-weight: 700;
    color: #fff;
}

.portfolio-box-thumb {
    aspect-ratio: 1.78;
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}

.portfolio-box-thumb img {
    width: 100%;
    display: block;
}

.portfolio-title {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 900;
}

.portfolio-box-info {
    padding-top: 20px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.portfolio-box-info .portfolio-views + .portfolio-date:before {
    height: 10px;
    width: 2px;
    background: #000;
    margin-right: 10px;
    display: inline-block;
    content: '';
}

/* news */
.main-news-section {
    position: relative;
}

.news-slider .slick-list,
.news-slider .slick-track {
    width: 100%;
}

.news-slider {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    margin: calc(var(--space-50) * -1);
    width: calc(100% + (max(calc((1450px - 100vw) / -1), var(--container-padding))));
    margin-right: min(calc(1450px - 100vw), calc(-1 * var(--container-padding)));
}

.news-box {
    flex-shrink: 0;
    padding: var(--space-50);
    width: 25%;
}

.news-box-date {
    display: flex;
    transition: color 300ms;
    align-items: center;
    letter-spacing: 0.3em;
    font-size: 14px;
    margin-bottom: var(--space-25);
}

.news-box-date .icon {
    width: 12px;
    display: block;
    color: currentColor;
    margin-right: 15px;
    height: 12px;
}

.news-box-bottom {
    display: block;
    margin-top: var(--space-40);
}

.news-box-title {
    min-height: calc(2em * 1.5); /*jak było 4 to było rozjebane*/
    line-height: 1.5;
    font-size: var(--font-24);
    display: block;
    margin-bottom: var(--space-25);
    font-weight: 900;
}

.bg-emblem-top .bg-emblem-transparent {
    position: absolute;
    top: 8%;
    left: 11%;
    width: 92%;
}

.news-bottom {
    display: grid;
    grid-template-columns: 33% 33% 33%;
    margin-top: calc(var(--space-50) + var(--space-25));
}

.news-bottom .btn {
    justify-self: center;
}

.main-news-section .bg-emblem-top {
    left: -0.55%;
}

.news-box-link {
    font-weight: 700;
}

.news-box-inner .news-box-title, .news-box-inner .news-box-link {
    transition: color, 300ms;
}

.news-box-inner:hover .news-box-date,
.news-box-inner:hover .news-box-title,
.news-box-inner:hover .news-box-link {
    color: var(--color-primary);
}

/* map section */

.map-section-content {
    display: flex;
    justify-content: space-between;
    gap: var(--space-50);
}

.map-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: calc(var(--space-50) + var(--space-25));
    width: 32.5%;
    margin-right: 7.5%;
}

.map-wrapper {
    width: 48.5%;
    display: flex;
    position: relative;
}

.map-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: min(16px, 0.9vw);
    letter-spacing: 0.3em;
    line-height: 1.875;
    width: 33%;
    text-transform: uppercase;
}

.map-number {
    font-size: calc(var(--font-70) + var(--font-48) + 10px);
    line-height: 1;
    margin-bottom: calc(var(--space-40) + var(--space-25));
    font-weight: 900;
}

.map-texts .section-subtitle {
    margin-bottom: var(--space-40);
    text-align: center;
}

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


.voivodeship {
    transition: all .2s linear;
    cursor: pointer;
}

.voivodeship.active {
    fill: rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 1140px) {
    .voivodeship:hover {
        fill: transparent;
    }
}

.distribution-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.distribution-section {
    margin: var(--space-60) 0;
}

.distribution-map-wrapper {
    position: relative;
    margin-top: 10px;
    align-self: center;
    filter: drop-shadow(0px 15px 8px rgba(0, 0, 0, 0.36));
}

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

.distribution-points {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.distribution-point {
    position: absolute;
    z-index: 2;
    pointer-events: initial;
    cursor: pointer;
    transform: translateY(-50%) translateX(-50%);
    color: #fff;
}

.distribution-point .icon * {
    fill: #fff;
}

.distribution-point.hovered .icon * {
    fill: #000;
}

.distribution-map-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    aspect-ratio: 1.059817945;
    overflow: hidden;
    -webkit-mask-image: url('../images/icons/map.svg');
    mask-image: url('../images/icons/map.svg');
    -webkit-mask-size: cover;
    -mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.distribution-map-bg svg,
.distribution-map-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.region-wrapper {
    display: none;
}

.map-section {
    position: relative;
}

.map-logo {
    max-width: 10%;
    position: absolute;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

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

/* about us */
.page-header {
    display: flex;
    position: relative;
    flex-direction: column;
    text-align: center;
    border-bottom: none;
    margin: 0;
    margin-bottom: var(--space-60);
    padding: 0;
    padding-top: calc(var(--space-60) + 10px);
    align-items: center;
}

.page-header .news-date {
    margin-top: var(--space-40);
}

.page-header .bg-emblem-top .bg-emblem-transparent {
    top: 7%;
    left: 12%;
}

.page-header .bg-emblem {
    max-width: unset;
    width: 46.6%;
    left: -2%;
}

.page-header .bg-emblem img {
    width: 100%;
    max-width: unset;
}

.page-header > .container {
    position: relative;
    z-index: 2;
}

.page-header .section-subtitle {
    margin-right: -0.3em;
    margin-bottom: var(--space-40);
}

.page-title {
    font-size: var(--font-70);
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: var(--space-40);
}

.page-title:last-child {
    margin-bottom: 0;
}

.page-buttons {
    display: flex;
    align-items: center;
    gap: 17px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-buttons .btn {
    /*min-width: 328px;*/
    font-size: 16px;
    min-height: 50px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.3em;
}

.subpage .mainGrid-section {
    margin-bottom: var(--space-60);
}

.text-section {
    margin-bottom: var(--space-50);
}

.gallery-section {
    margin-bottom: calc(var(--space-50) * 2);
}

.gallery-section .section-header {
    margin-bottom: var(--space-50);
}

.gallery-section .section-title {
    font-size: var(--font-48);
}


/* team */
.team-section {
    position: relative;
    z-index: 2;
    margin-bottom: calc(var(--space-50) * 2);
}

.team-row {
    padding-bottom: var(--space-60);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.team-row + .team-row {
    margin-top: var(--space-60);
}

.team-title {
    text-align: center;
    font-size: var(--font-48);
    font-weight: 900;
    margin-bottom: calc(var(--space-25) + 10px);
}

.team-list {
    display: flex;
    flex-wrap: wrap;
    margin: calc((var(--space-25) + 5px) * -1) calc((var(--space-25) + 3px) * -1);
}

.person-box {
    width: 20%;
    padding: calc(var(--space-25) + 5px) calc(var(--space-25) + 3px);
}

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

.person-texts {
    margin-top: calc(var(--space-50) - 5px);
}

.person-name {
    font-size: var(--font-24);
    margin-bottom: 5px;
    font-weight: 900;
}

.person-position {
    font-weight: 200;
    font-size: calc(var(--font-24) - 4px);
}

.page-header .bg-emblem {
    z-index: -1;
}

/* news list */
.news-section {
    margin-bottom: calc(var(--space-50) * 2);
}

.news-list {
    flex-wrap: wrap;
    display: flex;
    align-items: stretch;
    position: relative;
    margin: calc((var(--space-40) + 5px) * -1) calc((var(--space-50) + var(--space-40)) * -1);
}

.news-list .news-box {
    padding: calc(var(--space-40) + 5px) calc(var(--space-50) + var(--space-40));
    width: 33.333%;
}

.news-list:before, .news-list:after {
    content: '';
    position: absolute;
    top: calc(var(--space-40) + 5px);
    bottom: calc(var(--space-40) + 5px);

    width: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.news-list:before {
    left: 33.3333%;
}

.news-list:after {
    left: 66.6666%;
}

.pagination-wrapper {
    padding: 0;
    max-width: unset;
    margin: calc(var(--space-50) * 2) 0;
}

.pagination-wrapper ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-wrapper ul li.prev {
    margin-right: var(--space-50);
}

.pagination-wrapper ul li.next {
    margin-left: var(--space-50);
}

.pagination-wrapper .btn .icon {
    padding: 0 !important;
}

.pagination-wrapper ul li.next a, .pagination-wrapper ul li.prev a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    font-size: 14px;
    letter-spacing: 0.3em;
}

.news-date {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.3em;
}

.news-date .icon {
    width: 12px;
    height: 12px;
    color: #000;
    margin-right: 15px;
}

.text-img {
    margin-bottom: var(--space-50);
}

.text-section .gallery {
    margin-top: var(--space-50);
}

.btn-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--space-50);
    margin-bottom: calc(var(--space-50) * 2);
}

/* brands-page */
.brands-page {
    padding-bottom: calc(var(--space-60) * 2);
    background-color: #F2F2F2;
    position: relative;
}

.brands-page .page-header, .brands-page .text {
    position: relative;
    z-index: 5;
}

.brands-page .grid-boxes {
    margin-top: var(--space-60);
}

.offer-box-right img {
    width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.brand-bananer {
    margin-bottom: var(--space-60);
    position: relative;
    background: linear-gradient(135deg, rgba(55, 55, 55, 1) 0%, rgba(9, 9, 9, 1) 50%);
}

.brand-bananer-inner {
    display: flex;
    color: #fff;
    gap: calc(var(--space-60) + var(--space-25));
    align-items: center;
}

.brand-bananer-inner:has(.brand-bananer-img) {
    padding-top: calc(var(--space-60) * 2 + 10px);

}

.brand-bananer-texts {
    margin: 0 auto;
}

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

.brand-logo {
    width: 68%;
    position: absolute;
    top: calc(var(--space-60) + 15px);
    left: 50%;
    transform: translateX(-50%);
}

.brand-bananer-img {
    position: relative;
    z-index: 2;
    margin-right: calc(var(--space-60) * -1);
    flex-shrink: 0;
    width: 58%;
}

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

.brand-bananer-title {
    color: #fff;
    font-weight: 900;
    line-height: 1.5;
    font-size: var(--font-24);
}

.brand-bananer-title + .brand-bananer-text {
    margin-top: var(--space-25);
}

.brand-bananer-texts .btn {
    margin-top: var(--space-50);
}

.brand-bananer-texts {
    padding: var(--space-25) 0;
}

/* icons section */

.icons-section {
    color: #fff;
    padding: calc(var(--space-50) * 2) 0 calc(var(--space-50) * 2 + 10px);
    background: center center /cover;
    margin-bottom: var(--space-60);
}

.icons-list {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;
    margin: calc(var(--space-25) * -1) calc(var(--space-50) * -1);
}

.icon-box {
    width: 25%;
    padding: var(--space-25) var(--space-50);
    text-align: center;
}

.icons-section .section-title {
    font-size: var(--font-48);
}

.icons-section .section-header {
    margin-bottom: var(--space-60);
}

.icons-section .icon-wrapper {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-50);
    height: 80px;
}

.icon-title {
    font-size: var(--font-24);
    margin-bottom: 15px;
    font-weight: 900;
}

/* gallery bg*/

.gallery-bg-section .section-header {
    margin-bottom: var(--space-60);
}

.gallery-bg-section .section-title {
    font-size: var(--font-48);
}

.gallery-bg-section {
    color: #fff;
    background: center center /cover;
    padding: var(--space-60) 0 calc(var(--space-50) + var(--space-60));
}

/* downloads */
.download-section {
    margin-bottom: calc(var(--space-60) + var(--space-25));
}

.downloads-list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    margin: calc((var(--space-40) + 2px) * -1);
}

.download-box {
    padding: calc(var(--space-40) + 2px);
    width: 20%;
}

.download-box-inner {
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    padding: var(--space-40);
    flex-direction: column;
    height: 100%;
    align-items: center;
    transition: border-color, 300ms;
    justify-content: center;
    text-align: center;
}

.download-section .section-title {
    font-size: var(--font-48);
}

.download-section .section-header {
    margin-bottom: var(--space-60);

}

.download-box .download-icon {
    margin-bottom: 15px;
}

.download-box .download-icon .icon {
    width: 46px;
    color: #000;
    height: 46px;
}

.download-title {
    font-size: 16px;
    flex-grow: 1;
    margin-bottom: var(--space-25);
}

.download-box .btn .icon {
    margin: 0 !important;
}

.download-box-inner:hover .btn {
    background: #000;
    border-color: #000;
}

.download-box-inner:hover {
    border-color: #000;
}

.subpage .aboutUs-section .section-title {
    font-size: var(--font-48);
}

.subpage .aboutUs-section .section-header .section-subtitle {
    margin-bottom: 15px;
}

.subpage .aboutUs-section .section-header {
    margin-bottom: calc(var(--space-50) + var(--space-40));
}

.subpage .aboutUs-section {
    margin-bottom: 0;
    padding-top: calc(var(--space-50) + var(--space-40));
}

.section-header .section-subtitle {
    margin-bottom: 5px;
}

/* form section */
.form-section {
    background: center center /cover;
    background-color: rgba(0, 0, 0, 0.6);
    background-blend-mode: overlay;
    color: #fff;
    background-attachment: fixed;
    position: relative;
    padding: calc(var(--space-50) + var(--space-40)) 0 var(--space-60);
}

.form-section .section-title {
    font-size: var(--font-48);
}

.form-section .section-subtitle {
    margin-bottom: 15px;
}

.form-section .section-header {
    margin-bottom: var(--space-50);
}

.iframe-section iframe {
    display: block;
    width: 100%;
    height: 550px;
}

/* area boxes */
.area-box:nth-child(2) {
    background-color: rgba(0, 0, 0, 0.8);
}

.area-box {
    color: #fff;
    width: 50%;
    background: center center /cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: overlay;
    text-align: center;
    padding: calc(var(--space-50) * 2) min(7vw, 136px) calc(var(--space-50) + 20px) min(7vw, 136px);
}

.area-box-title {
    font-size: var(--font-40);
    font-weight: 900;
    margin-bottom: var(--space-25);
}

.areas-boxes-section {
    gap: 17px;
    margin-bottom: calc(var(--space-50) * 2);
    align-items: stretch;
    display: flex;
}

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

.area-box-logos {
    display: flex;
    flex-wrap: wrap;
    margin: calc(var(--space-25) * -1);
    align-items: stretch;
    justify-content: center;
}

.area-box-logo {
    width: 33.3333%;
    display: block;
    padding: var(--space-25);
}

.area-box-logo-inner {
    padding: 20px var(--space-25);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: 1px solid transparent;
    transition: border-color 300ms;
    background-color: #fff;
}

.area-box-logo-inner img {
    max-width: 100%;
    display: block;
}

a[href].area-box-logo-inner:hover {
    border-color: var(--color-primary);
}

.area-box-top {
    margin-bottom: calc(var(--space-60) + 10px);
}

.area-box-title-small {
    font-size: calc(var(--font-30) + 2px);
    font-weight: 900;
    margin-bottom: calc(var(--space-25) + 10px);
}

.area-box-phones {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    margin: -18px calc((var(--space-25) - 2px) * -1);
}

.area-box-phone {
    width: 50%;
    padding: 18px calc(var(--space-25) - 2px);
}

.area-box-phone a {
    display: flex;
    align-items: center;
    padding: var(--space-25);
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 300ms;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    height: 100%;
    font-size: var(--font-24);
    line-height: 1em;
    gap: var(--space-25);
    text-align: left;
    font-weight: 200;
}

.area-box-phone .icon {
    width: 22px;
    height: 22px;
    color: var(--color-primary);
}

.area-box-phone a[href]:hover {
    border-color: var(--color-primary);
}

.area-box-caption strong {
    font-weight: 900;
}

.area-box-caption {
    font-size: var(--font-24);
    font-weight: 200;
    line-height: 1.5;
}

.area-box-text table td,
.area-box-text table th {
    width: 33.3333%;
    text-align: left;
    padding: 10px 15px;

}

.area-box-text table {
    margin: 0;
}

.area-box-text table td {
    border: none;
}

.area-box-text table thead + tbody tr:first-child td {
    padding-top: var(--space-25);
}

.area-box-text table tbody tr:last-child td {
    padding-bottom: var(--space-25);
}

.area-box-text table tbody {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.area-box-text table th {
    font-weight: 900;
    text-transform: uppercase;
}

.area-box-text table {
    width: 100%;
}

.area-box-text thead {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.area-box:nth-child(2) .area-box-top .area-box-text {
    margin-bottom: 0;
}

.area-box:nth-child(2) .area-box-top {
    margin-bottom: calc(var(--space-25) + 5px);
}


/* product slider */


.btn-arrow {
    cursor: pointer;
    transition: color 0.3s;
}

.product-actions .btn-square {
    border-radius: 10px;
}

.product-actions .btn-square.btn-red .icon {
    width: 17px !important;
    height: 17px !important;
}

.btn-arrow:hover {
    color: var(--color-primary);
}

.shop-product-list {
    display: flex;
    align-items: stretch;
}

.shop-product-box {
    padding: 18px 10px;
    width: 20%;
    flex-shrink: 0;
}

.shop-product-slider {
    margin-bottom: calc(var(--space-60) + 10px);
}

.shop-product-list {
    overflow: hidden;
    margin: -18px -10px;
}

.product-container {
    width: 100%;
    height: 100%;
    padding: calc(var(--space-25) + 5px);
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    position: relative;
    background-color: #fff;
}

@media screen and (min-width: 1140px) {
    .product-container:hover {
        box-shadow: 4px 6px 16.3px 0px rgba(0, 0, 0, 0.25);
    }
}


.product-nav-slider {
    margin: -5px;
    margin-top: 5px;
}

.product-nav-slider .product-slide {
    padding: 5px;
}

.product-nav-slider .product-slide-image {
    padding: var(--space-25);
    aspect-ratio: 1;
}

.product-slider-wrapper {
    position: relative;
}

.product-slider-wrapper .slider-arrows {
    position: absolute;
    bottom: var(--space-40);
    right: var(--space-40);
    display: flex;
    align-items: center;
    gap: 17px;
}

.product-variants {
    top: 20px;
    right: 20px;
    position: absolute;
}

.product-variant-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #F3F3F3;
    transition: all 0.3s;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 800;
    color: #000 !important;
}

.product-variant-item + .product-variant-item {
    margin-top: 9px;
}

.shop-order-login .login-box .btn {
    width: 100%;
}

@media screen and (min-width: 1140px) {
    .product-variant-item:hover {
        background: #fff;
        border-color: rgba(0, 0, 0, 0.2);
    }
}

.price-from {
    font-size: 12px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.product-content {
    flex-grow: 1;
}

.product-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-25)
}

.product-bottom .price:not(.price-old) {
    font-size: 20px;
    font-weight: 800;
}

.product-bottom .price-gross,
.product-bottom .price-net {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-bottom .price-old {
    font-size: 13px;
    text-decoration: line-through;
    font-weight: 300;
}

.shop-product-list-wrapper {
    position: relative;
    padding: calc(var(--space-60) + 26px + var(--space-25));
}


.product-labels {
    margin-bottom: 13px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-label {
    padding: 4px 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
}


.product-actions {
    display: flex;
    align-items: center;
    gap: 9px;
    position: relative;
    z-index: 1;
}

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-25);
}

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

.slider-arrows .btn-arrow .icon:hover {
    color: var(--color-primary);
}

.slider-arrows .btn-arrow {
    pointer-events: auto;
}

.slider-arrows .btn-arrow .icon {
    width: 16px;
    transition: color 300ms;
    height: 26px;
    color: #000;
    display: block;
}

.gallery-bg-section {
    margin-bottom: var(--space-60);
}

.shop-product-slider .section-title {
    font-size: var(--font-48);
}

.shop-product-slider .section-header {
    margin-bottom: var(--space-40);
}

.shop-product-list-wrapper {
    position: relative;
}

.slider-arrows {
    display: flex;
    top: 50%;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    transform: translateY(-50%);
    left: 0;
    position: absolute;
    padding: 0 var(--space-60);
    width: 100%;
}

.product-link {
    position: absolute;
    inset: 0;
}

/* history */
.history-slides-item {
    background-color: #F2F2F2;
    height: 100vh;

}

.history-slides-item-content {
    display: flex;
    align-items: center;
}

.history-slides-item-left {
    width: 50%;
}

.history-slides-item-right {
    height: 100%;
    width: calc(50% + (max(calc((1788px - 100vw) / -1), var(--container-padding))));
    margin-right: min(calc(1788px - 100vw), calc(-1 * var(--container-padding)));
}

.history-slides-item-right img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.history-slides-item > .container, .history-slides-item-content {
    height: 100%;
}

.history-slides-item-left {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: calc(var(--space-60) + var(--space-25));
    padding-left: calc(135px + var(--space-60));
}

.history-title {
    font-size: var(--font-48);
    font-weight: 900;
    margin-bottom: calc(var(--space-25) + 10px);
}

.history-slides-section {
    position: relative;
}

.history-years-wrapper {
    position: absolute;
    left: 0;
    pointer-events: none;
    z-index: 10;
    width: 100%;
    top: 50vh;
    transform: translateY(-50%);
}

@media screen and (min-width: 1140px) {
    .history-years-wrapper.bottom {
        top: unset;
        bottom: 50vh;
        transform: translateY(50%);
    }
}

.history-years-wrapper.fixed {
    position: fixed;
}

.history-years {
    display: flex;
    flex-direction: column;

}

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

.history-years-item {
    pointer-events: auto;
    width: 122px;
    height: 50px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 16px;
    transition: all 300ms;
}

.history-years-item + .history-years-item {
    margin-top: 10px;
}

.history-slides-item {
    position: relative;
}

.history-years-item.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.areas-header .btn {
    min-width: 185px;
}


.history-slides {
    scroll-snap-type: y mandatory;
}

.history-slides-item {
    scroll-snap-align: start;
}

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

.image-section .image-wrapper {
    display: inline-block;
    padding: 5px;
    width: 50%;
}

.image-section {
    margin-bottom: var(--space-40);
}

.video-section {
    margin-bottom: var(--space-40);
}

.video-section-content {
    position: relative;
}

.video-section-content:hover .video-icon-wrapper,
.video-section-content:hover img {
    opacity: 0;
}

.video-section iframe {
    aspect-ratio: 2.032835821;
}

.video-section img {
    pointer-events: none;
    position: absolute;
    inset: 0;
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: opacity 300ms;
    opacity: 1;
}

.video-icon-wrapper .icon {
    width: 20px;
    display: block;
    height: 15px;
}

.video-icon-wrapper {
    width: 50px;
    height: 50px;
    position: absolute;
    inset: 0;
    color: #fff;
    border: 1px solid #fff;
    transition: opacity 300ms;
    display: flex;
    pointer-events: none;
    z-index: 10;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.video-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.image-section-content {
    display: flex;
    align-items: center;
    margin: -5px;
    justify-content: center;
    flex-wrap: wrap;
}

.form-wrapper .form {
    max-width: 800px;
    margin: 0 auto;
}

.footer-bar-links a:hover {
    color: var(--color-primary);
}

.portfolio-slider .portfolio-box {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: unset;
}

.portfolio-slider .slick-track {
    display: flex;
}

.fancybox-modal-image img {
    width: 100%;
    display: block;
}

.fancybox-modal-image .bg-emblem {
    top: 20px;
    left: 20px;
}

.fancybox-modal-image {
    position: relative;
    padding: 20px;
}

.fancybox-modal-wrapper {
    overflow: visible;
}

.fancybox-modal-wrapper:before {
    position: absolute;
    inset: -82px -80px -90px -88px;
    margin: auto;
    display: block;
    z-index: -1;
    content: "";
    background: url("../images/modal-bg.webp") center center /contain no-repeat;
}

.fancybox-modal {
    background: url("../images/bg-emblem-bottom-gray.webp") right bottom no-repeat;
    background-size: 90%;
    max-width: 624px !important;
}

.fancybox-title {
    font-size: var(--font-24);
    padding: 0 10px;
    font-weight: 900;
    text-align: center;
}

.fancybox-modal-teaser {
    padding: var(--space-25) var(--space-40) !important;
}

.fancybox-modal .row-flex-center {
    margin-top: 15px;
    padding-bottom: var(--space-40);
}

.fancybox-close-small:after {
    content: "";
    display: block;
    width: 25px;
    height: 3px;
    border-radius: 0;
    transition: color 300ms, background-color 300ms;

    background-color: #fff;
    position: absolute;
    inset: 0;
    margin: auto;
    transform: rotate(-45deg);
}

.fancybox-close-small:before {
    content: "";
    display: block;
    width: 25px;
    height: 3px;
    border-radius: 0;
    background-color: #fff;
    position: absolute;
    inset: 0;
    transition: color 300ms, background-color 300ms;

    margin: auto;
    transform: rotate(45deg);
}

.fancybox-close-small {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    top: -50px;
    right: -50px;
    color: #fff;
    border: 1px solid var(--color-primary);
    transition: color 300ms, background-color 300ms;
}

.fancybox-close-small:hover:after,
.fancybox-close-small:hover:before {
    background-color: var(--color-primary);
}

.fancybox-close-small:hover {
    background-color: #fff;
    color: var(--color-primary);
}

.page-title-small {
    font-size: var(--font-48);
}

.main-news-section .bg-emblem-top .bg-emblem-transparent {
    position: absolute;
    top: 6%;
    left: 9%;
    width: 100%;
}

.main-news-section .bg-emblem-top {
    left: -1.55%;
}

.distribution-points .links-wrapper::-webkit-scrollbar {
    width: 5px;
    background-color: rgba(0, 0, 0, 0.1);
}

.distribution-points .links-wrapper::-webkit-scrollbar-thumb {
    width: 5px;
    background-color: var(--color-primary);
}

@-moz-document url-prefix() {
    .distribution-points .links-wrapper {
        scrollbar-width: thin;
        scrollbar-color: var(--color-primary) rgba(0, 0, 0, 0.1);
    }
}

.distribution-points .links-box {
    display: none;

}

.distribution-point:hover .links-box {
    display: block;
    position: absolute;
    bottom: 100%;
    padding-bottom: 20px;
    color: #000;
    left: 50%;
    transform: translateX(-50%);
}

.links-box:before {
    position: absolute;
    width: 16px;
    height: 16px;
    bottom: 6px;
    pointer-events: none;
    transform: rotate(45deg) translateX(-50%);
    content: "";
    display: block;
    left: calc(50% + 8px);
    background-color: #fff;
}

.links-wrapper {

    max-height: 500px;
    width: 460px;
    overflow: auto;
    background-color: #fff;
}

.distribution-point {
    padding: 10px;
}

.place-link .img-wrapper {
    min-width: 50px;
}

.place-link:hover .place-link-arrow {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.place-link:hover {
    text-decoration: underline;
    background-color: #F5F5F5;
}

.place-link {
    position: relative;
    gap: 20px;
    display: flex;
    transition: background-color 300ms;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
    align-items: center;
}

.place-link-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: background-color 300ms, color 300ms, border-color 300ms;
    display: flex;
    flex-shrink: 0;
    margin-left: auto;
    color: #000;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
}

.place-title {
    font-size: 14px;
    font-weight: 800;
    padding-right: 20px;
}

.place-link-arrow .icon {
    width: 12px;
    height: 10px;

    color: inherit;
}

.icon-number {
    font-size: 11px;
    background-color: var(--color-primary);
    border-radius: 50%;
    width: 21px;
    height: 21px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
}

.history-slides-item-right .logo-vertical {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.history-slides-item-right {
    position: relative;
}

.map-section-content {
    position: relative;
}

.map-section-content .bg-emblem-transparent {
    position: absolute;
    top: -148%;
    left: 0;
    pointer-events: none;
}

.section-header .section-title:first-child {
    margin-top: var(--space-25);
}

.text a:hover {
    text-decoration: underline;
}

.text a {
    text-decoration: none;
    color: var(--color-primary);
}

.form-element-option-text a {
    color: #fff !important;
}

.history-year-rwd {
    display: none;
    position: absolute;
    bottom: var(--space-25);
    right: var(--space-25);
    /*background-color: var(--color-primary);*/
    color: #fff;
    /*pointer-events: auto;*/
    width: 80px;
    height: 30px;
    padding: 5px;
    justify-content: center;
    align-items: center;
    /*border: 1px solid rgba(0, 0, 0, 0.1);*/
    font-size: 18px;
    transition: all 300ms;
}
.brands-form-wrapper .form-element-option-text a{
    color: var(--color-primary) !important;
}
.brands-form-wrapper .form .checkboxradio-container label {
    color: #000;
}

.brands-form-wrapper {
    padding: var(--space-60) 0;
    background-color: #fff;
}