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

    --font-secondary: "Outfit", serif;

    --container-padding: 40px;

    --row-gap: 5px;

    /** SPECIFIC **/
    --color-primary: #000;
    --color-secondary: #000;
    --color-default: #333;
    --color-border-deafult: rgba(0, 0, 0, 0.1);
}

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

/**
 * BASIC
 */

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

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: #000;
    transition: all .2s linear;
}

a:hover, a:focus {
    color: #000;
}

/**
 * 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-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    max-width: 1720px;
    width: 100%;
}

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

.container-xs {
    max-width: 1040px;
}

.container .container {
    padding-left: 0;
    padding-right: 0;
}

.container--noClear {
    clear: none;
}

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

/**
 * ICONS
 */

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

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

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

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

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

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

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

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

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

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


/**
 * THEMES
 */

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.active:focus,
.btn-primary:hover:focus,
.btn-primary:hover:active,
.btn-primary:focus:active {
    background-color: 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.6;
    cursor: not-allowed;
}

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

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

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

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

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

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

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

    .btn-secondary:not([disabled]):hover,
    .btn-secondary:not([disabled]).active:hover {
        background-color: #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 {
    transition: all .2s linear;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
}

.btn-square {
    width: 50px;
    height: 50px;
    border: 1px solid #000;
    background-color: transparent;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.btn-text-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(var(--space-25) + 5px);
    background-color: transparent;
    padding: 0;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff !important;
}

.btn-text-icon .icon {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #fff;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s linear;
}

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

    .btn.btn-text-icon.dark:hover .icon {
        background-color: #000;
        color: #fff !important;
    }
}

.btn.btn-text-icon.dark {
    color: #000 !important;
}

.btn.btn-text-icon.dark .icon {
    border-color: #000;
    color: #000 !important;
}

/**
 * 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 !important;
    justify-content: space-between;
    flex-wrap: wrap;
}

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

/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: 14px;
    line-height: 2.1428em;
}

/** 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;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all .2s linear;
}

header.sticky,
.subpage header {
    background-color: #000;
    border-color: #000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    padding: var(--space-25) 0;
    transition: all .2s linear;
    height: calc(45px + 2 * var(--space-25));
}

header.sticky .header-inner {
    height: calc(31px + 2 * var(--space-25));
}

.header-right {
    display: flex;
    gap: calc(2 * var(--space-50));
}

.subpage .logo,
header.sticky .logo {
    width: 122px;
}

.logo {
    width: 177px;
    align-self: center;
    transition: all .2s linear;
}

.logo a {
    display: block;
}

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

#main-menu > ul {
    display: flex;
    gap: calc(var(--space-40) + 2px);
    height: 100%;
}

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

#main-menu > ul > li > a {
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#main-menu > ul > li > a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(-1 * var(--space-25) - 1px);
    background-color: #fff;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    transition: all .2s linear;
}

#main-menu > ul > li > a:before {
    content: attr(data-content);
    display: block;
    width: fit-content;
    height: 0;
    overflow: hidden;
    font-weight: 700;
}

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

    #main-menu > ul > li > a:hover {
        font-weight: 700;
    }
}

#main-menu > ul > li.active > a:after {
    opacity: 1;
}

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

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

/* FOOTER BAR */
.footer-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    line-height: 30px;
    letter-spacing: 0.05em;
    font-weight: 300;
    font-size: 14px;
    color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * MAP POINTS
 */

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

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

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

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

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

/**
 * BREADCRUMB
 */

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

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

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

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

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

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

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

/**
 * PAGINATION
 */

.pagination-wrapper ul li a {
    color: #000;
    transition: all .2s linear;
}

.pagination-wrapper ul li.active a {
    font-weight: 700;
}

@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li a:hover {
        text-decoration: underline;
    }
}

/**
 * ANIMATABLE ICON
 */

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

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

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


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

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


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

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

.animIcon span {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    height: 2px;
    width: 100%;
    background-color: white;
    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 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.social-list > ul > li {
    display: block;
}

.social {
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #fff;
}

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

/**
 * LANGUAGES MENU
 */
.langs-menu {
    position: relative;
    transition: all .2s linear;
    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) {
    .langs-menu.langs-menu--list a:hover:after {
        opacity: 1;
    }

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

.langs-menu.langs-menu--list a.lang-active:after {
    opacity: 1;
}

.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 {
    height: 100%;
    position: static;
    opacity: 1;
    display: flex;
    border: none;
    background: none;
    gap: calc(var(--space-25) + 10px);
    overflow: unset;
}

.langs-menu.langs-menu--list li {
    border: none;
    position: relative;
}

.langs-menu.langs-menu--list a {
    height: 100%;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.langs-menu.langs-menu--list a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(-1 * var(--space-25) - 1px);
    height: 1px;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all .2s linear;
}

.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 {
    width: 100%;
    display: block;
    margin-bottom: var(--space-60);
}

.article-image img {
    display: block;
    width: 100%;
    object-fit: contain;
}

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

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

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


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

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


/**
 * GALLERY
 */

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

.gallery-list {
    font-size: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.gallery-list-item {
    display: inline-block;
    vertical-align: top;
}

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

.gallery-picture > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-25);
    align-items: center;
    justify-content: center;
    padding: var(--space-25);
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
    transition: opacity 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#page {
    flex-grow: 1;
}

#container-page > footer {
    margin-top: auto;
    width: 100%;
}

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

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

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

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

.main-slider-item {
    width: 100%;
    position: relative;
}

.slider-item-bg {
    position: relative;
}

.slider-item-bg img {
    display: block;
    width: 100%;
    object-fit: cover;
    min-height: 450px;
    position: relative;
    z-index: 1;
}

.slider-item-bg:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.6);
}

.slider-item-content {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    align-items: center;
}

.slider-item-content-inner {
    max-width: 660px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: calc(var(--space-25) + 5px);
}

.page-top-image .slider-item-content-inner {
    max-width: 1050px;
}

.page-top-image .slider-item-content-inner > .text {
    max-width: 670px;
}

.slider-item-title {
    font-size: clamp(26px, 4vw, 64px);
    font-weight: 200;
    line-height: 1.40625em;
}

.subpage #content {
    padding-top: 96px;
}

.main-slider-item-link {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.main-slider-actions {
    position: absolute;
    bottom: calc(2 * var(--space-50));
    left: 0;
    right: 0;
    z-index: 4;
}

.main-slider-actions-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    justify-content: space-between;
    gap: var(--space-50);
}

.main-slider-actions-inner:after {
    content: '';
}

.main-slider-pagination {
    display: flex;
    align-items: center;
    gap: 11px;
}

.main-slider-pagination .swiper-pagination-bullet {
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    opacity: 1;
    background: transparent;
    margin: 0 !important;
    transition: all .2s linear;
}

.main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff;
    color: #000;
}

@media screen and (min-width: 1140px) {
    .main-slider-pagination .swiper-pagination-bullet:hover {
        background-color: #fff;
        color: #000;
    }
}

.main-slider-pagination .swiper-pagination-bullet:not(:nth-of-type(n + 10)):before {
    content: '0';
}

.btn-scroll-down {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff !important;
    background: transparent !important;
}

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

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

.footer-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.footer-bg:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.6);
}

.footer-top-inner {
    display: flex;
    gap: calc(2 * var(--space-60));
    padding-top: calc(2 * var(--space-50));
    padding-bottom: calc(var(--space-60) + 10px);
}

.footer-col.footer-col-4 {
    margin-left: auto;
}

.footer-col-title {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
}

.footer-col-content {
    padding-top: calc(var(--space-25) + 5px);
}

.footer-col-content ul li a {
    color: #fff;
    font-size: 14px;
    line-height: 2.1428em;
}

.footer-col-content ul li a:before {
    content: attr(data-content);
    display: block;
    width: fit-content;
    font-weight: 700;
    height: 0;
    overflow: hidden;
}

@media screen and (min-width: 1140px) {
    .footer-col-content ul li a:hover {
        font-weight: 700;
    }
}

.footer-col-content ul li.active a {
    font-weight: 700;
}

.footer-col.footer-col-1 > .text {
    color: #fff;
    margin-top: var(--space-25);
}

.footer-col.footer-col-1 > .text a {
    color: #fff;
}

@media screen and (min-width: 1140px) {
    .footer-col.footer-col-1 > .text a:hover {
        text-decoration: underline;
    }
}

.page-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-60);
    margin: calc(2 * var(--space-50)) 0 var(--space-60) 0;
}

.page-heading > .text {
    max-width: 700px;
    text-align: center;
}

.page-title {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 700;
    position: relative;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    text-align: center;
    margin-bottom: calc(var(--space-25) + 5px);
}

.page-title:before {
    content: '';
    position: absolute;
    z-index: 1;
    left: 50%;
    width: 100vw;
    height: 1px;
    bottom: calc(-1 * var(--space-25) - 5px);
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.1);
    transition: all 1.2s linear;
}

.page-title:after {
    content: '';
    position: absolute;
    z-index: 2;
    left: 50%;
    width: 156px;
    height: 1px;
    bottom: calc(-1 * var(--space-25) - 5px);
    transform: translateX(-50%);
    background-color: rgb(0, 0, 0);
    transition: all 0.2s linear;
}

.page-title.opacityZero:before,
.page-title.opacityZero:after {
    width: 0;
}

.page-heading.page-heading-white > .text,
.page-heading.page-heading-white .page-title {
    color: #fff;
}

.page-heading.page-heading-white .page-title:after {
    background-color: #fff;
}

.page-heading.page-heading-white .page-title:before {
    background-color: rgba(255, 255, 255, 0.1);
}

.about-collection-item {
    display: flex;
    gap: calc(2 * var(--space-50));
}

.about-collection-item:nth-of-type(even) {
    flex-direction: row-reverse;
}

.about-collection-text {
    flex-grow: 1;
    padding: var(--space-50) 0;
    display: flex;
    gap: calc(var(--space-25) + 5px);
    flex-direction: column;
    justify-content: center;
}

.about-collection-text > .btn.btn-text-icon {
    align-self: flex-end;
}

.about-collection-image {
    flex-shrink: 0;
    width: calc(50% + (max(calc(((1720px - 2 * var(--container-padding) - 100vw) / -2)), var(--container-padding))));
}

.about-collection-item:nth-of-type(even) .about-collection-image {
    margin-right: min(calc(((1720px - 2 * var(--container-padding) - 100vw) / 2)), calc(-1 * var(--container-padding)));
}

.about-collection-item:nth-of-type(odd) .about-collection-image {
    margin-left: min(calc(((1720px - 2 * var(--container-padding) - 100vw) / 2)), calc(-1 * var(--container-padding)));
}

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

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

.about-collection-text.about-collection-text-big {
    font-size: clamp(30px, 4vw, 64px);
    line-height: 1.40625em;
    font-weight: 200;
    color: #000;
}

.about-gallery-list-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-60) var(--space-50);
}

.about-gallery-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: var(--space-40);
}

.about-gallery-item-image {
    width: 100%;
    overflow: hidden;
}

.about-gallery-item-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    transition: all .2s linear;
}

.about-gallery-item-text {
    font-size: 24px;
    line-height: 1.25em;
    font-weight: 700;
    text-align: center;
    color: #000;
}

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

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

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

.my-100 {
    margin-top: calc(2 * var(--space-50));
    margin-bottom: calc(2 * var(--space-50));
}

.mt-100 {
    margin-top: calc(2 * var(--space-50));
}

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

.concrete-about-collection {
    margin-bottom: calc(2 * var(--space-50));
}

.about-collection-text-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25em;
}

html {
    scroll-padding-top: 82px;
}

.icons-section {
    position: relative;
    padding: calc(2 * var(--space-50) - 10px) 0;
}

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

.section-bg img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-bg:before {
    content: '';
    position: absolute;
    z-index: 2;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

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

.icons-section-item {
    width: 20%;
    padding: var(--space-50);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-40);
}

.icons-section-item .icon-wrapper {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid #fff;
    padding: calc(2 * var(--space-40));
}

.icon-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.875em;
}

.news-list-section .about-collection-image {
    width: 50% !important;
    margin: 0 !important;
}

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

.news-list-section .about-collection {
    display: flex;
    flex-direction: column;
    gap: calc(2 * var(--space-50));
}

@media screen and (min-width: 1140px) {
    a.about-collection-item:hover .btn.btn-text-icon.dark .icon {
        color: #fff !important;
        background-color: #000;
    }
}

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

.text h2 {
    font-size: 24px;
    line-height: 1.25em;
    font-weight: 700;
}

.realization-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-bottom: calc(2 * var(--space-50));
}

.contact-top-info {
    margin-bottom: calc(var(--space-50) + var(--space-25));
}

.contact-top-info-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.contact-top-info-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-25);
    padding: 0 var(--space-50);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-top-info-item:last-child {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-top-info-item-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25em;
}

.contact-top-info-item-inner {
    display: flex;
    align-items: center;
    gap: calc(var(--space-25) - 5px);
}

.contact-top-info-item-inner .icon-wrapper {
    width: 50px;
    height: 50px;
    border: 1px solid #000;
    border-radius: 5px;
    flex-shrink: 0;
}

@media screen and (min-width: 1140px) {
    .contact-top-info .text a:hover {
        text-decoration: underline;
    }
}

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

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

.contact-form-section {
    position: relative;
    padding-bottom: calc(2 * var(--space-50));
}

.contact-form-section-bg {
    position: absolute;
    z-index: -1;
    inset: 0;
}

.contact-form-section-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.contact-form-section-bg:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.9);
}

.contact-form-section .form-control:not(.captcha-image-wrapper) {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 14px;
    font-family: var(--font-secondary);
    border-radius: 0;
}

.contact-form-section .form-control:not(.captcha-image-wrapper)::placeholder {
    color: #fff;
    font-size: 14px;
    font-family: var(--font-secondary);
}

.contact-form-section .form-element-name {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.contact-form-section .form-element-option-text {
    font-size: 14px;
    font-weight: 300;
    font-family: var(--font-secondary);
    color: #fff;
}

.pagination-wrapper {
    max-width: 100%;
    padding: 0 var(--container-padding);
    margin: calc(2 * var(--space-50)) 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-wrapper ul {
    max-width: 540px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-40);
}

.pagination-wrapper ul li a,
.pagination-wrapper ul li span {
    padding: 0;
    font-size: 14px;
    line-height: 1.1em;
    display: flex;
}

.pagination-wrapper ul li {
    padding: 0;
}

.pagination-wrapper ul li.next a,
.pagination-wrapper ul li.prev a {
    display: flex;
}

.pagination-wrapper ul li.next {
    margin-left: auto;
}

.pagination-wrapper ul li.prev {
    margin-right: auto;
}

.main-offer-section {
    position: relative;
    padding-bottom: calc(2 * var(--space-50));
}

.main-offer-section .section-bg:before {
    background-color: rgba(0, 0, 0, 0.5);
}

.main-realizations-list {
    margin: -1px;
}

.main-realizations-item {
    padding: 1px;
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.main-news-section {
    padding-bottom: calc(2 * var(--space-50));
    background-color: #F5F5F5;
}

.main-news-section .about-collection-image {
    width: 50% !important;
    margin: 0 !important;
}

.main-news-section .about-collection {
    display: flex;
    flex-direction: column;
    gap: calc(2 * var(--space-50));
}

.page-title-arrows:before {
    content: '';
}

.page-title-arrows {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: calc(2 * var(--space-50) - var(--space-40));
}

.page-title-arrows .page-title {
    margin-bottom: 0;
}

.arrows {
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-title-arrows .arrows {
    justify-content: flex-end;
}

.main-offer-list {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.main-offer-item {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.main-offer-item:not(.main-offer-item-starred) {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(var(--space-25) + 3px);
    padding: var(--space-40);
    min-height: 335px;
}

@media screen and (min-width: 1140px) {
    .main-offer-item:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }
}

.main-offer-item-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.main-offer-item-name {
    font-size: clamp(24px, 2vw, 36px);
    color: #fff;
    line-height: 1.25em;
    font-weight: 700;
}

.main-offer-item-text .caption {
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
}

.main-offer-item.main-offer-item-starred {
    grid-row: 1 / -1;
    display: grid;
    grid-template-rows: 1fr 1fr;
}

.offer-item-starred-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-60);
}

.offer-item-starred-text {
    padding: var(--space-60);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: calc(var(--space-25) + 10px);
}

.offer-item-starred-text:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.offer-item-starred-text:after {
    content: '';
    position: absolute;
    width: 230px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: 1px;
    background-color: #fff;
}

@media screen and (min-width: 1140px) {
    .footer-col-heading .icon {
        display: none;
    }

    .about-collection-item:hover .about-collection-text-title {
        /*color: ;*/
    }
}

.main-slider-section {
    position: relative;
}

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

.gallery-section .page-heading {
    margin-top: 0;
}

@media screen and (min-width: 1441px) {
    .main-about-section .about-collection-item:not(:first-child) {
        gap: calc(3 * var(--space-60) - 14px);
    }

    .about-news-collection .about-collection-item {
        gap: calc(4 * var(--space-50) - 6px);
    }
}

.about-gallery-item > .btn {
    margin-top: auto;
}

.main-slider-section .iframe-wrapper iframe {
    display: block;
    transform: scale(1.5);
    width: 100%;
    aspect-ratio: 16/9;
}

.main-slider-section .iframe-wrapper {
    aspect-ratio: 1920/950;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    pointer-events: none;
}

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

.tiles-section-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-40);
}

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

.tiles-section .tile-collection-text {
    margin-top: var(--space-25);
}

.tiles-section .tile-collection-text-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25em;
}

.tiles-section .tiles-image {
    width: 100%;
    flex-shrink: 0;
}

.form-element-option-text a{
    color: #fff;
    text-decoration: underline;
}