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

    --font-80: clamp(40px, 4.3vw, 80px);
    --font-70: clamp(30px, 3.9vw, 70px);
    --font-60: clamp(25px, 3.2vw, 60px);
    --font-52: clamp(24px, 2.8vw, 52px);
    --font-48: clamp(24px, 2.5vw, 48px);
    --font-40: clamp(22px, 2.1vw, 40px);
    --font-36: clamp(20px, 2.2vw, 36px);
    --font-32: clamp(19px, 1.7vw, 32px);
    --font-30: clamp(18px, 1.6vw, 30px);
    --font-24: clamp(16px, 1.3vw, 24px);
    --font-20: clamp(16px, 1.2vw, 20px);

    --container-padding: 40px;

    --row-gap: 4px;

    /** SPECIFIC **/
    --color-primary: #000;
    --color-secondary: #F6F6F6;
    --color-default: #333;

    --font-primary: "Inter", sans-serif;
}

body {
    font-size: 16px;
    color: #000;
    font-family: var(--font-primary);
}

/**
 * BASIC
 */

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

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

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

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

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

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

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

a:hover, a:focus {
    color: inherit;
}

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

/**
 * 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: 1440px;
    width: 100%;
}

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

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

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


/**
 * THEMES
 */

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.active:focus,
.btn-primary:hover:focus,
.btn-primary:hover:active,
.btn-primary:focus:active {
    background-color: transparent;
    box-shadow: none;
    border-bottom: 1px solid var(--color-primary);
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-top: 1px solid transparent;
    color: var(--color-primary);
    -webkit-text-stroke: 0.5px transparent;
}

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

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

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

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

/**
 * BUTTONS
 */

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

.btn-lg {
    padding: 0;
    padding-bottom: 4px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;

    min-height: 46px;
    gap: 20px;
}

.btn-lg-padding {
    padding: 0 20px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;

    min-height: 46px;
    gap: 20px;
}


.btn-xl-gap {
    gap: calc(var(--space-60) + 15px);
}

/**
 * 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;
    color: #000;
    font-weight: 300;
}

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

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

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

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

.logo {
    float: left;
}

.logo a {
    display: block;
}

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

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

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

#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;
    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 {
}

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

}

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

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

.footer-bar-content {
    display: flex;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: 10px;
    align-items: center;
    justify-content: space-between;
    color: #000;
    text-align: justify;
    font-family: var(--font-primary);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 200% */
}

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

.form button.captcha-refresh {
    right: var(--row-gap);
    color: #000;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    border: 1px transparent;
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    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: 1px solid;
        border-color: #e10121;
        color: #e10121;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * MAP POINTS
 */

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

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

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

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

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

/**
 * BREADCRUMB
 */

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

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

.breadcrumb > li {
    position: relative;
    display: inline;
    color: #6d6e71;
}

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

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

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

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

/**
 * 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: var(--color-primary);
    transition: all .4s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    border-radius: 50%;
    height: 46px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

#main-menu ul li a {
    transition: all 0.3s;
    -webkit-text-stroke: 0.5px transparent;
    text-transform: uppercase;
}

#main-menu ul li.active a {
    font-weight: bold;
}

@media screen and (min-width: 1140px) {
    .social-icon:hover {
        background: #000;
        color: #fff;
    }

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

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

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


/**
 * LANGUAGES MENU
 */
.langs-menu {
    position: relative;
    float: right;
    padding-left: calc(var(--space-25) + 5px);
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
    z-index: 1001;
}

.langs-menu::before {
    position: absolute;
    content: '';
    top: 50%;
    width: 1px;
    background: rgba(0, 0, 0, 0.2);
    height: 12px;
    left: 0;
    transform: translateY(-50%);
}

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

.langs-menu li {
    padding: 5px 0;
}

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

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

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

.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: 46px;
    width: 46px;
    border-radius: 50%;
    padding: 5px 12px;
    font-size: 0;
    transition-duration: 0.3s;
    transition-property: background-color, color;
}

.lang span {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-family: var(--font-primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    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: 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 .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;
    margin-bottom: var(--space-60);
}

.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;
    font-size: calc(var(--font-24) - 2px);
}

.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%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    transition: opacity 0.3s;
}

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


header {
    background: #FFF;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
}

.header-inner {
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: height 0.3s;
}


.header-right {
    height: 100%;
    display: flex;
    align-items: center;
}

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

header .social-list {
    margin-right: calc(var(--space-25) + 5px);
}

.langs-menu-icon {
    display: none !important;
}

.lang i {
    display: none !important;
}

.section-heading {
    margin-bottom: calc(var(--space-40) + 5px);
}


.section-heading:has(.page-title) {
    margin-top: calc(var(--space-40) + 5px);
}

.section-title {
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: calc(var(--font-24) + 2px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


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

.main-images-wrapper {
    display: flex;
    margin-bottom: var(--space-40);
    gap: calc(var(--space-60) * 2 - 10px);
}

.main-images-tile {
    display: flex;
    flex-direction: column;
    gap: var(--space-25);
}

.main-images-text {
    color: #000;
    font-family: var(--font-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.875em;
}

.main-about-section {
    padding: var(--space-60) 0;
    background: var(--color-secondary);
    margin-top: var(--space-50);
}

.main-about-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: calc(var(--space-50) + var(--space-40));
    row-gap: calc(var(--space-50));
}

.main-about-tile {
    display: flex;
    flex-direction: column;
    gap: var(--space-40);
    align-items: start;
}

.text a {
    text-decoration: underline;
    -webkit-text-stroke: 0.5px transparent;
}

@media screen and (min-width: 1140px) {
    .text a:hover {
        cursor: pointer;
        -webkit-text-stroke-color: #000;
    }
}

.footer-top {
    padding: calc(var(--space-50) - 5px);
}

.footer-top-inner {
    display: flex;
    justify-content: space-between;
}

.footer-middle {
    margin-left: calc(var(--space-50) * 2);
}

.footer-col-tittle {
    color: #000;
    font-family: var(--font-primary);
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 500;
    line-height: 2.20em; /* 220% */
    margin-bottom: calc(var(--space-25) + 5px);

}

.footer-col-content a:not(.btn) {
    -webkit-text-stroke: 0.5px transparent;
    color: #000;
    font-family: var(--font-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.25em; /* 225% */
    text-transform: unset;
    transition: all 0.3s;
}

.footer-col-content {
    display: flex;
    gap: var(--space-60);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-col-content.btns {
    margin-top: calc(var(--space-25) - 10px);
}

.footer-col-content.info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


@media screen and (min-width: 1140px) {
    .footer-col-content a:hover {
        cursor: pointer;
        -webkit-text-stroke-color: var(--color-primary);
    }
}

.copyright-undicom {
    display: flex;
    align-items: center;
}

.copyright-undicom a {
    display: flex;
    align-items: center;
}

.copyright-undicom a img {
    filter: brightness(0) invert(0);
    margin-right: 4px;
}

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

.main-images-img {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.fa-angle-right:before,
.fa-angle-down:before,
.fa-angle-left:before,
.fa-angle-up:before {
    font-size: 18px;
}

.footer-top {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    margin-bottom: calc(var(--space-40) + 5px);
    row-gap: calc(var(--space-40) + 5px)
}

.gallery-text {
    margin-top: 10px;
    color: #000;
    font-family: var(--font-primary);
    font-size: 16px;
    font-style: normal;
    line-height: 1.875em; /* 187.5% */
}

.gallery-item-img-wrapper {
    overflow: hidden;
    aspect-ratio: 442/308;
}

.gallery-item img {
    transition: all 0.3s
}

.main-images-img img {
    transition: all 0.3s
}

.line-hover {
    position: relative;
    display: inline-block;
}

.inline-b {
    display: inline-block;
}

.line-hover::before {
    content: '';
    width: 0;
    height: 1px;
    background: #000;
    bottom: 0;
    left: 0;
    position: absolute;
    transition: all 0.3s;
}

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

    .gallery-item:hover .line-hover::before {
        width: 100%;
    }

    .main-images-tile:hover img {
        scale: 1.1;
        cursor: pointer;
    }

    .main-images-tile:hover .line-hover::before {
        width: 100%;
    }
}

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

.load-more-button {
    margin-top: calc(var(--space-40) + 5px);
}


.text h1 {
    font-size: calc(var(--font-40));
    margin-bottom: 20px;
    font-weight: 400;
}

.text h2 {
    font-size: calc(var(--font-32));
    margin-bottom: 20px;
    font-weight: 400;
}

.text h3 {
    font-size: calc(var(--font-24));
    margin-bottom: 20px;
    font-weight: 400;
}

.text h4 {
    font-size: calc(var(--font-20));
    margin-bottom: 20px;
    font-weight: 400;
}

.text h5 {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 400;
}

.text h6 {
    font-size: 12px;
    margin-bottom: 20px;
}

.text a {
    text-decoration: underline;
}

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

.painting-content {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.01);
    background: rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(12.600000381469727px);
    color: #fff;
    padding: var(--space-50);
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-40) - 5px);
    opacity: 0;
    transition: all 0.3s;
}

.painting-content.Vertical {
    gap: var(--space-25);
    padding: var(--space-40);
}

.painting-content-title {
    font-family: var(--font-primary);
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 700;
    line-height: 1.5em; /* 150% */
}

.painting-content-text {
    font-family: var(--font-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5em; /* 187.5% */
    overflow-y: auto;
    padding-right: 10px;
    margin-right: -10px;
}

.painting-content-atributes {
    display: flex;
    column-gap: var(--space-40);
    margin-top: auto;
    flex-wrap: wrap;
}

.painting-content-atribute {
    font-family: var(--font-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.875em; /* 187.5% */
    position: relative;
}

.painting-content-atribute:last-of-type::before {
    display: none;
}

.painting-content-atribute::before {
    position: absolute;
    right: calc(var(--space-40) / -2);
    background: #fff;
    height: 12px;
    top: 50%;
    width: 1px;
    transform: translateY(-50%);
    content: '';
}

.painting-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-60);
    justify-content: space-between;
}

.painting-text {
    margin-top: var(--space-25);
    color: #000;
    font-family: var(--font-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.875em;
}

.painting-item:nth-child(9n + 1) {
    width: 59%;
}

.painting-item:nth-child(9n + 2) {
    width: 33%;
}

.painting-item:nth-child(9n + 3) {
    width: 33%;
    margin-top: calc(var(--space-50) * -1.6);
}

.painting-item:nth-child(9n + 4) {
    width: 59%;
    margin-top: 1px;

}

.painting-item:nth-child(9n + 5) {
    width: 30%;
}

.painting-item:nth-child(9n + 6) {
    width: 30%;
}

.painting-item:nth-child(9n + 7) {
    width: 30%;
}

.painting-item:nth-child(9n + 8) {
    width: calc(50% - (var(--space-60) / 2));
}

.painting-item:nth-child(9n + 9) {
    width: calc(50% - (var(--space-60) / 2));
}

.painting-background {
    position: relative;
}

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

body *::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

body *::-webkit-scrollbar-thumb {
    background: #fff;
}

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

    .painting-item:hover .painting-content {
        opacity: 1;
    }
}

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

.contact-left-outer{
    width: calc(51% - 15px);
    position: relative;
}

.contact-left {
    position: absolute;
}

.contact-right {
    width: 49%;
    margin-bottom: 20px;
}

.contact-wrapper {
    display: flex;
    gap: 15px;
}

.contact-wrapper .form-control, .contact-wrapper .form .form-control {
    border-radius: 0;
    border-color: rgba(0, 0, 0, 0.20);
    font-family: var(--font-primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.form .form-element-name {
    margin-bottom: 5px;
    color: #000;
    text-align: center;
    font-family: var(--font-primary);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.form-group {
    margin-bottom: 7px;
}

.form .captcha-container .captcha-image {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
}

.checkboxradio-container {
    color: #000;
    text-align: justify;
    font-family: var(--font-primary);
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px; /* 169.231% */
    text-transform: capitalize;
}


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

.center:has(.btn) {
    margin-top: 20px;
}

.contact-left-content-inner-top {
    color: #000;
    font-family: var(--font-primary);
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5em; /* 150% */
    margin-bottom: calc(var(--space-40) - 5px);
}

.contact-left-content-inner-bottom {
    color: #000;
    font-family: var(--font-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875em; /* 187.5% */
}

.contact-left-content {
    display: flex;
    gap: 16px;
    align-items: start;
}

.contact-map-icon {
    margin-top: 3px;
}

.contact-left-wrapper {
    display: flex;
    gap: calc(var(--space-25) + 5px);
}

.gallery-item {
    margin: 0 auto;
    width: 100%;
}

.contact-map-icon {
    flex-shrink: 0;
}

.pagination-wrapper {
    padding: 0;
    margin: 0;
    max-width: 100%;
}

.gallery-item-img-wrapper.filled {
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: calc(var(--space-25) - 5px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.gallery-item img {
    max-height: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-map-icon {
    margin-top: 5px;
}

.footer-col-content .btns ul{
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-40);
    justify-content: center;
}


.footer-col-content .btns ul li a{
    background-color: transparent;
    box-shadow: none;
    border-bottom: 1px solid var(--color-primary);
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-top: 1px solid transparent;
    color: var(--color-primary);
    -webkit-text-stroke: 0.5px transparent;
    border-radius: 0;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: start;
    padding: 0;
    padding-right: var(--space-50);
    padding-bottom: 4px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;

    min-height: 46px;
    position: relative;
}

.footer-col-content .btns ul li a::before{
    position: absolute;
    content:'';
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 10px;
    background: no-repeat;
    background: url('../images/icons/arrow-right.svg');

}

.form-element-option-text a{
    -webkit-text-stroke: 0.5px transparent;
}

@media screen and (min-width: 1140px){
    .footer-col-content .btns ul li a:hover{
        -webkit-text-stroke-color: #000;
    }

    .form-element-option-text a:hover{
        -webkit-text-stroke-color: #000;
    }

    .contact-left-content-inner-bottom a:hover{
        text-decoration: underline;
    }
}

body #page{
    padding-top: 95px;
}


header.sticky .header-inner{
    height: 76px;
}

#contact-form{
    margin-top: -20px;
}

.form .consent-row{
    margin-top: 7px;
    margin-bottom: 0;
}

#contact-form{
    display: flex;
    flex-direction: column;
    height: 100%;

}

.row-flex-center.center{
    margin-top: auto;
    margin-right: auto;
    margin-left: auto;
    margin-bottom:  auto;
}

#container-page{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#page{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#container-page > footer{
    margin-top: auto;
    width: 100%;
}
#content{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.contact-section{
    flex-grow: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-wrapper ,.contact-section .container{
    flex-grow: 1;
    display: flex;
}

.contact-section .container{
    height: 100%;
    display: flex;
    flex-grow: 1;
}

.contact-form-container{
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-right{
    margin-bottom: 0;
}

.row-flex-center.center{
    padding: 20px 0;
}