/**
 * 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: 5px;

    /** SPECIFIC **/
    --color-primary: #000;
    --color-secondary: #efeeeb;
    --color-default: #333;
    --color-border-deafult: #ccc;


}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    color: #000;
    font-family: "Poppins", sans-serif;
    background-color: #efeeeb;
}

/**
 * BASIC
 */
#page {
    overflow: hidden;
}

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

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

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: inherit;
}

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

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

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 {

}

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

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

.container-min {
    max-width: 1120px;
}

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

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

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


/**
 * THEMES
 */

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.active:focus,
.btn-primary:hover:focus,
.btn-primary:hover:active,
.btn-primary:focus:active {
    background-color: transparent;
    border-color: #EFEEEB;
    color: #EFEEEB;
}

.btn-primary.disabled.focus,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary[disabled].focus,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}


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

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

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

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

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

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

.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-white,
.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white.active,
.btn-white.active:focus,
.btn-white:hover:focus,
.btn-white:hover:active,
.btn-white:focus:active {
    background-color: #fff;
    border-color: #fff;
    color: #000;
}

.btn-white.active {
    background-color: #000;
    border-color: #000;
    color: var(--color-secondary);
}

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

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


.btn-default.disabled.focus,
.btn-default.disabled:focus,
.btn-default.disabled:hover,
.btn-default[disabled].focus,
.btn-default[disabled]:focus,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default.focus,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default:hover {
    background-color: var(--color-default);
    border-color: var(--color-default);
}


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

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

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

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

    .btn-primary.alternative-hover:not([disabled]):hover,
    .btn-primary.alternative-hover:not([disabled]).active:hover {
        background-color: #EFEEEB;
        color: #000;
        border-color: #EFEEEB;
    }

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

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

    .btn-border-white:not([disabled]):hover,
    .btn-border-white: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-md {
    font-size: 14px;
    border-radius: 0;
    min-height: 40px;
    padding: 5px 10px;
    min-width: 76px;
    font-weight: 400;
}

.btn-lg {
    font-size: 14px;
    border-radius: 10px;
    font-weight: 400;
}

.btn {
    transition: all 0.3s;
    display: inline-flex;
    text-align: center;
    font-style: normal;
    line-height: normal;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;

}

/**
 * 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 {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.1429em; /* 214.286% */
}

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

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

.text ul > li::before {
    content: "•";
    position: relative;
    display: inline-block;
    width: 10px;
    left: -3px;
    bottom: 1px;
    margin-left: -10px;
    line-height: 1em;
    font-family: sans-serif;
    font-weight: 900;
    font-size: 10px;
}

.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;
    transition: all 0.3s;
    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 {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    box-shadow: none;
    color: #fff;
    background-color: transparent;
    border-radius: 5px;
    position: relative;
}


.main-menu-button span:nth-child(1) {
    bottom: 16px;
}

.main-menu-button span:nth-child(3) {
    top: 16px;
}

.main-menu-button.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 0;
    bottom: 0;

}

.main-menu-button.active span:nth-child(2) {
    transform: rotate(45deg);
    opacity: 0;
}

.main-menu-button.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 0;
    top: 0;
}

.main-menu-button span {
    background-color: currentColor;
    width: 28px;
    height: 1px;
    display: block;
    transition: all 300ms;
    position: absolute;
    inset: 0;
    margin: auto;
}

.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;
    font-size: 14px;
    margin-top: calc(var(--space-40) + var(--space-50));
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.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;
    align-items: center;
    justify-content: space-between;
}

.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;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.20);
    border-color: transparent;
    color: #EFEEEB;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    height: 46px;
}

.form-control::placeholder, .form .form-control::placeholder {
    color: #EFEEEB;
}


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

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

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

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

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

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

.form button.captcha-refresh {
    right: var(--row-gap);
    color: #000;
    border-radius: 0 6px 6px 0;
    background-color: transparent;
    border-color: var(--color-default);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    width: 46px;
    height: 46px;
    border: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
}

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

    .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-transform: uppercase;
    text-align: left;
    border-radius: 0;
    background-color: transparent;
}

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

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

.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 {
    padding: 0;
    margin: calc(var(--space-60) + 10px) auto;
}

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

.pagination-wrapper ul li a {
    font-size: 15px;
    line-height: normal;
}

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

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

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

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

.pagination-wrapper ul li a:not(.btn) {
    color: #000;
    -webkit-text-stroke: 0.5px transparent;
    transition: all 0.3s;
}

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

@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li a:hover {
        color: var(--color-primary);
    }
}

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


/**
 * LOGOTYPES SLIDER
 */


/**
 * 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: 40px;
    height: 40px;
    border: 1px solid #f0f;
}

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

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


/**
 * LANGUAGES MENU
 */
.langs-menu {
    display: flex;
    gap: 5px;
    align-items: center;
}

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

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


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


.langs-menu a {
    min-height: 40px;
    text-decoration: none;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: color 300ms, background-color 300ms, border-color 300ms;
}

.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;
    justify-content: center;
    align-items: center;
    width: 76px;
    border-radius: 0;
    font-size: 0;
    transition-duration: 0.3s;
    transition-property: background-color, color;
}

.lang span {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

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

.lang-button {
    padding: 5px 15px;
    min-height: 40px;
    cursor: pointer;
    font-size: 14px;

    text-transform: uppercase;
    color: #fff;
    background-color: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 300ms, border-color 300ms, background-color 300ms;
    border: 1px solid rgba(255, 255, 255, 0.1);
}


.langs-menu-icon img {
    max-width: 100%;
}

@media screen and (min-width: 1140px) {
    .langs-menu a:hover {
        background: #fff;
        color: #000;
        border: 1px solid #000;
    }

    .lang-button:hover {
        background-color: var(--color-secondary);
        color: var(--color-primary);
        border-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);
}

@media screen and (max-width: 1140px){
    .square-item.bounce:hover{
        color: #fff;
    }
}

.langs-menu--list .lang-button {
    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: 0;
    border: none;
}

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

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

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


/**
 * ARTICLE
 */
.article {
    overflow: hidden;
}

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

.article-image {
    position: relative;
    z-index: 10;
    display: inline-block;
    vertical-align: top;
    float: left;
    max-width: 50%;
    margin-right: 50px;
    margin-bottom: 20px;
}

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

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

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

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


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

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


/**
 * GALLERY
 */

.gallery {
    clear: both;
}

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

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

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

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

.gallery-picture-hover {
    opacity: 0;
    border-radius: 25px;
    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.67);
    transition: opacity 0.3s;
}

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

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

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-25);
    min-height: 90px;
}

header {
    background-color: #000;
}

.header-inner-right {
    display: flex;
    align-items: center;
    gap: var(--space-50);
}

#main-menu ul li a {
    color: var(--color-secondary);
    text-align: center;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.20);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

#main-menu ul li a::before {
    content: '';
    position: absolute;
    bottom: -6px;
    background: #fff;
    left: 0;
    opacity: 1;
    transition: all 0.3s;
    width: 0;
    height: 1px;
}


.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s;
}


@media screen and (min-width: 1140px) {
    #main-menu ul li a:hover::before {
        width: 100%;
    }

    #main-menu ul li a:hover {
        cursor: pointer;
    }

    .social-icon:hover {
        cursor: pointer;
        background: rgba(255, 255, 255, 0.1);

    }

    .mainpage .social-icon:hover {
        border-color: rgba(255, 255, 255, 0.1);
    }
}

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

.section-border-delete-after {
    border: 1px solid crimson;
    margin: var(--space-60) 0;
}

.section-title {
    font-size: var(--font-48);
    font-style: normal;
    font-weight: 700;
    line-height: 1.25em; /* 125% */
}

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

.about-tile-title {
    font-size: var(--font-36);
    font-style: normal;
    font-weight: 700;
    line-height: 1.6667em; /* 166.667% */
    margin-bottom: 5px;
}

.about-tile-subtitle {
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 300;
    line-height: 1.5em; /* 150% */
    margin-bottom: calc(var(--space-25) + 5px);
}

.about-title-text {
    margin-top: calc(var(--space-25) + 5px);
}

.about-tile-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(50%);
    padding: calc(var(--space-60) + 10px);
}

.about-tile {
    display: flex;
    gap: 20px;
}

.about-tile-img {
    width: 50%;
    aspect-ratio: 672/672;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.about-wrapper {
    display: flex;
    flex-direction: column;
}

.about-tile:nth-child(even) {
    flex-direction: row-reverse;
}

.about-tile-img-inner {
    border-radius: 25px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.about-under-text {
    margin: calc(var(--space-50) * 2) 0
}

.text h2 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: calc(var(--space-25) - 5px);
}

.text h3 {
    font-size: calc(var(--font-20));
    margin-bottom: calc(var(--space-25) - 5px);
}

.text h4 {
    font-size: 16px;
    margin-bottom: calc(var(--space-25) - 5px);
}

.text h5 {
    font-size: 14px;
    margin-bottom: calc(var(--space-25) - 5px);
}

.text h6 {
    font-size: 12px;
    margin-bottom: calc(var(--space-25) - 5px);
}

.text a, .form-element-option-text a {
    font-style: italic;
    font-weight: 300;
    transition: all 0.3s;
    text-decoration: underline transparent;
}

@media screen and (min-width: 1140px) {
    .text a:hover, .form-element-option-text a:hover {
        text-decoration-color: #000;
    }
}

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

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

.footer-inner {
    position: relative;
    padding-top: calc(var(--space-50) * 2);
}

.background-mask {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

footer .background-mask {
    z-index: unset;
}

.background-mask.big {
    background: rgba(0, 0, 0, 0.7);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: var(--space-25);
}

.footer-title {
    color: #EFEEEB;
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 700;
    line-height: 1.5em; /* 150% */
    margin-bottom: calc(var(--space-25) + 5px);
}

.footer-col-wrapper {
    max-width: 950px;
    width: 100%;
    display: grid;
    gap: 15px;
    grid-template-columns: 27.37% 42% 27.37%;
}

.footer-content a {
    color: #EFEEEB;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.1429em; /* 214.286% */
    text-decoration: underline transparent;
    transition: all 0.3s;
}

@media screen and (min-width: 1140px) {
    .footer-content a:hover {
        text-decoration-color: inherit;
    }
}

.copyright-undicom, .copyright-undicom a {
    display: flex;
    align-items: center;
    color: #EFEEEB;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 185.714% */
}

.copyright-undicom a {
    gap: 4px;
}

.copyright-undicom img {
    filter: brightness(0) invert(1);
    max-width: 10px;
    max-height: 11px;
}

.main-contact-section {
    background: #000;
    color: #EFEEEB;
    padding: calc(var(--space-40) * 2) 0 calc(var(--space-50) * 2);

    position: relative;
}

.main-contact-inner {
    display: flex;
    justify-content: space-between;
    gap: min(calc(var(--space-60) * 2 + 10px), 12%);
}


.main-contact-right {
    width: 100%;
    max-width: 1083px;
    position: relative;
}

.main-contact-right .contact-form-wrapper form {
    position: relative;
    padding-left: min(calc(var(--space-60) * 2 + 10px), 12%);
}

.main-contact-right form::after {
    position: absolute;
    top: 0;
    content: '';
    left: 0;
    height: 100%;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.none-hover {
    pointer-events: none;
}

.main-contact-tile {
    display: flex;
    border-radius: 10px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 60px;
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 700;
    line-height: 1.75em; /* 175% */
    padding: 0 calc(var(--space-50) + 5px) 0 calc(var(--space-25) - 5px);
    background: rgba(255, 255, 255, 0.2);
    color: #EFEEEB;
    transition: all 0.3s;
    text-decoration: underline transparent;
}

.main-contact-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-25);
    width: 100%;
    max-width: 420px;
}

.main-contact-tile.address {
    margin-bottom: calc(var(--space-40) + 5px);
}

.icon-text {
    color: #EFEEEB;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.75em; /* 175% */
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.form .form-element-name {
    color: #EFEEEB;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    margin-bottom: 13px;
    line-height: normal;
}

.form-group {
    margin-bottom: var(--space-25);
}

.form .form-group-lg .captcha-image-wrapper {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #EFEEEB;
}

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

.form-element-option-text {
    color: #EFEEEB;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
}

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

.contact-form-btn {
    margin-top: calc(var(--space-50) + 5px);
}

.section-subtitle {
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 300;
    line-height: 1.75em; /* 175% */
}

.contact-form-title-wrapper {
    max-width: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: calc(var(--space-60) + 5px);
    gap: var(--space-25);
}


.main-contact-decor {
    position: absolute;
    bottom: -75px;
    left: 0;
}


.main-slide {
    min-height: 950px;

    padding: calc(var(--space-40) * 2) 0 calc(var(--space-60) * 2 + 10px);
}

.main-slide-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #EFEEEB;
    justify-content: center;
    height: 100%;
}

.main-slide-logo {
    margin-bottom: calc(var(--space-60) * 2);
}

.main-slide-inner .section-title {
    margin-bottom: var(--space-25);
    text-align: center;
}

.main-slide-text .text {
    text-align: center;
    font-size: var(--font-20);
    font-style: normal;
    max-width: 1120px;
    font-weight: 300;
    line-height: 2em; /* 200% */
    margin-bottom: calc(var(--space-50) * 2);
}


.main-slider-wrapper {
    display: flex;
    position: relative;
}

.main-slide-bottom-panel {
    width: 100%;
    position: absolute;
    bottom: calc(var(--space-60) + 10px);
    left: 0;
    right: 0;
    z-index: 2;
}

.main-slide-bottom-panel-inner {
    display: grid;
    grid-template-columns: 1fr 86px 1fr;
    width: 100%;
}

.main-slide-bottom-panel-inner::before {
    content: '';
}

.main-slide-bottom-panel-right {
    display: flex;
    align-items: center;
    justify-content: end;
}

.main-slide-bottom-panel-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-slide {
    height: unset;
}


.height-100 {
    height: 100%;
}

a.main-slide-href {
    color: #EFEEEB;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.3s;
    text-decoration: underline transparent;
}

@media screen and (min-width: 1140px) {
    a.main-slide-href:hover {
        text-decoration: underline;
        text-decoration-color: #EFEEEB;
    }
}

.square-item {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    border: 1px solid #EFEEEB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EFEEEB;
    transition: all 0.3s;
}

.square-item.black {
    border-color: #000;
    color: #000;
}

@media screen and (min-width: 1140px) {
    .square-item:hover {
        border-color: #EFEEEB;
        color: #000;
        background: #EFEEEB;
        cursor: pointer;
    }

    .square-item.black:hover {
        border-color: #000;
        color: #EFEEEB;
        background: #000;
        cursor: pointer;
    }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    width: unset;
    display: flex;
    align-items: center;
    gap: 10px;
}

.swiper-pagination-bullet {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    color: #EFEEEB;
    text-align: center;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.20);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 1;
    width: 46px;
    height: 46px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    border-color: #fff;
}

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

.mainpage header:not(.sticky) {
    background: transparent;
}

@media screen and (min-width: 1140px) {
    .mainpage .rwdPanel {
        display: unset;
    }

    .mainpage .main-menu-button.mobile-only {
        display: none !important;
    }

    .mainpage .rwdPanel-action-open,
    .mainpage .rwdPanel-action-toggle {
        display: unset !important;
    }
}

.mainpage header .login-form {
    display: none;
}

.mainpage .rwdPanel {
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    transition-duration: 0.5s;
    transition-timing-function: ease;
    transition-property: transform, -webkit-transform, -ms-transform;
    /* Closed: */
    pointer-events: none;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
}

.mainpage header.stickable .rwdPanel {
    z-index: -1;
}

.mainpage .rwdPanel.active {
    pointer-events: all;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
}

.mainpage .rwdPanel-scrollLock body {
    position: fixed;
    width: 100%;
    overflow-y: scroll;
}

.mainpage .header-inner #main-menu {
    display: none;
}

.bounce {
    animation: bounce 1.5s infinite;
}

@media screen and (min-width: 1140px) {
    .bounce:hover {
        animation-play-state: paused;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-12px);
    }
    60% {
        transform: translateY(-6px);
    }
}

@media screen and (min-width: 1140px) {
    .mainpage .rwdPanel {
        top: 0 !important;
        background: #000;
        padding-top: 70px;
        color: #EFEEEB;
        transform: translateX(-100%);
        width: 700px;
        transition: all 0.3s;
        padding-right: 20px;
        padding-left: max(calc(((100vw - 1720px + 2 * var(--container-padding)) / 2)), calc(var(--container-padding)));
    }

    .mainpage header:not(.sticky) .rwdPanel {
        padding-top: 83px;
    }

    .mainpage .rwdMenu li > *:first-child {
        color: #EFEEEB;
        padding: 0;
        display: inline-flex;
        position: relative;
    }

    .mainpage .rwdMenu li {
        display: block;
    }

    .mainpage .rwdMenu li.active > *:first-child {
        color: #EFEEEB;
        font-weight: normal;
    }

    .mainpage .rwdMenu li > *:first-child:before {
        content: '';
        position: absolute;
        bottom: 4px;
        background: #fff;
        left: 0;
        opacity: 1;
        width: 0;
        transition: all 0.3s;
        height: 1px;
    }

    .mainpage .rwdMenu li > *:first-child:hover:before {
        width: 100%;
    }

    .mainpage .rwdMenu li.active > *:first-child:before {
        width: 100%;
    }

    .mainpage .rwdPanel.active .logo-menu {
        width: 455px;
    }

    .mainpage .lang-rwd-button {
        display: none !important;
    }
}

@media screen and (min-width: 1921px) {
    .mainpage .rwdPanel {
        max-width: unset;
        width: 36.45833vw;
        right: -36.45833vw;
    }
}

#main-menu li.active a:before {
    width: 100%;
}

.logo-menu {
    display: flex;
    width: 0;
    overflow: hidden;
    height: 122px;
    transition: all 1.1s;
    justify-content: center;
    margin-top: var(--space-50);
}

.mainpage .social-icon {
    border-color: transparent;
}

.mainpage .header-inner {
    min-height: 70px;
    transition: all 0.3s;
}

.mainpage header:not(.sticky) .header-inner {
    padding-top: 27px;
}

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

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

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

.section-heading .text {
    text-align: center;
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 300;
    line-height: 2em; /* 200% */
}

.logotypes-list {
    display: flex;
    margin: -10px;
    flex-wrap: wrap;
}

.logotype-inner {
    border-radius: 25px;
    border: 1px solid transparent;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    text-align: center;
    font-size: calc(var(--font-30));
    font-style: normal;
    font-weight: 700;
    line-height: 1.3333em; /* 133.333% */
    padding: 0 31px;
}

.logotype {
    width: 20%;
    aspect-ratio: 1/1;
    padding: 10px;
}

.logotype-inner img {
    opacity: 0.3;
    transition: all 0.3s;
}


@media screen and (min-width: 1140px) {
    .logotype-inner:hover {
        border-color: #000;
        background: transparent;
    }

    .logotype-inner:hover img {
        opacity: 1;
    }
}

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


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

.slider-decoration {
    position: absolute;
    bottom: -12%;
    left: 16%;
    z-index: 33;
}

.heading-with-arrows {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
}

.heading-with-arrows::before {
    content: '';
}

.heading-with-arrows .section-heading {
    padding: 0 var(--space-60);
}

.heading-arrows {
    display: flex;
    align-items: center;
    gap: 11px;
    justify-content: end;
}

.logotypes .heading-arrows {
    align-items: start;
}


.main-steps-section {
    position: relative;
    color: #EFEEEB;
    padding-top: calc(var(--space-40) * 2);
    padding-bottom: calc(var(--space-50) * 2);
}

.main-steps-section .background-mask {
    background: rgba(0, 0, 0, 0.8);
}

.main-steps-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.main-steps-item {
    width: 20%;
    padding: calc(var(--space-50) / 2);
}

.main-steps-wrapper {
    width: calc(100% + calc(var(--space-50)));
    margin: calc(var(--space-50) / -2);
    overflow: hidden;
}

.main-steps-item-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-nr {
    flex-grow: 1;
    display: flex;
    align-items: end;
    justify-content: center;
    position: relative;
}


.step-nr-item {
    width: 60px;
    height: 60px;
    background: #323232;
    color: #EFEEEB;
    text-align: center;
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 700;
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    line-height: 1.5em; /* 150% */
    position: relative;
}

.step-nr::after {
    position: absolute;
    content: '';
    background: rgba(255, 255, 255, 0.2);
    width: calc(100% + calc(var(--space-50)));
    height: 1px;
    left: 0;
    bottom: 30px;
    z-index: -1;
    transform: translateY(50%);
}


.main-steps-icon {
    aspect-ratio: 1/1;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-40);
}

.logotypes-slider {
    margin: -10px;
    width: calc(100% + 20px);
}

.main-steps-item-name {
    text-align: center;
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 700;
    line-height: 1.5em; /* 150% */
    margin-bottom: 13px;
}

.main-steps-item-text {
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 214.286% */
    margin-bottom: calc(var(--space-40) + 4px);
}

.main-about-right {
    position: relative;
    width: calc(50% - 10px);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
}

.main-about-right .background img {
    border-radius: 25px;
}

.about-decoration {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 3;
    display: none;
    transform: translate(50%, -50%);
}

@media screen and (min-width: 1880px) {
    .about-decoration {
        display: unset;
    }
}

.main-about-section {
    padding: calc(var(--space-50) * 2) 0;
}

.main-about-wrapper {
    display: flex;
    gap: 20px;
}

.main-about-left {
    width: calc(50% - 10px);
    display: flex;
    align-items: start;
    flex-direction: column;
    background: #fff;
    border-radius: 25px;
    justify-content: center;
    padding: calc(var(--space-50) + var(--space-40));
}

.main-about-title {
    font-size: var(--font-48);
    font-style: normal;
    font-weight: 700;
    line-height: 1.25em; /* 125% */
    margin-bottom: 5px;

}

.main-about-subtitle {
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 300;
    line-height: 1.5em; /* 150% */
    margin-bottom: calc(var(--space-25) + 5px);
}

.main-about-teaser {
    margin-top: calc(var(--space-25) + 5px);
    margin-bottom: 10px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 214.286% */
}

a.main-about-href {
    color: #000;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.3s;
    text-decoration: underline transparent;
    display: flex;
    align-items: center;
    gap: calc(var(--space-25) + 5px);
    margin-left: auto;
}

@media screen and (min-width: 1140px) {
    a.main-about-href:hover {
        text-decoration: underline;
        text-decoration-color: #000;
    }

    .footer-title i {
        display: none;
    }

    a.main-about-href:hover .square-item {
        background: #000;
        color: #EFEEEB;
    }
}

.square-item * {
    text-decoration: none !important;
}

.news-list {
    margin: -8px;
    display: flex;
    flex-wrap: wrap;
}

.news-item-inner .text {
    flex-grow: 1;
}

.news-item-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
}

.news-item-inner img {
    width: 100%;
    transition: transform 300ms;
    object-fit: cover;
    display: block;
}

.news-thumbnail:after {
    content: "";
    position: absolute;
    inset: 0;
    display: block;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}

.news-thumbnail {
    margin-bottom: var(--space-60);
    border-radius: 25px;
    display: block;
    overflow: hidden;
    position: relative;
}

.news-item .btn {
    margin-top: var(--space-40);

}

.news-item {
    padding: 8px;
    width: 25%;
}

.news-item-info span {
    display: flex;
    align-items: flex-end;
    line-height: 1.5;
    font-size: 20px;
    font-weight: 700;
    min-height: calc(2em * 1.5);
}

.news-item-info time {
    font-size: 14px;
    letter-spacing: 0.2em;
    margin-bottom: 5px;
    display: block;
}

.news-item-info {
    color: #fff;
    z-index: 2;
    position: absolute;
    bottom: var(--space-40);
    left: var(--space-40);
    right: var(--space-40);
}

@media screen and (min-width: 1140px) {

    .news-thumbnail:hover img {
        transform: scale(1.05);
    }
}

.news-list-wrapper {
    margin-bottom: calc(var(--space-60) + 10px);
}

.bottom-text {
    background: rgba(0, 0, 0, 0.02);
    padding: calc(var(--space-60) + 10px) 0;
}

.page-title {
    font-size: var(--font-48);
    font-weight: 700;
    text-align: center;
}

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

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

.offer-bottom-text {
    position: relative;
}

.offer-bottom-text .img-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    max-width: 20%;
    justify-content: flex-end;
    align-items: center;
    top: calc(var(--space-50) * -2);
}

.offer-bottom-text .text {
    overflow: hidden;
    padding-right: 20%;
}

.offer-item .btn {
    margin-top: var(--space-40);
    gap: var(--space-25);
    min-width: 232px;
    justify-content: space-between;
}

.offer-item .btn-wrapper {
    margin-top: auto;
}

@media screen and (min-width: 1140px) {

    .offer-item-inner:hover .btn {
        background-color: #000;
        color: #fff;
    }
}

.offer-item-inner .text ul {
    overflow: hidden;
}

.offer-item-inner .text {
    overflow: hidden;
}

.offer-item-inner a {
    pointer-events: auto;
}

.offer-item-inner {
    pointer-events: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.offer-item {
    width: 33.3333%;
    padding: calc(var(--space-25) + 5px);
}

.offer-thumbnail:after {
    content: "";
    inset: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.4);
}

.offer-thumbnail {
    position: relative;
    margin-bottom: var(--space-50);
    overflow: hidden;
    display: block;
    border-radius: 25px;
}

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

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

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

.offer-title {
    margin-bottom: var(--space-25);
    text-transform: uppercase;
    display: block;
    font-size: var(--font-32);
    font-weight: 700;
}

.category-box {
    width: 33.3333%;
    padding: calc(var(--space-25) + 5px);
}

.category-box-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    height: 3px;
    transition: width 300ms;
    background: #000;
}

@media screen and (min-width: 1140px) {

    .category-box-inner:hover {
        background-color: #cdcdcd;
        border: 1px solid rgba(0, 0, 0, 0.1);

    }

    .category-box-inner:hover .category-box-title:after {
        width: 150%;
    }
}

.category-box-inner {
    width: 100%;
    border-radius: 25px;
    height: 100%;
    position: relative;
    border: 1px solid transparent;
    transition: background-color 300ms, border 300ms;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-50) var(--space-25) var(--space-60);
    align-items: center;
    text-align: center;
}

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

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

.contact-form-section {
    background: #000;
    padding: calc(var(--space-60) + var(--space-25)) 0 calc(var(--space-50) * 2);
}

.contact-form-container {
    width: 100%;
}

.contact-form-title-wrapper {
    max-width: unset;
    width: 100%;
}

.contact-form-wrapper form {
    flex-grow: 1;
    padding-left: calc(var(--space-60) + var(--space-40));
}

.contact-form-wrapper .img-wrapper {
    flex-shrink: 0;
    margin-left: calc(var(--container-padding) * -1);
    width: 38%;
    padding-right: calc(var(--space-60) + var(--space-25));
}

.contact-form-wrapper {
    display: flex;
    color: #fff;
    width: 100%;
    align-items: center;
}

.category-box-title {
    padding-bottom: calc(var(--space-25) + 5px);
    display: inline-flex;
    align-items: center;
    flex-grow: 1;
    position: relative;
    font-size: var(--font-24);
    text-transform: uppercase;
    max-width: 200px;
    line-height: 1.25;
    font-weight: 300;
}

.category-box-thumb {
    width: 80px;
    height: 80px;
    display: block;
    margin-bottom: var(--space-25);
}

.team-row {
    padding: calc(var(--space-60) + var(--space-25)) 0;
}

.team-header {
    display: flex;
    margin-bottom: var(--space-40);
    width: 100%;
    justify-content: center;
}

.team-title {
    font-size: var(--font-48);
    text-align: center;
    font-weight: 700;
}

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

.person-box {
    width: 25%;
    padding: 15px;
    z-index: 1;
    transition: margin 300ms, z-index 0s 0.3s;
    transition-delay: 0ms, 300ms;
    pointer-events: none;
}

.person-box-inner {
    background: #fff;
    flex-direction: column;
    pointer-events: auto;
    transition: margin 300ms, background-color 300ms, border 300ms;
    align-items: flex-start;
    display: flex;
    height: 100%;
    border: 1px solid transparent;
    position: relative;
    padding: var(--space-50) calc(var(--space-40) - 5px);
    border-radius: 25px;
}

.person-name {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 300;
    text-transform: uppercase;
}

.person-position {
    line-height: 1.43;
    font-size: 14px;
    min-height: calc(2em * 1.43);
}

.person-contact li + li {
    margin-top: 20px;
}

.person-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.team-row:nth-child(odd) {
    background: rgba(0, 0, 0, 0.02);
}

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

.person-contact a {
    position: relative;

    z-index: 2;
}

.person-contact {
    margin-top: 15px;
}

.person-contact .icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.person-contact .icon-wrapper .icon {
    width: 13px;
    height: 13px;
    display: block;
    color: #fff;
}

.person-box-inner .btn-row {
    margin-top: auto;
    display: flex;
    align-items: flex-start;
}

@media screen and (min-width: 1140px) {
    .person-box-inner.has-link:hover .btn {
        height: 46px;
        margin-top: var(--space-40);
        border: 1px solid #000;
    }

    .person-box:has(.has-link):hover {
        z-index: 10;
        transition: margin 300ms, z-index 0s;
        margin-bottom: calc(var(--space-40) * -1 - 46px);
    }

    .person-box-inner.has-link:hover {
        background-color: #CDCDCD;
        border-color: rgba(0, 0, 0, 0.1);
    }
}

.person-box-inner .btn:before {
    content: "";
    position: absolute;
    inset: 0;
}

.person-box-inner .btn {
    transition: all 300ms;
    overflow: hidden;
    gap: var(--space-25);
    align-items: center;
    padding: 0 20px;
    border: transparent;
    height: 0;
}

.iframe-wrapper iframe {
    display: block;
    height: unset;
    width: 100%;
    min-height: 400px;
    aspect-ratio: 1920/570;
}

.article-image {
    margin-left: calc(var(--space-60) * 2);
    margin-bottom: var(--space-25);
    float: right;
}

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

.b2b-box-content {
    position: absolute;
    display: flex;
    align-content: flex-end;
    align-items: flex-start;
    color: #fff;
    z-index: 2;
    padding: var(--space-50);
    inset: 0;
    top: unset;
}

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

.b2b-thumbnail:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.b2b-thumbnail {
    height: 100%;
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 25px;
}

.b2b-box {
    width: 50%;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    padding: 8px;
}

.b2b-boxes {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}

.b2b-title {
    margin-bottom: 15px;
    font-size: var(--font-36);
    font-weight: 700;
    color: #fff;
}

.b2b-left .text {
    font-weight: 300;
    font-size: 20px;
    line-height: 1.5;
}

.b2b-right .btn {
    margin-top: 20px;
    gap: calc(var(--space-25) + 5px);
    min-height: 46px;
}

.b2b-right {
    padding-left: var(--space-40);
    flex-shrink: 0;
}

.b2b-boxes-wrapper {
    margin-bottom: calc(var(--space-50) * 2);
}

.bottom-text-quote .text p {
    display: inline;
    text-align: center;
}

.bottom-text-quote .text {
    text-align: center;
    line-height: 1.5;

    font-style: italic;
    font-weight: 300;
    font-size: max(20px, var(--font-24));
}

.bottom-text-quote .text:after,
.bottom-text-quote .text:before {
    content: '"';
    display: inline;
}

.bottom-text-quote .img-wrapper {
    position: absolute;
    width: 21.5%;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    top: calc(var(--space-50) * -2);
}

.bottom-text-quote .img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.bottom-text-quote {
    padding: calc(var(--space-40) * 4) 20%;
    position: relative;
}

/* grid items */
.grid-row-left .img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.grid-row-left .img-wrapper {
    border-radius: 25px;
    padding: var(--space-60);
    aspect-ratio: 1;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.grid-main-title {
    font-size: var(--font-36);
    font-weight: 700;
}

.grid-row .grid-row-right {
    flex-grow: 1;
    max-width: 530px;
}

.grid-row .grid-row-left {
    width: 49.5%;
    flex-shrink: 0;
}

.about-top .grid-row-left {
    flex-grow: 1;
    max-width: 540px;
    margin-left: auto;
}

.about-top .grid-row-right {
    width: 49%;
    flex-shrink: 0;
}

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

.about-top .img-wrapper {
    overflow: hidden;
    display: block;
    aspect-ratio: 1;
    border-radius: 25px;
}

.grid-row {
    gap: calc(var(--space-50) + var(--space-40));
    align-items: center;
    display: flex;
}

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

.grid-title {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: var(--space-25);
}

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

.about-top {
    gap: calc(var(--space-50) + var(--space-40));
    display: flex;
    align-items: center;
}

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

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

@media screen and (min-width: 1140px){
    .main-contact-tile:hover{
        text-decoration-color: #EFEEEB;
        background: rgba(255,255,255,0.1);
        text-decoration: underline;
    }
}


.form .alert-block .error{
    color: red !important;
}
.has-error .form-control-feedback{
    color: red;
}


.news-view .article-image{
    margin-left: var(--space-50);
}

.news-view .gallery{
    margin: var(--space-50) 0;
    margin-top: var(--space-40);
}