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

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

    --container-padding: 40px;

    --row-gap: 5px;
    --right-padding: calc(var(--space-60) * 3);
    /** SPECIFIC **/
    --color-primary: #a83c8d;
    --color-secondary: #24a2e9;
    --color-default: #582a51;
}

body {
    color: #000;
    font-family: 'Inter', sans-serif;
}

/**
 * BASIC
 */

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

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: #ff00ff;
}

a:hover, a:focus {
    color: #00ff00;
}

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

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

/**
 * PAGE
 */

#page {
    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-mediumSmall {
    max-width: 1440px;
}

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

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

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

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

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

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

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

.icon-loupe {
    -webkit-mask-image: url('../images/icons/loupe.svg');
    mask-image: url('../images/icons/loupe.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.btn-md.btn-seeAll {
    display: inline-flex;
    align-items: center;
    color: #000;
    font-size: 18px;
    border: 1px solid transparent;
    border-radius: 0;
    padding: 0 calc(var(--space-50) + 5px);
    min-height: 70px;

}

.btn.btn-md.btn-seeAll:hover, .btn.btn-md.btn-seeAll:focus {
    border-color: #000;
}

.btn-seeAll .icon {
    margin-left: calc(var(--space-50) + var(--space-25));
}

.btn.btn-md {
    font-size: 18px;
    height: 46px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    padding: 0 calc(var(--space-25) + 6px);
}

.btn-transparent,
.btn-transparent:hover,
.btn-transparent:focus,
.btn-transparent:active,
.btn-transparent.active,
.btn-transparent.active:focus,
.btn-transparent:hover:focus,
.btn-transparent:hover:active,
.btn-transparent:focus:active {
    color: #000;
    border: 1px solid #000;
    background-color: transparent;
}

.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-primary.active {
    background-color: #fff;
    color: var(--color-primary);
}

.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: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}

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

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

.btn.btn-lg {
    min-height: 70px;
    text-transform: lowercase;
    padding: 0 calc(var(--space-60) + 10px);
    border-radius: 0;
    letter-spacing: 3.6px;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
}


.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: #fff;
    color: #fff;
}


.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.active {
    background-color: #fff;
    color: var(--color-default);
}

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

.search-buttons .btn + .btn {
    margin-left: 10px;
}

.search-buttons .btn:last-child {
    margin-left: 20px;
}

@media screen and (min-width: 1140px) {
    .btn.btn-category:hover, .btn.btn-category:focus {
        background-color: var(--color-primary);
    }

    .btn-transparent:hover, .btn-transparent:focus, .btn-transparent:hover:focus {
        border-color: var(--color-primary);
        background-color: #582a51;
        color: #fff !important;
    }

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

    .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: #fff;
        color: var(--color-secondary);
    }

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

/**
 * BUTTONS
 */

.btn {
    border-radius: 6px;
    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: 16px;
    line-height: 30px;
}

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


/** 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;
    color: var(--color-primary);
    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
 */

#content {
    padding-top: 101px;
}


@media screen and (min-width: 1921px) {
    header:after {
        left: 1664px;
        right: 0;
        margin: 0 auto;
    }
}

.header-inner {
    height: 101px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    display: flex;
}

header {
    background-color: #fff;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
}

@media screen and (min-width: 1140px) {
    .header-buttons {
        margin-top: 2px;
        margin-bottom: -2px;
    }
}

.header-buttons {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-buttons .hexagon {
    transition-property: color, background-color;
    transition-duration: 500ms;
}


.header-buttons .hexagon:hover {
    color: #fff;
}

.header-buttons .mainsearch-rwd-button .icon {
    width: 16px;
    height: 15px;
    display: block;
    margin-bottom: 8px;
}


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

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

.logo {
    float: left;
}

.logo a {
    display: block;
}

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

#main-menu {
    flex-grow: 1;
}

#main-menu > ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 5px var(--space-25);
    padding: 0 calc(var(--space-50)) 0 calc(var(--space-50) * 2);
    font-size: 0;
}

#main-menu li a:hover, #main-menu li.active a, #main-menu li a:focus {
    color: var(--color-primary);
}

#main-menu li a {
    transition: color, 500ms;
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
}

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

#main-menu li > a {
    padding: 5px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30px;
}

#main-menu ul ul > li {
    border-bottom: 1px solid #000;
}

#main-menu li > ul {
    display: none;
    min-width: 100%;
    background: #fff;
    white-space: nowrap;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
}

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

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

.main-menu-button {
    float: right;
    width: 40px;
    margin: 18px 0 18px var(--container-padding);
    border: none;
    background: transparent;
}


.mainsearch.rwdPanel {
    display: block;
}

.header-search {
    margin-right: 7px;
    position: relative;
}

.mainsearch-submit:hover {
    background-color: var(--color-secondary);
}

.mainsearch {
    position: absolute;
    width: 0;
    overflow: hidden;
    min-width: 0;
    transition-property: min-width, width;
    transition-duration: 500ms;
    pointer-events: none;

}

@media screen and (min-width: 1140px) {
    .mainsearch {
        top: 0 !important;
        right: 59px !important;
    }
}

.mainsearch.active {
    width: 18vw;
    min-width: 100px;
    pointer-events: auto;
}

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

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

.mainsearch input.form-control {
    display: block;
    padding: 0;
    border-right: none;
    box-shadow: none;
}

.mainsearch-submit .icon {
    width: 16px;
    height: 15px;
    margin-top: 10px;
    display: block;
    color: #fff;
}

.mainsearch-submit {
    display: flex;
    background: var(--color-primary);
    flex-shrink: 0;
    justify-content: center;
    align-items: flex-start;
    width: 54px;
    margin-right: 3px;
    aspect-ratio: 0.87;
    padding: 0;
    margin-bottom: 10px;
    z-index: 2;
}

.mainsearch .element-row {
    padding-left: 5px;
}

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

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

/*
* USER NAV
*/

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

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

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

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

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

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

/**
 * FOOTER
 */
footer {
}

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

.footer-bar-content {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);

}


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

.footer-top .col4 {
    padding-bottom: var(--space-25);
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.footer-top {
    background-color:#582a51;
    color: #fff;
}

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

.footer-cols .col2 .img-wrapper{
    max-width: 250px;
}
.footer-cols .col2 {
    display: flex;
    align-items: center;
}

.col1 ul {
    columns: 2;
    column-gap: var(--space-50);
}
.footer-cols {
    padding-top: calc(var(--space-60) + 10px);
    padding-bottom: calc(var(--space-50) * 1);
    display: grid;
    grid-template-columns: 3fr auto 3fr ;
}
.col3 .address{
    max-width: 370px;
}
.col3 .footer-content{
    width: 100%;
    padding-left: calc(var(--space-60) * 3);
}
.footer-social{
    margin-top: -20px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
@media screen and (min-width: 1140px){
    .mobile-only{
        display: none;
    }
}


.col1 {
    padding-right: var(--space-60);
}

.col1 ul li {
    line-height: 1.71;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    margin-bottom: calc(var(--space-25) + 5px);
}

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

.col3 .address {
    font-size: 14px;
    font-weight: 300;
    line-height: 2.57;
    letter-spacing: 2.8px;
}

.col1 ul {
    columns: 2;
}

.col1 ul li {
    min-height: 48px;
    break-inside: avoid-column;
}

.footer-cols a {
    color: #fff;
}

.footer-cols .text a {
    color: #fe8db7;
}

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

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

.copyright-undicom > a > svg {
    margin-right: 10px;
    margin-left: 5px;
}

.copyright-undicom > a {
    display: inline-flex !important;
    align-items: center;
}
.copyright-undicom a:hover {
    color: #b2d43d !important;
}
.copyright-undicom {
    float: right;
    display: inline-flex !important;
    align-items: center;
    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;
}
.copyright-undicom a:hover, .copyright-undicom a:focus {
    color: #b2d43d !important;
}
/**
 * FORM
 */
form.form {
    /* padding: 15px 0; */
}

/* INPUTY */
.form-control,
.form .form-control {
    border-radius: 0;

    box-shadow: none;
    height: 46px;
}

.input-group-addon {
    color: #fff;
    background-color: var(--color-primary);
    border-radius: 0;
}

/* 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: 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: var(--color-primary);
    border-radius: 0;
    background-color: transparent;
    border-color: var(--color-primary);
    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 {
        color: #fff;
        background-color: var(--color-primary);
    }

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

/**
 * ANIMATABLE ICON
 */
.animIcon {
    position: relative;
    display: inline-block;
    width: 26px;
    padding: 0 !important;
}

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

.animIcon span {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    height: 1px;
    width: 50%;
    background-color: #fff;
    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;
    right: 0;
    margin: 0 auto;
    left: 0;
    transition: margin, 500ms;
    transform-origin: left center;
}

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

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

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

.animIcon.animIcon--hamburger.active span:nth-child(1) {
    margin-left: 33%;
    -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: 56%;
    margin-left: 33%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/**
 * LOGOTYPES SLIDER
 */

.logotypesSection .section-header-inner {
    display: flex;
    margin-bottom: calc(var(--space-60) * 2 - 10px);
    flex-direction: column;

}

.logotypesSection {
    clip-path: polygon(64% 0px, 100% 0, 100% 100%, 0% 100%, 0px 296px);
    margin-bottom: 80px;
    background: top center /cover;
}

.logotypesSection .btn-seeAll:hover {
    border-color: #fff;
}

.logotypesSection .btn.btn-md.btn-seeAll {
    position: absolute;
    top: 0;
    color: #fff;
    right: -55px;
}

.logotypesSection .btn.btn-md.btn-seeAll:hover, .logotypesSection .btn.btn-md.btn-seeAll:focus {
    border-color: #fff;
}

.logotypesSection .section-header {
    color: #fff;
    display: flex;
    flex-direction: column;
    margin-top: calc(var(--space-40) * 4);
    justify-content: center;
    align-items: center;
}

.logotypesSection-content {
    position: relative;
    padding-bottom: var(--space-50);
}

@media screen and (min-width: 1140px) {
    .logotypesSlider-nav .slick-arrow:hover {
        color: #000;
        background-color: var(--color-primary);
    }

}

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

.slick-next {
    transform: scale(-1);
}

.logotypesSection-content .slick-arrow:hover .icon {
    background-color: #fff;
}


.slick-arrow .icon {
    width: 7px;
    height: 12px;
    transition: background-color, 500ms;
    margin: 0 auto;
    background-color: #000;
    display: block;
}

.logotypesSlider-nav .slick-arrow {
    color: #fff;
}

.logotypesSlider-nav {
    position: absolute;
    right: 27.5%;
    top: 17%;
    display: flex;
}

.logotype {
    display: flex;
    align-items: center;
}

.logotypesList .logotype:nth-child(even), .logotypesList .logotype:nth-child(even) .logotype-img {
    transform: scaleY(-1);
}

.logotypesList .logotype:nth-child(odd), .logotypesList .logotype:nth-child(odd) .logotype-img {
    transform: unset;
}

.logotypesSlider:not(.slick-initialized) .logotype-slide + .logotype-slide {
    display: none;
}

.slick-initialized .logotype-slide:not(.slick-current) .logotype {
    opacity: 0;
}

.logotype-slide .logotype {
    transition-property: opacity;
    transition-duration: 1s;
}

.logotype-slide, .logotypesList {

    margin: -15px 18px;
    justify-content: center;
    display: flex !important;
    flex-wrap: wrap;
}


.logotype-slide .logotype:nth-child(4) {
    margin-left: 20%;
}


.logotypesList .logotype:last-child {
    margin-bottom: 0;
}


.logotype-slide .logotype {
    width: 20%;

}

.logotype {
    padding: 15px 0;
    margin: 0 -18px;
}

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


.logotype:nth-child(odd) {
    transform: scaleY(-1);
}

.logotype:nth-child(odd) .logotype-img {
    transform: scaleY(-1);
}

.logotype:nth-child(2) {
    transform: scaleY(-1);
}

.logotype:nth-child(2) .logotype-img {
    transform: scaleY(-1);
}

.logotype:nth-child(1), .logotype:nth-child(3) {
    transform: unset;
}

.logotype:nth-child(1) .logotype-img, .logotype:nth-child(3) .logotype-img {
    transform: unset;
}

.logotype-inner {
    background-color: #fff;
    display: flex;
    padding: 32%;
    padding-bottom: 0;

    align-items: flex-end;
    clip-path: polygon(50% 0%, 0 100%, 100% 100%);
    aspect-ratio: 1.14893617;


    justify-content: center;
    width: 100%;
}

.logotypesSection-contact {
    background: top center no-repeat;
    /*background-color: #ff883d;*/
    clip-path: polygon(50% 0px, 100% 0, 100% 100%, 0% 100%, 0px 296px);

}

.logotypesList .logotype {
    width: 20%;

}

.logotypesList {
    display: flex;
    margin: -5px;
    flex-wrap: wrap;
}


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

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

.hexagon {
    clip-path: polygon(50% 0%, 0 100%, 100% 100%);
    aspect-ratio: 1.14893617;
}

.mainsearch-rwd-button.rwdButton {
    display: flex !important;
    margin: 0;
    width: 54px;
    background-color: var(--color-primary);
    border: none;
    color: #fff;
    justify-content: center;
    align-items: flex-end;
}

.header-buttons .rwdButton.rwdPanel-action-toggle:hover {
    background-color: var(--color-secondary);
}

.social-icon svg {
    color: inherit;
}

.social-icon svg * {
    color: inherit;

    fill: currentColor;
}

.hexagon-reversed {
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    aspect-ratio: 1.14893617;
}

.social-list .social-item:nth-child(odd) .social-icon {
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.social-list .social-item:nth-child(odd) .social-icon {
    padding: 10px 15px 22px 15px;
}

.social-icon {
    display: flex;
    justify-content: center;
    color: #fff;
    align-items: flex-end;
    padding: 10px 15px;
    width: 54px;
    background-color: var(--color-primary);
}

.social-icon:hover {
    background-color: var(--color-secondary);
}

.social-icon > * {
    position: relative;
    z-index: 5;
}

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

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

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

.langs-menu ul {
    overflow: hidden;
    position: absolute;
    top: 100%;
    width: 100%;
    background-color: #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: #fff;
        background-color: #f0f;
    }

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

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

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

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-right: 30px;
    padding-bottom: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    font-size: 20px;
    color: #fff;
    transition: opacity 0.3s;
}

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

.mainsearch.rwdPanel .mainsearch-search {
    border-bottom: 1px solid #000;
    background-color: #fff;
}

.mainsearch.rwdPanel .dropdown-menu {
    position: static !important;
    width: 100%;
    box-shadow: none;
}

.mainsearch.rwdPanel .dropdown-menu {
    padding: 15px;
}

.mainsearch.rwdPanel .dropdown-menu .dropdown-search-li.all-search-results {
    margin-top: 15px;
}

.mainsearch.rwdPanel .form-element-container {
    width: calc(100% - 46px);
    flex-grow: 0;
}


.mainsearch.rwdPanel input,
.mainsearch.rwdPanel .mainsearch-submit {
    border: none;
}

/*.mainsearch.rwdPanel.active {*/
/*    pointer-events: all;*/
/*    transform: none;*/
/*    -webkit-transform: none;*/
/*    -ms-transform: none;*/
/*}*/

.mainsearch.rwdPanel {
    z-index: 1000;
    background: #fff;
}

.mainsearch-rwd-button.rwdButton > * {
    transition: none;
}


/* main slider */
.mainSlider {
    margin-bottom: calc(var(--space-40) + var(--space-25) - 10px);
}

.slick-dots {
    display: flex;
    flex-direction: column;
}

.mainSlide {
    position: relative;
}

.mainSlide-img img {
    width: 100%;
    min-height: 600px;
    object-fit: cover;
    display: block;
}

.mainSlide-content {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    position: absolute;
}

.mainSlider-wrapper, .mainSlider-wrapper-content .container {
    position: relative;
}

.mainSlider-wrapper .container {
    height: 100%;
}

.mainSlider-wrapper-content {
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.mainSlider-buttons {
    position: absolute;
    bottom: 0;
    left: calc(var(--container-padding) - 10px);
    pointer-events: auto;
}

.mainSlider-nav {
    width: 100%;
    position: absolute;
    pointer-events: auto;
    right: var(--container-padding);
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    top: calc(var(--space-50) * 2);
}

.mainSlider-nav .slick-dots li {
    width: 28px;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    height: 24px;
}

.mainSlider-nav .slick-dots li + li {
    margin-top: calc(var(--space-25) - 2px);
}

.mainSlider-nav button:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--color-secondary);
    opacity: 0;
    transition-property: opacity, transform, width, height, bottom, left, top, right;
    transition-duration: 500ms;
    width: 0;
    clip-path: polygon(50% 0%, 0 100%, 100% 100%);
    height: 0;
}

.mainSlider-nav .slick-active button:after {
    opacity: 1;
    width: 25px;
    bottom: -1px;
    height: 21px;
}

.mainSlider-nav button {
    font-size: 0;

    background-color: #fff;
    transition-property: background-color, transform;
    transition-duration: 500ms;
    border: none !important;
    width: 13px;
    height: 11px;
    clip-path: polygon(50% 0%, 0 100%, 100% 100%);
}

.mainSlider-nav .slick-dots li:hover {
    cursor: pointer;
}

.mainSlider-nav .slick-dots li:not(.slick-active):hover button {
    transform: rotate(-180deg);
    width: 15px;
    height: 12px;
}

.mainSlider-nav .slick-active button {
    width: 28px;
    transform: rotate(-180deg);
    height: 24px;
}

.logotypesSlider-nav .slick-next {
    margin-left: 18px;
}

.slick-arrow:hover .icon {
    background-color: #fff;
}

.slick-arrow:hover, .slick-arrow:hover:before {
    background-color: var(--color-primary);
}

.slick-arrow .icon {
    margin-bottom: 10px;
}

.slick-arrow {
    width: 53px;
    height: 46px;
    border-radius: 0;
    font-size: 24px;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transition-property: background-color, background, background-size, color;
    transition-duration: 500ms;
    border: none;
}

@media screen and (min-width: 1140px) {
    .galleryMap svg g:hover > image {
        filter: brightness(0) invert(1);
    }
}

.mainSlide-bottom {
    z-index: 2;
    width: 878px;
    display: inline-block;
    position: relative;
    bottom: -1px;
    margin-left: calc((1607px - 100vw) / 2);
    padding-left: calc((1687px - 100vw) / -2 + var(--container-padding));
    padding-bottom: calc(40px + var(--space-60));
}

@media screen and (min-width: 1921px) {
    .mainSlide-bottom {
        margin-left: calc((1590px - 1920px) / 2);
        padding-left: calc((1687px - 1920px) / -2 + var(--container-padding));
    }

}

.mainSlide-bottom:before {
    z-index: -1;
    clip-path: polygon(0 0, 0 0, 100% 100%, 0% 100%);
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    aspect-ratio: 2.469740634;
    background: #fff;
    width: 100%;
}

.mainSlide-content-inner {
    position: relative;
    align-items: flex-start;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
}

.mainSlide-bottom .floatingImg img {
    max-width: 100%;
    display: block;
}

.mainSlide-bottom .floatingImg {
    max-width: 45%;
    position: absolute;
    top: 0;
    -webkit-transform: translate3d(22%, -50%, 0);
    -moz-transform: translate3d(22%, -50%, 0);
    -ms-transform: translate3d(22%, -50%, 0);
    -o-transform: translate3d(22%, -50%, 0);
    transform: translate3d(22%, -50%, 0);
    right: -4%;
}

.mainSlide-text {
    line-height: 24px;
}

.mainSlide .slide-title {
    text-transform: uppercase;
    margin-bottom: calc(var(--space-25) + 5px);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2.8px;
    font-family: 'ubuntu', sans-serif;
}


.btn-inner {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.btn-slide {
    position: relative;
}

.mainSlide-text {
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    max-width: 266px;
}

.btn-slide {
    font-family: "poppins", sans-serif;
    color: #fff;
    border-radius: 0;
    height: 46px;
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: var(--font-24);
    padding: 5px 10px;
}

.btn-slide + .btn-slide {
    margin-left: var(--space-40);
}

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

.btn-slide:hover, .btn-slide:focus {
    color: #54afe2;

}

.btn-slide:nth-child(2) {
    color: #54afe2;
}

.btn-slide:nth-child(2):hover, .btn-slide:nth-child(2):focus {
    color: var(--color-primary);
}

.mainSlide-button .btn{
    font-family: "Poppins", sans-serif;
}

.mainSlide-button {
    position: absolute;
    right: 0;
    bottom: calc(var(--space-60) * 2);
}

.btn-slide .icon {
    color: #fff;
    width: 18px;
    margin-left: calc(var(--space-50) - 10px);
    margin-right: var(--space-50);
    display: inline-block;
    height: 18px;
}

.btn-seeAll .icon {
    width: 44px;
    display: block;

    height: 34px;
}

.section-content {
    display: flex;
}

.aboutUs-img .img-wrapper {
    width: 100%;
    display: block;
    position: relative;
}
.aboutUs-img:not(.aboutUs-img-first) .img-wrapper img{
    filter: grayscale(1);
}
.aboutUs-img-inner {
    position: relative;
}

.aboutUs-img .img-wrapper:after {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fe8db7;
    mix-blend-mode: multiply;
}

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

.aboutUs-img {
    margin-top: calc(var(--space-60) * 2 + 10px);
    width: 49.6%;
    position: relative;
}

.aboutUs-content {
    width: 51.4%;
    padding-top: calc(var(--space-25) + 5px);
    padding-right: var(--right-padding);
}

.aboutUs-content .floatingText {
    text-shadow: -50px 45px rgba(0, 0, 0, 0.05);
    top: calc(var(--space-50));
}

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

.mainLinks-rows .section-right {
    pointer-events: none;
}

.mainLinks-rows .row:not(:first-child) .first-line {
    text-align: center;
    padding-right: 28px;
}

.mainLinks-rows .row:nth-child(2) .btn {
    margin-right: var(--right-padding);
}

.mainLinks-rows .row:nth-child(2) .second-line {
    padding-left: 0;
}

.aboutUs-img .logo-wrapper {
    display: flex;
    position: absolute;
    top: 61.5%;
    overflow: hidden;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: var(--space-25);
    width: 44.25%;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.mainLinks-rows .shopping {
    width: 100%;
}


.mainLinks-rows .row:nth-child(even) .section-content {
    display: flex;
    flex-direction: row-reverse;
}

.mainLinks-rows .row:nth-child(even) .section-right {
    margin-top: 0;
}

/*.mainLinks-rows .row:nth-child(even) .section-right {*/
/*    width: calc(47% + (1606px - 100vw) / -2);*/
/*    margin-left: calc((1606px - 100vw) / 2);*/
/*}*/

/*@media screen and (min-width: 1920px) {*/
/*    .mainLinks-rows .row:nth-child(even) .section-right {*/
/*        width: calc(47% + (1606px - 1920px) / -2);*/
/*        margin-left: calc((1606px - 1920px) / 2);*/
/*    }*/
/*}*/


.section-title {
    font-size: calc(var(--font-48) + var(--font-24));
    letter-spacing: 7.2px;
    line-height: 0.9;
    font-family: 'Libre Baskerville', serif;
    overflow: visible;
    font-weight: 700;
}

.section-title .first-line {
    display: block;
}

.section-title .second-line {
    display: block;
    padding-left: calc(var(--space-60) * 2 + 8px);
}

.mainpage .news .floatingText {
    top: -112px;
    left: 25%;
}

.floatingText {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    top: 0;
    left: 62%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    display: flex;
    text-transform: lowercase;
    text-shadow: -50px -45px rgba(0, 0, 0, 0.05);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
    font-size: 122px;
    font-weight: 700;
    white-space: nowrap;
}

.floatingText-caption {
    margin: 0 80px;
}

.aboutUs {
    padding-bottom: calc(var(--space-50) * 3 + 10px);
    position: relative;
}

.subpage .aboutUs {
    padding-bottom: calc(var(--space-50) + var(--space-50) + 12px);
}

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

.subpage .aboutUs-content .section-title {
    line-height: 1;
    font-size: calc(var(--font-48) + 17px);
}

.aboutUs-img-first .img-wrapper:after {
    content: none;
}

.aboutUs-img-first {
    position: absolute;
    left: -27.5%;
    width: 49.05%;
}
.section-header .floatingText{
    top: 45px;
}

/*.subpage .aboutUs-img .logo-wrapper {*/
/*    width: 29.8%;*/
/*    padding: 7.7%;*/
/*    right: 2.1%;*/
/*}*/

.subpage .aboutUs-img {
    pointer-events: none;
}

.subpage .aboutUs-img .img-wrapper {
    pointer-events: auto;
}

.aboutUs-text {
    font-size: 14px;
    margin-top: calc(var(--space-40) - 10px);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
    overflow: hidden;

}

.aboutUs-content .text-wrapper {
    display: flex;
    flex-direction: column;

}

.btn-seeAll {
    align-self: flex-end;
}

.aboutUs-content .btn {
    margin-top: var(--space-40);
}

.shopping .section-left .section-title {
    padding-bottom: calc(var(--space-25) + 10px);
    padding-right: calc(var(--space-40) * 2);
}

.shopping .section-left {
    display: flex;
    flex-shrink: 0;
    width: 50.4%;
    padding-bottom: 20px;
    padding-right: calc(var(--space-25) - 5px);
    align-items: center;
    flex-direction: column;
}

.mainLinks-rows .row:nth-child(even) .section-left {
    align-items: flex-start;
    justify-content: center;
}

.shopping .section-right img {
    max-width: 100%;
    display: block;
}

.mainLinks-rows .row:nth-child(odd) .section-right {
    margin-right: calc(var(--space-50) * -1);
    margin-left: var(--space-50);
    margin-bottom: min(-2%, -30px);
}

.shopping, .giftCards {
    position: relative;
}

.shopping .btn {
    margin-right: calc(var(--space-50) * -1 - 20px);
}

.shopping .section-right {
    display: flex;
    align-items: center;
    width: 49.6%;
    margin-top: min(-21%, -345px);
}


.shopping .floatingText {
    text-shadow: -50px 45px rgba(0, 0, 0, 0.05);
    top: 0;
}

.row:nth-child(even) .shopping .floatingText {
    text-shadow: -50px -45px rgba(0, 0, 0, 0.05);
    top: calc(var(--space-60) * 3 - var(--space-25));
}

.giftCards .section-content {
    align-items: flex-end;
    margin-top: -12%;
}

.giftCards .section-left img {
    max-width: 100%;
    display: block;
}

.giftCards .section-left {
    width: calc(47% + (1606px - 100vw) / -2);
    margin-left: calc((1606px - 100vw) / 2);
}

@media screen and (min-width: 1920px) {
    .giftCards .section-left {
        width: calc(47% + (1606px - 1920px) / -2);
        margin-left: calc((1606px - 1920px) / 2);
    }
}

.giftCards .btn-seeAll {
    margin-top: 20px;
}

.giftCards .section-right .section-title {
    padding-right: var(--space-40);
}

.giftCards .floatingText {
    top: unset;
    bottom: calc(var(--space-40) + 43px);
}

.mainLinks-rows .row {
    margin: 0;
}

.mainLinks-rows .row:nth-child(odd) .second-line {
    display: block;
    padding-left: var(--space-50);
}

.shopping .row:nth-child(odd) .section-left .section-title {
    padding-right: calc(var(--space-40) * 3 + 20px);;
}

.shopping .section-right .first-line {
    padding-left: calc(var(--space-60) + 12px);
}


.sunday .section-title {
    margin-bottom: 1%;
    position: relative;
}

.sunday .shoppingBasket {
    margin-top: 1%;
    z-index: 2;
    display: block;
}

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

.sunday .section-content {
    align-items: center;
}

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

.sunday .section-left {
    width: 66%;
}


.sunday .section-right .caption {
    font-size: var(--font-48);
    font-weight: 700;
}

.sunday .section-right {
    width: 34%;
    display: flex;
    padding-left: var(--space-25);
    justify-content: flex-end;
    align-items: center;
}

.sunday .section-title .first-line {
    letter-spacing: normal;
    padding-left: calc(var(--space-50) * 4 + var(--space-25));
}

.sunday .section-title .second-line {
    padding-left: 0;
    z-index: 2;
    position: relative;
}

.sunday {
    position: relative;
    z-index: 2;
    overflow-y: visible;
}

.sunday .floatingText {
    top: unset;
    bottom: calc(var(--space-60) * -3);
}

.discounts-inner {
    padding-top: calc(var(--space-50) + var(--space-40));
    padding-bottom: calc(var(--space-50) + var(--space-40));
}


.mainSlider:not(.slick-initialized) .mainSlide + .mainSlide {
    display: none;
}

.discountsSlider:not(.slick-initialized) .slide + .slide {
    display: none;
}

.section-header-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.mainpage .news .floatingText {
    margin-bottom: -15px;
    margin-top: calc(var(--space-50) * 2);
    position: static;
}

.discountsSlider .discountBox {
    width: 66.775%;
}

.discountsSlider .slide .discountBox:nth-child(2) {
    align-self: flex-end;
}

.mainpage .discountBox-content {
    width: 50.3%;
}

.mainpage .discountBox-thumbnail {
    width: 49.7%;
}


.discountsSlider .slide {
    display: flex;
    flex-direction: column;
}

.discountBox-content {
    padding: var(--space-50);

}

.discountBox-inner:hover, .discountBox-inner:focus {
    color: #000;
}

.discountBox-inner {
    color: #000;
    display: flex;
    align-items: center;
}

.box-title {
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: var(--font-30);
    font-weight: 700;
    letter-spacing: 2.33px;
}

.discountBox .store-name {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.7px;

}

.discountBox .btn {
    margin-top: var(--space-50);
}

.discounts .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.discountSlider-nav {
    position: absolute;
    display: flex;

    top: 42%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
}

.discountBox-thumbnail {
    width: 50%;

}

.discountBox-thumbnail img {
    width: 100%;
    display: block;
    object-fit: cover;

}

.discountsSlider-wrapper {
    position: relative;
}

.discountBox-content {
    width: 50%;
}

.discounts {
    position: relative;
}

.discountsBg img {
    width: 100%;
    display: block;

}

.discountsBg {
    min-height: 100%;
    display: flex;
    align-items: stretch;
    position: absolute;
    left: 0;
    top: 49%;
    z-index: -1;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.mainpage .discounts .section-title .second-line {
    display: block;
    padding-left: 0;
}

.mainpage .discounts .section-title .first-line {
    padding-left: calc(var(--space-40) * 4);
}

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

.discounts .btn-seeAll {
    margin-top: calc(var(--space-25) + 2px);
    align-self: unset;
    margin-right: calc(var(--space-60) * -1)
}

.discounts .header-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

.mainpage .discounts {
    margin-top: calc(var(--space-60) * 2 + 10px);
    margin-bottom: var(--space-50);
}

.discountsSlider-wrapper {
    max-width: 1483px;
    margin-top: 6px;
}

.megaphone {
    max-width: 23%;
    position: absolute;
    top: -16%;
    pointer-events: none;
    right: 14.5%;
    z-index: 2;
}

.discountsSlider-wrapper, .discounts-inner .header-content, .discountSlider-nav {
    z-index: 3;
}

.news .section-header {
    position: relative;
}

.news .section-header .btn {
    position: absolute;
    right: -55px;
    top: calc(50% - 15px);
    margin-bottom: 20px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.section-titleSmall {
    text-transform: uppercase;
    font-size: var(--font-30);
    text-align: center;
    font-weight: 700;
    letter-spacing: normal;
}

.news .section-top {
    display: flex;
    margin-top: 5px;
    align-items: center;
}

.news .section-bottom {
    display: flex;
    margin-top: var(--space-60);
    align-items: center;

}

.section-top .news-image {
    display: flex;
    padding-left: var(--space-60);
    justify-content: flex-end;
    padding-right: calc(var(--space-25) + 5px);
    margin-bottom: calc(var(--space-40) * -1);
}

.news-image {

    flex-grow: 1;
}

.mainpage .newsBox {
    width: 50%;
}

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

.news .section-bottom {
    display: flex;
}

.newsBox-thumbnail {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.newsBox-thumbnail img {
    width: 100%;
    display: block;
    aspect-ratio: 1;
}

.newsBox {
    padding: 20px;
}

.newsBox-date {
    letter-spacing: 3.05px;
    font-size: 12px;
    font-weight: 300;
    color: #2c2b2c;;
    margin-top: var(--space-40);
}

.newsBox-title {
    margin-top: var(--space-25);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 16px;
    font-weight: 700;
    color: #2c2b2c;
}

.newsBox-inner {
    display: block;
    height: 100%;
}

.newsBox-content {
    margin-top: calc(var(--space-25) + 10px);
}

.newsBox-title {
    text-transform: uppercase;
}

.news-list {
    width: calc(47% + 40px);
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin: -20px;
}

.section-bottom .news-image {
    margin-left: calc((1657px - min(100vw, 1921px)) / 2);
    padding-right: var(--space-60);
}

.newsletter .section-title {
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.1;
    padding-bottom: 40px;
}

.newsletter .floatingText {
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.newsletter {
    margin-bottom: calc(var(--space-50) * 2);
    position: relative;
}

.newsletter .section-title .second-line {
    padding-left: calc(var(--space-60) * 3 + 10px);
    font-size: var(--font-30);
    letter-spacing: normal;
    font-family: "Poppins", sans-serif;
}

.newsletter-form .form-control {
    font-size: 18px;
}

.newsletter-form {
    width: 100%;
    display: flex;
}

.newsletter-form input, .newsletter-form button {
    border-radius: 0;
}

.newsletter-form input::placeholder {
    color: #000;
}

.newsletter .section-left {
    width: 45%;
    padding-bottom: 60px;
}

.newsletter .section-right {
    display: flex;
    align-items: flex-end;
    position: relative;
    width: 55%;
}

.newsletter-form button i {
    font-size: 12px;
    margin-left: calc(var(--space-50) * 2);
}

.newsletter-form button {
    height: 60px;
    display: flex;
    letter-spacing: normal;
    font-weight: 400;

    padding: 0 calc(var(--space-25) + 5px);
    align-items: center;
    font-size: 14px;
}

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

.letter {
    bottom: -39%;
    right: 22%;
    width: 76%;
    z-index: -1;
    position: absolute;
}

.letter img {
    width: 100%;
    display: block;
}

.newsletter-form input.form-control {
    height: 60px;
    padding: 20px 30px;
    background-color: transparent;
    color: #000;
    border: 1px solid #000000;
    border-right: none;
}

.utilities .icon-wrapper svg path {
    filter: brightness(0) invert(1);
}

.utilities .icon-wrapper {
    color: var(--color-primary);
    flex-shrink: 0;
    display: inline-block;
    width: 30px;
    height: 30px;
}

.categories {
    max-height: 588px;
    position: relative;
    overflow-y: auto;
    margin-right: calc(var(--space-25) + 5px);
}

.categories::-webkit-scrollbar {
    width: 3px;
}

.categories::-webkit-scrollbar-track {
    background-color: transparent;
}

.utilities {
    position: relative;
}

.categories + .utilities:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.1);
    display: block;
    position: absolute;
    pointer-events: none;
    top: -36px;
    width: 1px;
    height: calc(100% + 36px);
    left: calc((var(--space-25) + 7px) * -1);
}

.categories::-webkit-scrollbar-thumb {
    background: var(--color-primary);
}

.categories .title {
    font-size: 14px;
    line-height: 2.57;
    text-transform: uppercase;
    font-weight: 700;

    color: #000;
}

.galleryMap .menu-list a {
    transition: color, 500ms;
}

.categories li:hover, .categories li:focus, .categories li.active {
    color: var(--color-primary);
}

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

.map-floors button.active {
    -webkit-text-stroke: 2px;
    color: var(--color-primary);
}

.map-floors button + button {
    margin-left: var(--space-25);
}

.map-floors button {
    background-color: transparent;
    border: none !important;
    color: #000;
    box-shadow: none !important;
    font-size: var(--font-24);
    font-weight: 200;
}

.map-floors {
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.categories li + li{
    margin-top: 18px;
}
.categories li {
    transition: color, 500ms;
    font-size: 14px;
    color: #000;
    padding-right: 10px;
    line-height: normal;
}

.galleryMap-wrapper {
    position: relative;
}

.galleryMap .aside-button {
    display: none;
}

.galleryMap .map-menu, .map-menu-wrapper {
    width: 100%;
}

.mainpage .galleryMap {
    margin-bottom: calc(var(--space-50) * 2 + var(--space-60));
}

.galleryMap .section-left {
    display: flex;
    align-items: center;
    width: 36%;
    padding-right: var(--space-25);
}

.galleryMap .section-right img {
    max-width: 100%;
    display: block;
}

.galleryMap .section-right {
    width: 64%;
    position: relative;
    padding-top: calc(var(--space-50) * 2);

}

.menu-list {
    width: 100%;
    display: flex;
}

.menu-list .categories, .utilities {
    width: 50%;
}

.utilities {
    margin-top: 36px;
    max-height: 78vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
}

.utilities::-webkit-scrollbar {
    width: 4px;
    background-color: rgba(0,0,0,0.1);
}

.utilities::-webkit-scrollbar-thumb{
    background-color: var(--color-primary);
}

.utilities li + li {
    margin-top: calc(var(--space-25) + 5px);
}

.utilities li .icon-wrapper {
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    aspect-ratio: 1.14893617;
    width: 54px;
    padding: 17px;
    padding-top: 5px;
    height: 47px;
    background-color: var(--color-primary);
    color: #fff;
    margin-right: 20px;
}

.search-form label {
    text-transform: uppercase;
}

.search-form input.form-control::placeholder {
    color: #000;
}

.search-form input.form-control {
    border: none;
    background-color: transparent;
    color: #000;
    padding-left: 10px;
}

.galleryMap-wrapper .floatingText {
    top: 76px;
    left: 80%;
}

.sunday .section-title {
    line-height: 1;
}

.galleryMap .section-header {
    display: flex;
    align-items: center;
    margin-bottom: calc(var(--space-25) + var(--space-60) + 76px);
    padding-bottom: 9px;
    border-bottom: 1px solid #000;
    justify-content: space-between;
}

.galleryMap .section-titleSmall {
    text-align: left;
}

.search-form label {
    letter-spacing: 0.7px;
    font-weight: 400;
    margin-right: var(--space-50);
    font-size: 14px;
}

.categories li {
    cursor: pointer;
}


.search-form .btn.hexagon .icon {
    background-color: #fff;
}

.stores-header .search-form .btn.hexagon .icon {
    background-color: #000;
}


.search-form .btn.hexagon-reversed {
    background-color: var(--color-primary);
    width: 54px;
    height: 47px;
    border-radius: 0;
    display: flex;
    padding: 0;
    align-items: flex-start;
    justify-content: space-around;
    color: #000;
}


.search-form .btn:hover {
    background-color: var(--color-secondary);
}

.search-form .btn:hover .icon {
    color: #fff;
}

.search-form .btn .icon {
    width: 15px;
    transition: color, 300ms;
    height: 15px;
    margin: 0;
    margin-top: 8px;
    display: block;
    color: #fff;
}

.search-form > .form-element-container {
    display: flex;
    margin-right: var(--space-25);
    align-items: center;
}

.search-form {
    display: flex;
    align-items: center;
}

.utilities li {
    display: flex;
    line-height: normal;
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    align-items: flex-start;
}

.main-sections {
    position: relative;
}

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

.mainBg {
    z-index: -1;
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    filter: grayscale(1);
    left: 50%;
    top: 57%;
    -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);
}

.logotypesSection .section-title {
    margin-left: var(--space-40);
}

.subpage .logotypesSection .section-header, .mainpage .logotypesSection .section-header {
    padding-bottom: 0;
}

.subpage .section-header {
    padding-bottom: calc(var(--space-60) * 1 + var(--space-40));
}

.news {
    position: relative;
}

.newsPage {
    padding-bottom: calc(var(--space-40) * 2);
    position: relative;
}

.page-title {
    letter-spacing: 12.98px;
    font-family: 'ubuntu', sans-serif;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    font-size: calc(var(--font-40) + var(--font-24) + 1px);
}

.newsPage .news-list {
    width: 100%;
    margin: calc((var(--space-40) + 5px) * -1) calc((var(--space-25) - 5px) * -1);
    display: flex;
    flex-wrap: wrap;
}

.newsPage .newsBox {
    padding: calc(var(--space-40) + 5px) calc(var(--space-25) - 5px);
    width: 25%;
}

.pagination-wrapper {
    padding-top: calc(var(--space-40) * 2);;
    padding-bottom: 0;
}

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    color: #000;
    transition: color, 500ms;
    font-size: 14px;

}

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

.newsBox-title {
    transition: text-decoration, 500ms;
}

.newsBox-inner:hover .newsBox-title {
    text-decoration: underline;
}

.newsPage .newsBox-inner:hover .newsBox-thumbnail:after {
    background-color: transparent;
}

.newsPage .newsBox-thumbnail {
    position: relative;
}

.newsPage .newsBox-thumbnail:after {
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity, 500ms;
    width: 100%;
    height: 100%;
    display: block;
    content: "";
    mix-blend-mode: color;
    background-color: var(--color-primary);
}

.pagination-wrapper ul li.next a:hover, .pagination-wrapper ul li.prev a:hover {
    background-color: #000;
    color: #fff;
}

.pagination-wrapper ul li.next a .icon, .pagination-wrapper ul li.prev a .icon {
    margin-bottom: 10px;
}

.pagination-wrapper ul li.next a, .pagination-wrapper ul li.prev a {
    width: 58px;
    display: flex;
    border-radius: 0;
    align-items: flex-end;
    justify-content: center;
    font-size: 27px;
}

.pagination-wrapper .prev:not(.disabled), .pagination-wrapper .next:not(.disabled) {
    width: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.pagination-wrapper * {
    float: none !important;
}

.newsView .newsBox-date {
    font-size: 14px;
    display: block;
    padding-bottom: var(--space-25);
}

.page-subtitle {
    text-transform: uppercase;
    padding-bottom: var(--space-50);
    font-size: var(--font-30);
    font-weight: 700;
}

.newsView {
    position: relative;
}

.newsView .page-top {
    padding-bottom: 22px;
}

.view-content {
    width: 53.5%;
    padding-left: var(--space-60);

}

.view-thumbnail {
    margin: 0 var(--space-60) var(--space-50) 0;
    width: 46.5%;
    align-self: flex-start;
}

.view-thumbnail img {
    /*aspect-ratio: 1;*/
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.downloads .section-content {
    align-items: center;
    padding-bottom: var(--space-60);
}

.downloads .section-title .second-line {
    display: block;
    padding-left: calc(var(--space-60) * 2);
}

.downloads .section-title {
    font-size: calc(var(--font-40) + var(--font-24) + 1px);
}

.downloads .section-left {
    display: flex;
    justify-content: flex-end;
    width: 53.5%;
}

.downloads .section-right img {
    max-width: 100%;
    display: block;
}

.downloads .section-right {
    padding-left: var(--space-50);
    width: 46.5%;
}

.downloads-list {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.downloadBox {
    width: 50%;
    padding: 15px;
}

.downloadBox-inner .caption {
    align-items: center;
    display: flex;
    transition-duration: 500ms, 0ms;
    transition-property: border-color, color;
    flex-shrink: 0;
    font-size: 14px;
    letter-spacing: 4.67px;
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    padding-left: var(--space-40);
}

.downloadBox-left {
    padding: 15px 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: var(--space-40);
}

.discountsPage {
    padding-bottom: calc(var(--space-40) * 2);
    position: relative;
}

.downloadBox-inner {
    height: 100%;
    width: 100%;
    font-size: 16px;
    align-items: stretch;
    font-weight: 700;
    color: #2c2b2c;
    padding: calc(var(--space-40) - 2px) calc(var(--space-25) + 5px);
    display: flex;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.subpage .discountBox:nth-child(even) {
    align-self: flex-end;
}

.subpage .discountBox {
    width: 66.66667%;
}

.subpage .discountsList {
    display: flex;
    flex-direction: column;
}

.subpage .discountBox-thumbnail {
    position: relative;
}

.subpage .discountBox-thumbnail:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    content: "";
    background-color: var(--color-primary);
    mix-blend-mode: color;
}

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

.contact-left {
    display: flex;
    width: 72%;
    flex-wrap: wrap;
}

.contact-left .contact-box {
    width: 50%;
}

.contact {
    position: relative;
}

.contact-left {
    margin: -20px calc(var(--space-50) * -1 - 10px);

}

.contact-row {
    margin: -20px calc(var(--space-50) * -1 - 10px);
    flex-wrap: wrap;
    display: flex;
    padding: var(--space-60) 0;
}

.contact-box {
    padding: 20px calc(var(--space-50) + 10px);
    width: 33.3333%;
}

.contact-title {
    line-height: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-size: 14px;
}

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

.contact-row + .contact-row {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-top {
    align-items: center;
    justify-content: space-between;
    display: flex;
}

.contact .section-header {
    padding-bottom: calc(var(--space-25) - 3px);
}

.contact-img {
    padding-left: calc(var(--space-50) * 2);
    margin-right: calc((1287px - 100vw) / 2);
    width: calc(33.33333% + (1287px - 100vw) / -2);
}

@media screen and (min-width: 1921px) {
    .contact-img {
        padding-left: calc(vaR(--space-50) * 2);
        margin-right: calc((1287px - 1920px) / 2);
        width: calc(33.33333% + (1287px - 1920px) / -2);
    }
}

.page-title {
    padding-top: var(--space-40);
}

.contact-top {
    padding-bottom: var(--space-60);
}

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

.contact-row .contactList-image img {
    width: 100%;
    display: block;
}

.contact-row .contactList-image {
    width: 33.3333%;
}

.contact-row .contactList-image .img-wrapper {

    margin: -20px calc(var(--space-60) * -2) -20px 0;
}

.subpage .galleryMap .section-header {
    padding-bottom: var(--space-40);
    padding-top: 20px;
}

.galleryMapPage {
    position: relative;
}

.galleryMapPage + .galleryMap {
    background-color: #f7f7f7;
}

.aboutUsPage {
    position: relative;
}

.subpage .aboutUs-text {
    -webkit-line-clamp: unset;
}

.subpage .aboutUs-img {
    margin: 0;
    width: 50%;
}

.subpage .aboutUs-content {
    width: 50%;
    padding-left: var(--space-40);
}

.storesPage {
    position: relative;
}

.stores-header {
    border-bottom: 1px solid #000;
    align-items: center;
    padding-bottom: 20px;
    row-gap: 10px;
    display: flex;
    margin-bottom: var(--space-40);
}

.stores-header .section-titleSmall {
    text-align: left;
    padding-right: var(--space-40);
}

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

.stores-header-right {
    display: flex;
    flex-grow: 1;
    padding-left: calc(var(--space-60) * 2 + 20px);
    justify-content: flex-end;
}

.stores-header .btn.btn-transparent {
    border-color: rgba(0, 0, 0, 0.1);

}

.stores-header .btn.active {
    background-color: #000;
    color: #fff;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.search-buttons {
    display: flex;
    gap: 10px;
}

.stores-categories {
    display: flex;
    padding: var(--space-50) 0;
    background-color: #f7f7f7;
}

.storesCategories-list {
    display: flex;
    gap: 10px;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;
}

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

.btn.btn-category {
    font-size: 14px;
    width: calc(20% - 10px);
    letter-spacing: 0.72px;
    height: unset;
    white-space: normal;
    flex-wrap: wrap;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    min-height: 44px;
    display: flex;
    justify-content: center;
    color: #000;
    align-items: center;
    padding: 10px;
}

.stores-list {
    padding: 5% 0;
    display: flex;
    flex-wrap: wrap;
    margin: -15px 0;
    margin-bottom: calc(var(--space-60) + var(--space-25) + 10px);

}

.subpage .galleryMap {
    padding: var(--space-60) 0;
}

.store-logo {
    z-index: 2;
    display: block;
}


.storeBox:not(.filtered):nth-child(even), .storeBox:not(.filtered):nth-child(even) .store-logo, .storeBox.reverse, .storeBox.reverse .store-logo {
    transform: scaleY(-1);
}

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

.storeBox-inner {
    display: flex;
    padding: 32%;
    padding-bottom: 0;
    background-color: #000;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;

}

.storeBox {
    overflow: hidden;
    width: 20%;
    padding: 15px 0;
}


.subpage .galleryMap {
    background-color: #f7f7f7;
}


.mainpage .news .section-header {
    padding-bottom: calc(var(--space-25) + 5px);
    margin-bottom: var(--space-40);
    border-bottom: 1px solid #000;
}

.section-top-wrapper {
    position: relative;
}

.news .section-top-wrapper:before {
    position: absolute;
    z-index: -1;
    top: var(--space-50);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    background-color: #fe8db7;
    aspect-ratio: 1.36;
    content: "";
    display: block;
    bottom: 0;

    right: 0;
}


.aboutUs .mainBg {
    top: 150%;
    left: 50%;
    width: 83.6%;
}

.newsView .gallery {
    padding-bottom: var(--space-60);
}

.gallery {
    padding-bottom: calc(var(--space-60) + var(--space-50));
}

.subpage .aboutUs-content {
    padding-right: 0;
}

.gallery-picture-hover .icon-wrapper {
    background: #000;
    width: 63px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.gallery-picture-hover .icon {
    color: #fff;
    width: 15px;
    margin-bottom: 10px;
    height: 15px;
    display: block;
}

.btn-goBack:hover {
    border-color: #000;
}

.btn-goBack {
    border: 1px solid transparent;
    align-items: center;
    font-weight: 700;
    letter-spacing: 4.67px;
    min-height: 70px;
    padding: 10px 55px;
    border-radius: 0;
    display: inline-flex;
    color: #000;

}

.subpage footer .section-header {
    padding-bottom: 0;
}

.btn-goBack .icon {
    width: 44px;
    height: 34px;

    display: block;
    margin-right: calc(var(--space-25) + 5px);
}

.downloads {
    margin-bottom: var(--space-60);
}

.newsView .btn-wrapper {
    margin-bottom: var(--space-60);
}

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

.newsView .mainBg {
    left: 50%;
    top: 15%;
    width: 85.4%;
    transform: translateX(-50%);
}

.newsView .page-top:after {
    content: "";
    display: table;
    clear: both;
}

.discountsPage .mainBg {
    top: 50%;
}

.footer-cols a {
    transition: color, 500ms;
}

.text a {
    transition: text-decoration, 500ms;
}

.footer-cols a:hover {
    color: #fe8db7;
}

.text a {
    color: #fe8db7;
}

footer .text a {
    color: inherit;
}

.footer-bar-content a:hover, .footer-bar-content a:focus {
    color: var(--color-primary);
}

.footer-cols .text a:hover {
    color: #fff;
}

.downloadBox-inner {
    transition-property: border-color, color;
    transition-duration: 500ms;
}

.discountBox-inne r {
    pointer-events: none;
}

.discountBox-inner .btn {
    pointer-events: auto;
}

.discountBox-thumbnail:after {
    transition: background-color, 500ms;
}

.downloadBox-inner:hover, .downloadBox-inner:focus {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.discountBox-inner:hover .discountBox-thumbnail:after, .discountBox-inner:focus .discountBox-thumbnail:after {
    background-color: transparent;
}

.downloadBox-inner:hover .caption {
    border-color: var(--color-primary);
}


.info-box .panel-body .btn {
    margin-top: 20px;
}

.info-box .panel-body {
    text-align: center;
}

.info-box .panel {
    margin-bottom: 0;
    width: 100%;
}

.info-box .panel-heading {
    text-align: center;
    font-size: calc(var(--font-24) - 3px);
}

.info-box {
    display: flex;
    align-items: stretch;
    width: 33.3333%;
    padding: var(--space-25);
}

.info-rows {
    display: flex;
    width: 100%;

    flex-wrap: wrap;
    align-items: stretch;
    padding-bottom: var(--space-60);
    margin: calc(var(--space-25) * -1);
}

#brands > g[id] {
    cursor: pointer;
    position: relative;
}

.local-nb{
    position: absolute;
    top: 0;
    left: 0;
}


.map-form .element-row {
    display: flex;
    align-items: center;
}

.hexagonBorder {
    position: relative;
}

.hexagonBorder-black {
    position: relative;
}

.hexagonBorder-black:before {
    display: block;
    content: "";
    position: absolute;
    background-color: #000;
    left: 1px;
    top: 1px;
    transition: background-color, 500ms;

    width: calc(100% - 2px);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);

    height: calc(100% - 2px);
}

.hexagonBorder:before {
    display: block;
    content: "";
    position: absolute;
    background-color: #fff;
    left: 1px;
    top: 1px;
    transition: background-color, 500ms;
    clip-path: polygon(50% 0%, 0 100%, 100% 100%);
    width: calc(100% - 2px);
    height: calc(100% - 2px);
}


.modal-header button.close span:nth-child(1) {
    transform: rotate(45deg);
}

.modal-header button.close span:nth-child(2) {
    transform: rotate(-45deg);
}

.modal-header .modal-title {
    color: #fff;
}

.modal-header {
    padding-right: 15px;
    background-color: var(--color-primary);
}

.modal-header button.close:hover:before {
    background-color: var(--color-secondary);
}

.modal-header button.close:hover {
    background-color: var(--color-secondary);
}

.modal-header button.close:hover span {
    background-color: #fff;
}

.pagination-wrapper .btn.btn-default:hover {
    background-color: #000;
}

.pagination-wrapper .btn.btn-default:hover:before {
    background-color: #000;
}

.downloads .section-title {
    line-height: 1;
}

.pagination-wrapper .btn.btn-default:hover .icon {
    background-color: #fff;
}

.pagination-wrapper .icon {
    padding: 0;
    width: 7px;
    height: 12px;
}

.pagination-wrapper .next .icon {
    transform: scaleX(-1);

}

.pagination-wrapper .hexagonBorder:before {
    left: 0px;
    top: 0px;
    width: calc(100% - 0px);
    height: calc(100% - 0px);
}

.modal-header button.close span {
    background-color: #000;
    width: 16px;
    height: 1px;
    display: block;
    position: absolute;
    top: unset;
    left: 0;
    right: 0;
    bottom: 11px;
    transition: background-color, 500ms;
    margin: auto;
}

.modal-header button.close:hover:before {
    background-color: var(--color-primary);
}

.modal-header button.close:before {
    background-color: var(--color-secondary);
}

.modal-header button.close {
    background-color: var(--color-secondary);
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -15px;
    width: 40px;
    opacity: 1;
}

.newsView .page-top {
    display: block;
}

.newsView .view-thumbnail {
    float: left;
}

.newsView .view-content .text {
    padding-bottom: var(--space-50);

}

.newsView .view-content {
    display: inline;
}

.result-list {
    margin: -15px;
    display: flex;
    flex-wrap: wrap;
}

.result-list .media {
    margin: 0 !important;
    padding: 15px;
}

.result-list .media {
    width: 50%;
}

.result-list .media-heading a:hover, .result-list .media-heading a:focus {
    text-decoration: underline;
}

.result-list .media-heading, .result-list .media-heading a {
    margin-top: var(--space-25);
    font-size: var(--font-24);
    font-weight: 700;
    color: var(--color-primary);
}

.mainsearch.rwdPanel .dropdown-menu {
    padding: 0;
    border: none;
}

.mainsearch .dropdown-search-li {
    border: none !important;
    margin: 0 !important;
}

.mainsearch .dropdown-search-li .undefined {
    display: none;
}

.mainsearch .dropdown-search-li {
    margin: 5px var(--container-padding);
    border-bottom: 1px solid var(--color-primary);
}

.section-header-right .map-form .form-control {
    width: 380px;
}


.mainpage .alert-container {
    position: absolute;
    left: 3px;
    top: 131px;
    margin: 0 auto;
    right: 0;
    width: 91%;
    z-index: 10;
}

.logotypesSlider.deactivated {
    flex-wrap: wrap;
}

.logotypesSection-contact {
    background-image: linear-gradient(258deg, #54afe2 0%, #fe8db7 100%) !important;
}

.logotypesSection-contact .section-header-inner {
    margin-left: 22%;
}


.footer-top .social-list > ul > li + li {
    margin-left: -18px;
}

#brands g image{
    filter: grayscale(1);
}


.error-template h2{
    font-size: calc(var(--font-48) + var(--font-24) - 2px);
    line-height: 0.9;
    text-transform: uppercase;
    font-family: 'Libre Baskerville', serif;
    overflow: visible;
    font-weight: 700;
    margin-bottom: var(--space-25);
}
.error-template .error-actions{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.error-template .btn.btn-lg{
    display: inline-flex;
}
.error-template .error-details{
    line-height: 30px;
    font-size: 16px;
    margin-bottom: var(--space-60);
}
.error-template{
    padding-bottom: var(--space-60);
}