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

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

    --container-padding: 40px;

    /** SPECIFIC **/
    --color-primary: #b49733;
    --color-secondary: #07224a;
    --color-gallery-hover: rgba(7, 34, 74, 0.8);
    --color-default: #333;
}

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

/**
 * BASIC
 */

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

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

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

a:hover, a:focus {
    color: var(--color-primary);
}

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

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

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

/**
 * PAGE
 */

#page,
#content {
    overflow: hidden;
}

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

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

.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 {
    -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.2;
    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: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

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

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






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

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

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

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

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

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

@media screen and (min-width: 1140px) {
    .btn-primary:not([disabled]):hover,
    .btn-primary:not([disabled]).active:hover {
        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);
    }

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

/**
 * BUTTONS
 */

.btn {
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.7px;
}

/**
 * BOOTSTRAP
 */
.panel,
.panel-heading,
.modal-content,
.alert,
.popover {
    border-radius: 0;
}

.panel {
    box-shadow: none;
}

.panel-default {
    border-color: #e5e5e5;
}

/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: 16px;
    line-height: 30px;
}

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

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

.text ul > li::before {
    content: "\2023";
    position: relative;
    display: inline-block;
    width: 10px;
    left: -10px;
    margin-left: -10px;
    line-height: 1em;
    font-family: sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: var(--color-primary);
}

.text ol > li::marker {
    word-spacing: 3px;
}

/** Text table **/
.text table {
    margin: 30px 0;
}

.text table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.05);
}

.text table td {
    padding: 12px 12px;
    border: 1px solid #ddd;
}

/**
 * HEADER
 */

header {
    /*position: fixed;*/
    z-index: 1000;
    /*top: 0;*/
    /*left: 0;*/
    /*right: 0;*/
}

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

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

.logo {
    display: block;
    width: 375px;
}

.logo a {
    display: block;
}

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

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

#main-menu li {
    position: relative;
    display: inline-block;
    flex-grow: 1;
    max-width: 300px;
}

#main-menu li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 10px;
    background-color: #fff;
}

#main-menu li:last-of-type:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 10px;
    background-color: #fff;
}

#main-menu li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    padding: 20px 0;
    width: 100%;
}

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

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

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

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

.main-menu-button.animIcon--hamburger.active span {
    background-color: #fff;
}

.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,
.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;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.7px;
    color: #fff;
    background-color: var(--color-secondary);
}

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

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

.select2-container .select2-selection--single {
    padding: 0;
}
.contact-form-container .form button.captcha-refresh{
    right: 8px;
}
.form button.captcha-refresh {
    right: 16px;
    color: var(--color-primary);
    border-radius: 0 4px 4px 0;
    background-color: transparent;
    border-color: rgba(3, 3, 3, 0.1);
    border-top: none;
    border-right: none;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.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: var(--color-primary);
        border-top: none;
        border-right: none;
        border-bottom: none;
        color: #fff;
        background-color: var(--color-primary);
    }
    .form button.captcha-refresh:hover .fa.fa-spin {
        -webkit-animation-play-state: running;
        -moz-animation-play-state: running;
        -o-animation-play-state: running;
        animation-play-state: running
    }
}

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

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

/**
 * 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: #333;
    transition: color 0.4s;
}

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

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

/**
 * ANIMATABLE ICON
 */

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

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

.animIcon span {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    height: 2px;
    width: 100%;
    background-color: #fff;
    transition: all .4s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 53px;
    height: 53px;
    border: 1px solid var(--color-primary);
    background-color: var(--color-primary);
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.social-icon svg {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
}

.social-icon * {
    fill: #fff;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.social-icon img {
    display: block;
}

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

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

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

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

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

.langs-menu a {
    color: inherit;
    text-decoration: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.langs-menu-icon {
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
    margin-right: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lang {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 5px 12px;
    font-size: 0;
    transition-duration: 0.3s;
    transition-property: background-color, color;
}

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

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

.lang-button {
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.lang-button .arrow {
    display: inline-block;
    vertical-align: middle;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    font-size: 18px;
    line-height: 12px;
    transition-duration: 0.3s;
    transition-property: transform, -webkit-transform, -ms-transform;
}

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

@media screen and (min-width: 1140px) {
    a.lang:hover,
    a.lang:focus {
        color: #fff;
        background-color: #f0f;
    }

    .langs-menu:not(.langs-menu--list):not(:hover):not(:focus):not(:focus-within) ul {
        pointer-events: none;
        opacity: 0;
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
    }

    .langs-menu:focus-within .lang-button .arrow,
    .langs-menu:hover .lang-button .arrow,
    .langs-menu:focus .lang-button .arrow {
        transform: rotateZ(180deg);
        -webkit-transform: rotateZ(180deg);
        -ms-transform: rotateZ(180deg);
    }
}

.flag-icon {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.langs-menu--list .lang-button,
.langs-menu--list .langs-menu-short {
    display: none;
}

.langs-menu.langs-menu--list ul {
    position: static;
    opacity: 1;
    display: flex;
    align-items: center;
    border: none;
    background: none;
}

.langs-menu.langs-menu--list li {
    margin: 4px 10px;
    border: none;
}

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

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

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

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

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

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

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

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

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

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

/**
 * 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-list {
    margin: -11px;
    font-size: 0;
    padding-top: var(--space-60);
}

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

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

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

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 20px;
    color: #fff;
    background-color: var(--color-gallery-hover);
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.header-logotype {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    max-width: 325px;
    position: relative;
    transition: opacity .2s linear;
}
@media screen and (min-width: 1140px) {
    .header-logotype:hover{
        opacity: 0.7;
    }
}

.header-logotype:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    height: 49px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-logotype:last-of-type:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    height: 49px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

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

.pos-rel {
    position: relative;
}

.header-bg-wrapper {
    position: relative;
}

.header-bg-wrapper:after {
    position: absolute;
    content: '';
    inset: 0;
    z-index: -1;
    background-color: var(--color-secondary);
    opacity: 0.9;
}

.header-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

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

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

.header-mid {
    padding-bottom: calc(var(--space-60) + 15px);
}

.header-bot {
    background-color: var(--color-primary);
}

.header-mid-inner .social-list {
    margin-right: calc(var(--space-60) + var(--space-25));
}

.footer-top-inner {
    display: flex;
    justify-content: space-between;
    margin: -15px calc(-1 * var(--space-25));
}

.footer-top {
    position: relative;
    padding-top: calc(var(--space-50) + 30px);
    padding-bottom: calc(var(--space-60) + 30px);
}

.footer-top:after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--color-secondary);
    opacity: 0.9;
    z-index: -1;
}
.footer-col-3{
    max-width: 555px;
}
.footer-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

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

.footer-col-title {
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 700;
}
.footer-col{
    padding: 15px var(--space-25);
}
.footer-col-title-wrapper {
    margin-bottom: 20px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
}

.footer-contact-list li + li {
    margin-top: 15px;
}

.footer-contact-list li .fa {
    color: var(--color-primary);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-contact-list li a, .footer-contact-list li p {
    display: block;
    line-height: 2.1428em;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.7px;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

@media screen and (min-width: 1140px) {
    .footer-contact-list li a:hover {
        color: var(--color-primary);
    }
}

.footer-newsletter-teaser {
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.7px;
    margin-bottom: var(--space-60);
}

.footer-col-logo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

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

.newsletter-email {
    display: flex;
    align-items: stretch;
}

.newsletter-email-input-wrapper {
    flex-grow: 1;
    margin-right: -5px;
}

.newsletter-email-input-wrapper .form-control {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
}

.newsletter-email-input-wrapper .form-control::placeholder {
    color: #fff !important;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.7px;
}

.newsletter-email > .btn {
    position: relative;
    z-index: 3;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.7px;
    padding-left: var(--space-40);
    padding-right: var(--space-40);
    height: 46px;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.newsletter-email > .btn:first-letter{
    text-transform: uppercase;
}

.aside-page-wrapper {
    position: relative;
}

.aside-page-inner {
    display: flex;
    align-items: stretch;
    padding-top: calc(var(--space-60) + 10px);
    padding-bottom: calc(var(--space-60) + 20px);
}

.aside-wrapper {
    width: 274px;
}

.aside-page-right {
    width: calc(100% - 274px);
    padding-left: calc(3 * var(--space-50) - 10px);
}

.aside-page-inner .page-title{
    padding-top: 0;
}
.page-title {
    font-size: calc(var(--font-48) + 12px);
    font-weight: 700;
    color: var(--color-primary);
    padding-top: calc(var(--space-60) + 10px);
    margin-bottom: var(--space-40);
}
.page-title.above-small-title{
    margin-bottom: 15px;
}

.text-page-wrapper .text::-webkit-scrollbar{
    display: none;
}

.text-page-wrapper .text-page-image {
    float: left;
    margin-right: calc(2 * var(--space-50));
}

.text {
    color: var(--color-secondary);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.8px;
}

.text strong {
    font-weight: 700;
}

.text h2 {
    font-size: 20px;
    font-weight: 700;
}

.text a {
    font-weight: 700;
}

.floating-image-1 {
    position: absolute;
    top: 440px;
    left: -250px;
    width: 362px;
    z-index: -1;
}

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

.floating-image-2 {
    position: absolute;
    width: 328px;
    right: -235px;
    top: 700px;
    z-index: -1;
}

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

.aside-wrapper > ul > li > a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    color: var(--color-secondary);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    transition: all .2s linear;
}

.aside-wrapper > ul > li > a:before {
    content: '\2023';
    color: var(--color-primary);
    padding: 0 15px;
    font-size: 22px;
    height: 6px;
    display: flex;
    align-items: center;
    transition: all .2s linear;
}

@media screen and (min-width: 1140px) {
    .aside-wrapper > ul > li > a:hover, .aside-wrapper > ul > li > a:focus {
        color: #fff;
        text-decoration: none;
        background-color: var(--color-primary);
    }

    .aside-wrapper > ul > li.active > a {
        color: #fff;
        text-decoration: none;
        background-color: var(--color-primary);
        text-decoration: none;
    }

    .aside-wrapper > ul > li.active > a:before {
        color: #fff;
        text-decoration: none;
    }

    .aside-wrapper > ul > li > a:hover:before, .aside-wrapper > ul > li > a:focus:before {
        color: #fff;
        text-decoration: none;
    }
}

.aside-wrapper > ul > li {
    border-bottom: 1px solid rgba(3, 3, 3, 0.1);
}

.aside-wrapper > ul > li:first-of-type {
    border-top: 1px solid rgba(3, 3, 3, 0.1);
}

div:not(.aside-page-inner) .page-title {
    text-align: center;
}

.galleries-list {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin: calc(-1 * var(--space-40)) calc(-1 * (var(--space-25) + 10px));
}

.galleries-list-item {
    width: 33.3333%;
    padding: var(--space-40) calc(var(--space-25) + 10px);
}

.gallery-folder-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.gallery-folder-image {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 15px;
}

.gallery-folder-image > img {
    display: block;
    width: 100%;
}

.aside-page-wrapper .gallery-folder-title {
    font-size: 16px;
}

.gallery-folder-title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: fit-content;
    padding: 5px 10px;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.aside-page-right > .container {
    position: unset;
    padding: 0 !important;
    margin: 0 !important;
    max-width: unset !important;
}

.gallery-folder-text {
    color: var(--color-secondary);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    padding: 0 10px;
}
.gallery-folder-content .btn{
    margin-top: 15px;
}
.btn.btn-circle {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    text-decoration: none;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

@media screen and (min-width: 1140px) {
    .btn.btn-circle:hover, .gallery-folder-link:hover .btn.btn-circle {
        background-color: var(--color-primary);
        color: #fff;
    }
}
.text-page-wrapper{
    padding-bottom: var(--space-60);
}
.aside-page-inner .text-page-wrapper{
    padding-bottom: 0;
}


.btn-white.btn-lg{
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 46px;
    padding-left: var(--space-40);
    padding-right: var(--space-40);
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.link-item-name{
    display: block;
    color: var(--color-secondary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}
.link-item-text{
    display: block;
    color: var(--color-secondary);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.7px;
}
.link-item-image{
    width: 100%;
    margin-bottom: var(--space-50);
    display: flex;
    align-items: center;
    justify-content: center;
}
.link-item-image img{
    display: block;
    max-width: 100%;
}
.link-item-wrapper .btn{
    margin-top: var(--space-40);
}
.page-wrapper{
    padding-bottom: var(--space-60);
}
@media screen and (min-width: 1140px) {
    .link-item-wrapper:hover .btn{
        background-color: var(--color-primary);
        color: #fff;
    }
}
.contact-content-wrapper{
    display: flex;
}
.contact-left{
    width: 380px;
}
.contact-right{
    width: calc(100% - 380px);
    padding-left: calc(3 * var(--space-50));
}
.contact-left-title{
    color: var(--color-secondary);
    font-size: var(--font-24);
    font-weight: 700;
    margin-bottom: calc(2 * var(--space-60));
}
.contact-info-list > li{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact-info-list > li.location-icon > svg{
    width: 26px;
    margin-left: 5px;
}
.contact-info-list > li > svg{
    width: 31px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    color: var(--color-primary);
    margin-right: var(--space-25);
}
.contact-info-list > li > *:not(svg){
    width: calc(100% - 31px - var(--space-25));
    color: var(--color-secondary);
    font-size: 18px;
    font-weight: 400;
}
.contact-info-list > li + li{
    margin-top: var(--space-40);
}

.contact-form-container h2{
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--space-40);
}
.contact-form-container .form .form-element-name{
    color: var(--color-secondary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.14px;
}
.map-wrapper{
    width: 100%;
}
.map-wrapper iframe{
    display: block;
    width: 100%;
    max-width: 100%;
}
.contact-right-image{
    width: calc(100% + var(--container-padding) + (50vw - 835px));
    margin-right: calc(-1 * var(--container-padding) + (50vw - 835px));
    margin-bottom: calc(var(--space-60) + 10px);
}
.center-btn{
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-form-container{
    margin-bottom: calc(var(--space-60) + 20px);
}
.contact-form-container .form-group{
    padding-left: 8px;
    padding-right: 8px;
}

.contact-form-container .row{
    margin-left: -8px;
    margin-right: -8px;
}
.form-group-lg .form-control{
    border-radius: 4px;
    border: 1px solid rgba(3, 3, 3, 0.1);
    color: var(--color-secondary);
}
.contact-form-container .captcha-container .col-sm-6{
    padding-left: 8px;
    padding-right: 8px;
}
.contact-form-container .consent-row .row .col-xs-12{
    padding-left: 0;
    padding-right: 0;
}
.contact-floating-image{
    width: 328px;
    position: absolute;
    top: -90px;
    right: -80px;
    z-index: 2;
}
.contact-floating-image img{
    display: block;
    max-width: 100%;
}

.contact-left-image{
    margin-top: calc(3 * var(--space-50));
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-left-image img{
    display: block;
    max-width: 100%;
}
.main-about{
    padding-top: var(--space-50);
    padding-bottom: calc(2 * var(--space-50));
}
.section-title{
    font-size: calc(var(--font-48) + 12px);
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: calc(2 * var(--space-50));
}
.main-about-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-about-subtitle{
    max-width: calc(320px + 2 * var(--space-60));
    padding-left: calc(2 * var(--space-60));
    color: #ffffff;
    font-size: calc(var(--font-24) + 6px);
    font-weight: 700;
    border-left: 1px solid var(--color-primary);
}
.main-about-teaser{
    max-width: 50%;
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.8px;
    line-height: 1.875em;
}
.main-about-teaser .btn{
    margin-top: var(--space-40);
}
.main-about-bg{
    position: absolute;
    inset: 0;
    z-index: -2;
}
.main-about-bg img{
    display: block;
    width: 100%;
    height: 100%;
}
.main-about:after{
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(7, 34, 74, 0.7);
    z-index: -1;
}
.main-about-floating1{
    position: absolute;
    top: -300px;
    left: -200px;
}
.main-about-floating1 img, .main-about-floating2 img{
    display: block;
    max-width: 100%;
}
.main-about-floating2{
    position: absolute;
    top: -150px;
    right: -200px;
}
.main-logotypes{
    width: 100%;
    display: flex;
    align-items: center;
    padding: var(--space-50) 0;
    margin: var(--space-25) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.logotypes-title{
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 700;
    margin-right: calc(2 * var(--space-60));
}

.logotype-item{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logotypes-list{
    width: calc(100% - 100px);
}
.logotypes-list .slick-list{
    width: 100%;
}
.logotypes-list .slick-track{
    display: flex!important;
    align-items: center;
}
.btn-back-wrapper{
    margin-top: calc(var(--space-60) + 20px);
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 1140px) {
    .social:hover .social-icon{
        background-color: var(--color-secondary);
        border-color: var(--color-secondary);
    }
}
.copyright-undicom a img{
    filter: invert(1);
}

.contact-info-list > li > svg, .contact-info-list > li > svg *{
    fill: var(--color-primary);
}
.gallery{
    clear: both;
}
.footer-contact-list > li > svg{
    width: 18px;
    margin-right: 16px;
    margin-top: 5px;
    fill: var(--color-primary);
}

.footer-contact-list > li > svg *{
    fill: var(--color-primary);
}
.aside-toggle-btn{
    display: none;
}

.footer-col-1 ul > li > a{
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.7px;
    line-height: 2.1428em;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
@media screen and (min-width: 1140px) {
    .footer-col-1 ul > li > a:hover{
        color: var(--color-primary);
    }
}

.footer-col-title-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-col-title-wrapper .icon{
    display: none;
}

.footer-col-1  ul{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 170px;
}

.footer-col-1  ul > li{
    flex-basis: auto;
    padding-right: var(--space-60);
}

.modal-header{
    background-color: var(--color-secondary);
}
.modal-title{
    color: var(--color-primary);
    font-weight: 700;
    font-size: var(--font-36);
}
.modal-header button.close{
    text-shadow: 0 1px 0 var(--color-primary);
    color: var(--color-primary);
    opacity: 1;
    transition: all .2s linear;
}

@media screen and (min-width: 1140px) {
    .modal-header button.close:hover{
        color: red;
        text-shadow: 0 1px 0 red;
    }
}
.btn-center{
    display: flex;
    justify-content: center;
}
.hide-after-success > .text{
    margin-bottom: 20px;
}
.footer-col-1{
    min-width: 400px;
    flex-shrink: 0;
}
.aside-shadow{
    display: none;
}

@media screen and (min-width: 1140px) {
    #main-menu li > a:hover, #main-menu li.active > a{
        text-decoration: underline;
    }
}

.text ul > li > p{
    display: inline;
}
.header-logotype img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    opacity: 0.5;
}
.events-list{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin: calc(-1 * var(--space-40));
}

.event-item-wrapper{
    width: 33.3333%;
    padding: var(--space-40);
}
.event-item{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.event-item:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    top: 51px;
    left: 0;
    z-index: -1;
}
.event-date-wrapper{
    width: 102px;
    height: 102px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: calc(var(--space-25) + 5px);
}
.event-date{
    color: white;
    font-weight: 300;
    font-size: 16px;
    text-align: center;
    line-height: 1em;
    margin-top: 5px;
}
.event-date span{
    display: block;
    margin-top: 5px;
}
.event-date strong{
    font-size: 18px;
    letter-spacing: 1.8px;
    font-weight: 700;
    text-align: center;
}
.event-item-name{
    color: var(--color-secondary);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.event-item-teaser{
    color: var(--color-secondary);
    font-size: 16px;
    text-align: center;
    font-weight: 400;
}
.event-item .btn{
    margin-top: var(--space-25);
}

@media screen and (min-width: 1140px) {
    .event-item:hover .btn{
        background-color: var(--color-primary);
        color: white;
    }
}
/*.old-event .event-item-name, .old-event .event-item-teaser{*/
/*    color: #d23b3b;*/
/*}*/
.event-item{
    padding-bottom: var(--space-50);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.section-heading{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--space-60);
    margin-bottom: var(--space-40);
}

.section-heading .section-title{
    margin-bottom: 0;
    margin-right: 20px;
}
.events-list.events-list-slider:not(.slick-initialized) .event-item-wrapper:nth-of-type(n + 4){
    display: none;
}

.events-list.events-list-slider .slick-track{
    display: flex;
    align-items: stretch;
}
.events-list.events-list-slider .event-item-wrapper{
    height: unset;
}
.events-list.events-list-slider{
    margin-bottom: calc(var(--space-60) + 10px);
}
.heading-right{
    display: flex;
    align-items: center;
}
.arrows{
    display: flex;
    align-items: center;
    margin-left: calc(var(--space-50) + var(--space-40));
}
.arrows .btn-arrow *{
    fill: var(--color-primary);
    transition: all .2s linear;
}

.arrows .btn-arrow{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    background-color: #fff;
    transition: all .2s linear;
}
.arrows .btn-arrow + .btn-arrow{
    margin-left: 7px;
}
.arrows .btn-arrow svg{
    width: 15px;
    height: 15px;
}

@media screen and (min-width: 1140px) {
    .arrows .btn-arrow:hover{
        background-color: var(--color-primary);
    }
    .arrows .btn-arrow:hover *{
        fill: #fff;
    }
}

.news-galleries-list{
    margin-bottom: var(--space-60);
}

.link-item-date{
    color: var(--color-secondary);
    font-size: 14px;
    font-weight: 400;
}
.events-list.margin-btm{
    margin-bottom: var(--space-50);
}
.news-galleries-list:not(.slick-initialized) .galleries-list-item:nth-of-type(n + 4) {
    display: none;
}
.galleries-list .slick-list{
    width: 100%;
}
.pagination-wrapper ul li.next, .pagination-wrapper ul li.prev{
    float: none;
}
.pagination-wrapper ul li a, .pagination-wrapper ul li > span{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: var(--color-primary);
    transition: all .2s linear;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.7px;
    background-color: white;
}

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

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

.pagination-wrapper{
    padding: 0;
    margin: calc(var(--space-50) + var(--space-25)) auto;
}
.thumbnail{
    border: none;
    margin: var(--space-25) 0;
    position: relative;
    z-index: 3;
    background-color: transparent;
}
.small-page-title{
    font-size: var(--font-24);
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: var(--space-25);
}
.news-view-date{
    margin-bottom: var(--space-25);
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 500;
}

.main-about:before{
    content: url("../images/about_floating_hals.webp");
    display: block;
    width: fit-content;
    height: fit-content;
    position: absolute;
    bottom: -65px;
    left: 32%;
}

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

.slick-list{
    width: 100%!important;
}