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


    --font-64: 64px;
    --font-48: 48px;
    --font-40: 40px;
    --font-36: 36px;
    --font-30: 30px;
    --font-26: 26px;
    --font-24: 24px;
    --font-22: 22px;
    --font-20: 20px;
    --font-18: 18px;

    --container-padding: 40px;

    --row-gap: 15px;

    /** SPECIFIC **/
    --color-primary: #EB4B31;
    --color-secondary: #00ff00;
    --color-default: #333;
}

body {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    background: #151515;
}

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

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

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

.grayscale {
    filter: grayscale(1);
}

.grayscale-fade {
    transition: filter 0.2s;
}

.grayscale-fade:hover,
.grayscale-fade:focus {
    filter: grayscale(0);
}

/**
 * PAGE
 */

#page,
#content {
    overflow: hidden;
}

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

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

.container--noClear {
    clear: none;
}

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

/**
 * ICONS
 */

/*.icon-mask.icon-mask {    -webkit-mask-size: cover;    -mask-size: cover;    -webkit-mask-position: center;    mask-position: center;    -webkit-mask-repeat: no-repeat;    mask-repeat: no-repeat;    background-color: currentColor;}*/
/*.icon-user {    -webkit-mask-image: url('../images/icons/user.svg');    mask-image: url('../images/icons/user.svg');}*/
/*.icon-register {    -webkit-mask-image: url('../images/icons/register.svg');    mask-image: url('../images/icons/register.svg');}*/
/*.icon-logout {    -webkit-mask-image: url('../images/icons/logout.svg');    mask-image: url('../images/icons/logout.svg');}*/


/**
 * BUTTONS
 */

.btn, a, button {
    border-radius: 0;
    transition: all 0.2s;
}

.btn-lg {
    border: 1px solid transparent;
    text-transform: uppercase;
    padding: 0 39px;
    height: 50px;
    line-height: 48px;
    border-radius: 0;
    box-shadow: 0 0 0 transparent !important;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
}

.btn-sm {
    border: 1px solid;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 30px;
    height: 40px;
    line-height: 36px;
}


.btn.has-icon {
    display: flex;
    align-items: center;
    padding-left: 2px;
    background: transparent;
    border: transparent;
}

.btn.has-icon .btn-icon {
    width: 44px;
    height: 44px;
    padding: 6px;
}

.has-arrow {
    padding-right: 58px;
}

.btn.has-arrow:after {
    width: 44px;
    height: 44px;
    display: block;
    content: "\f105";
    font: normal normal normal 20px/1 FontAwesome;
    transition: all 300ms ease-out;
    line-height: 44px;
    flex-shrink: 0;
    position: absolute;
    right: 0;
    font-size: 18px;
    top: 0;
}


/**
 * THEMES
 */

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

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

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

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

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

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

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


.btn.btn-primary .btn-icon svg,
.btn.btn-primary .btn-icon svg * {
    fill: #fff;
}

.btn.btn-secondary .btn-icon svg,
.btn.btn-secondary .btn-icon svg * {
    fill: var(--color-primary);
}

.btn.btn-white .btn-icon svg,
.btn.btn-white .btn-icon svg * {
    fill: #fff;
}


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

    .btn-primary:hover .btn-icon svg,
    .btn-primary:hover .btn-icon svg * {
        fill: var(--color-primary);
    }

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

    .btn-secondary:hover .btn-icon svg,
    .btn-secondary:hover .btn-icon svg * {
        fill: var(--color-secondary);
    }

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

    .btn-default:hover .btn-icon svg,
    .btn-default:hover .btn-icon svg * {
        fill: var(--color-default);
    }

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

    .btn-white:hover .btn-icon svg,
    .btn-white:hover .btn-icon svg * {
        fill: var(--color-default);
    }

}


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

/**
 * TITLES
 */


.text.txt h1 {
    font-size: var(--font-24);
    margin-bottom: var(--space-30);
    font-weight: 700;
    line-height: 200%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.text.txt h2 {
    font-size: var(--font-20);
    margin-bottom: var(--space-30);
    font-weight: 700;
    line-height: 200%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.text.txt h3 {
    font-size: var(--font-18);
    margin-bottom: var(--space-30);
    font-weight: 700;
    line-height: 200%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.text.txt h4 {
    font-size: 16px;
    margin-bottom: var(--space-30);
    font-weight: 700;
    line-height: 200%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.text.txt h5 {
    font-size: 14px;
    margin-bottom: var(--space-30);
    font-weight: 700;
    line-height: 200%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}


.text.txt h6 {
    font-size: 12px;
    margin-bottom: var(--space-30);
    font-weight: 700;
    line-height: 200%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}


/**
 * Modal
 */

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

.modal-title {
    margin: 0;
    font-weight: 400;
    font-size: var(--font-30);
    line-height: 1.27778;
    color: #fff;
}

.modal-header button.close {
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -23px;
    width: 46px;
    height: 46px;
    border: 1px solid #fff;
    opacity: 1;
    border-radius: 50%;
}

.modal-header button.close {
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -23px;
    width: 46px;
    height: 46px;
    border: 1px solid #fff;
    opacity: 1;
    border-radius: 50%;
    color: #fff;
    text-shadow: 0 0 transparent;
    font-size: 30px;
}

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


.modal-body button.btn.btn-lg.btn-primary {
    display: block;
    margin: 0 auto;
}

.modal-body .controls.captcha-container {
    width: 100%;
}


/**
 * 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: "";
    display: inline-block;
    left: -16px;
    margin-left: -8px;
    font-family: sans-serif;
    position: relative;
    top: -1px;
    width: 5px;
    height: 5px;
    background-color: #fff;
    border-radius: 50%;
}

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

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

.vcenter {
    display: block;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: relative;
}

.photo-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

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

.mask {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    pointer-events: none;
}

.grayscale, .gray {
    filter: grayscale(100%);
}

.buttons-center {
    text-align: center;
}

.news-box .slick-track, .offer-box .slick-track {
    display: flex !important;
    height: auto !important;
}

.news-box .slick-slide, .offer-box .slick-slide {
    height: inherit !important;
}

div#container-page {
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
    /* background: url(../images/page.jpg) no-repeat top center; */
}


/**
 * HEADER
 */

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

.header-top-inner {
    padding-top: 14px;
    padding-bottom: 14px;
}

.header-top-inner {
    width: 100%;
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
    transition: all 300ms ease-out;
}

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

.header-top {
    background: #2C2C2C;
}


.top {
    padding-top: 0;
    padding-bottom: 0;
    background: #151515;
}

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

.top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 82%;
}

.logo {
    float: left;
    width: 15%;
}

.logo a {
    display: block;
}

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

#main-menu {
    transition: all 300ms ease-out;
    flex-grow: 1;
    padding: 0 6.5%;
}

#main-menu ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#main-menu li {
    position: relative;
}

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

#main-menu li a {
    position: relative;
    padding: 34px 10px;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    display: block;
    line-height: 157%;
}

header.sticky #main-menu li a {
    padding: 24px 10px;
}

header.sticky #main-menu li li a {
    padding: 16px 30px;
}

header.sticky  .header-top-inner {
    padding-top: 15px;
    padding-bottom: 15px;
}

#main-menu li a svg, #main-menu li a svg * {
    stroke: #fff;
}

#main-menu li.active a svg, #main-menu li.active a svg * {
    stroke: var(--color-primary);
}

#main-menu li a:hover svg, #main-menu li a:hover svg * {
    stroke: var(--color-primary);
}

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

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

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

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

#main-menu li > ul {
    display: none;
    position: absolute;
    top: 100%;
    width: 320px;
    background: #404040;
    left: 50%;
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}

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

#main-menu li li a {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    text-align: left;
    text-transform: none;
    line-height: 129%;
    padding: 16px 30px;
}
#main-menu li li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}


#main-menu li > li.active > a {
    color: #fff;
    background: var(--color-primary);
}

#main-menu li li a:hover {
    background: var(--color-primary);
    color: #ffff;
}

#main-menu li li:last-child {
    border-bottom: 0 none;
}

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


.contact-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.contact-link {
    align-items: center;
    font-size: 14px;
    line-height: 130%;
    font-weight: 400;
    display: flex;
    padding: 0;
    color: #fff;
    flex-grow: 1;
    text-align: center;
    justify-content: center;
    position: relative;
}

.contact-link .link-icon {
    margin-right: 14px;
    position: relative;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 0 none;
    padding: 0;
    text-align: center;
}

.contact-links .contact-link svg, .contact-links .contact-link svg * {
    max-width: 100%;
}

.contact-link .caption strong {
    display: block;

}

@media screen and (min-width: 1140px) {
    a.contact-link:hover {
        text-decoration: underline;
        color: var(--color-primary);
    }
}

.contact-icon {
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border: 1px solid #fff;
}


.header-top .contact-link:after {
    width: 1px;
    height: 21px;
    content: '';
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -10px;
}

.contact-links:after {
    width: 1px;
    height: 21px;
    content: '';
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
}

.top-right .social-list {
    margin-left: 10px;
}

.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;   -ms-transform: translate3d(0, -50%, 0);     transform: translate3d(0, -50%, 0);    width: 1px;    height: 12px;    background-color: rgba(255, 255, 255, 0.6);}*/
/*.header-top .user-nav-item .icon {    width: 26px;    height: 26px;}*/


/**
 * FOOTER
 */

footer {
    position: relative;
}

.footer-boxes {
    display: flex;
    justify-content: space-between;
    position: relative;
}


.footer-box-container {
    position: relative;
    padding-top: calc(var(--space-50) + var(--space-40));
    padding-bottom: 85px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-box {
    padding-right: 30px;
    position: relative;
    width: 23%;
}

.footer-box:last-child {
    width: 56%;
    padding-left: 12%;
    padding-top: 6px;
}

.footer-left {
    width: 74%;
    display: flex;
}

.footer-right {
    width: 16%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 75px;
}


.footer-col-title {
    margin-bottom: var(--space-40);
    font-weight: 700;
    font-size: var(--font-20);
    line-height: 150%;
    text-transform: uppercase;
    color: #fff;
}


.footer-box ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.footer-box ul li {
    margin-bottom: 12px;
}

.footer-box ul li a {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #fff;
}

@media screen and (min-width: 1140px) {
    .footer-box ul li a:hover {
        text-decoration: none;
        color: var(--color-primary);
    }
}

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


img.logo-min {
    display: block;
    margin-bottom: 0;
    max-width: 100%;
}

.footer-box .text.txt {
    font-weight: 400;
    margin-top: -6px;
    font-size: 14px;
    line-height: 212%;
    color: #fff;
}



.contact-links-bottom {
    column-count: 2;
    column-gap: 16px;
}

.contact-link-item {
    margin-bottom: 31px;
}

.contact-link-bottom {
    align-items: center;
    line-height: 200%;
    display: flex;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

.contact-link-bottom .btn-icon {
    margin-right: 20px;
    position: relative;
    flex-shrink: 0;
    width: 19px;
    height: 19px;
    color: #EB4B31;
}


.contact-link-bottom .caption strong {
    display: block;

}

.contact-link-bottom svg, .contact-link-bottom svg * {
    stroke: currentColor;
}

@media screen and (min-width: 1140px) {
    .contact-link-bottom:hover {
        text-decoration: underline;
        color: #fff;
    }

    .contact-link-bottom:hover .btn-icon {
 
    }
}

.contact-link-info {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    margin-bottom: 4px;
}


.footer-col-title.footer-col-title-rwd {
    display: none;
}

/* FOOTER BAR */
.footer-bar {
    padding: 13px 0;
    line-height: 30px;
    font-weight: 300;
    font-size: 14px;
    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 {
}

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

.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 5px;
    font-size: 14px;
    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;
    letter-spacing: inherit;
    line-height: inherit;
    color: inherit;
    font-size: 13px;
}

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

/**
 * FORM
 */

.form-box-title {
    font-size: var(--font-40);
    color: #000;
    font-weight: 700;
    margin-bottom: var(--space-40);
}

form.form {
    padding: 9px 0 0;
}

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

.form .form-element-name {
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    color: #16244e;
    margin-bottom: 15px;
}


/* INPUTY */
.form-control,
.form .form-control {
    height: 46px;
    box-shadow: 0 0 0 transparent;
    padding-left: 20px;
    padding-right: 20px;
    letter-spacing: 0;
    font-family: poppins, sans-serif;
    color: #000;
    font-size: 14px;
    font-weight: 300;
    background-color: rgb(255, 255, 255);
    border: 1px solid #e5e5e5;
    border-radius: 23px;
}

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

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.69231;
    text-align: justify;
    color: #16244e;
}

.form .before-consent-row {
    padding-top: 14px;
}


.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 {
    box-shadow: none;
    background: #fff;
    border-radius: 23px;
}

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

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

.form button.captcha-refresh {
    right: var(--row-gap);
    color: var(--color-default);
    border-radius: 0 23px 23px 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid #e5e5e5;
}

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

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

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

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


.controls.captcha-container {
    width: 66.66%;
}

.row-flex-center {
    padding-top: 14px;
    justify-content: center;
    display: flex;
}

.form .consent-all-row {
    color: var(--color-default);
    margin-bottom: calc(var(--space-40) + 5px);
}

.form-service-container .form .consent-all-row {
    color: #fff;
}

/*---- 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%;
    -ms-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', sans-serif;
    font-size: 16px;
    vertical-align: middle;
}

.select2-container--default.select2-container--open .select2-selection__arrow {
    -ms-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 (-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;
    }
}

.form-box-wrapper button.btn.btn-lg {
    border-radius: 5px;
    margin: 0 auto;
    display: block;
}


@media screen and (min-width: 1140px) {
    .form-box-wrapper button.btn.btn-lg:hover {
    }

}

.form .consent-all-row strong {
    padding-top: 20px;
    display: block;
}

@media (-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.webp') no-repeat scroll center center;
    cursor: pointer;
    -ms-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;
}


.map-box-container iframe {
    width: 100%;
    display: block;
    height: 530px;
}


/**
 * BREADCRUMB
 */

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

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

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

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

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

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

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

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

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

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

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

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

.animIcon.animIcon--close span:nth-child(2) {
    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%;
    -ms-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%;
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

/**
 * LOGOTYPES SLIDER
 */
.logotypes-box-container {
    padding-top: var(--space-60);
    padding-bottom: var(--space-60);
}

.logotypes-box-title {
    color: #00306d;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0.1em;
}

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

.logotype img {
    max-height: 100px;
    max-width: 100%;
    margin: 0 auto;
    top: 50%;
    -ms-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    position: relative;
}


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

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

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

.social-icon svg {
    stroke: currentColor;
}

.social-icon img {
    display: block;
}

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

.social:hover .social-icon {
    color: var(--color-primary);
    border-color: var(--color-primary)
}

.social:hover .social-icon svg, .social:hover .social-icon svg *{   stroke: var(--color-primary);}

.contact-icon:hover{ border-color:var(--color-primary);}

.contact-icon:hover svg, .contact-icon:hover svg *{stroke: var(--color-primary);
}


/**
 * 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: 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);
        -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);
        -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;
    padding-bottom: var(--space-40);
}

.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: 95px;
    margin-bottom: var(--space-40);
    margin-top: 10px;
    overflow: hidden;
}

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

.article-subtitle {
    padding-bottom: var(--space-30);
    font-weight: 700;
    font-size: var(--font-20);
    line-height: 200%;
    text-transform: uppercase;
    color: #fff;
}

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

.article-text {
    margin-bottom: var(--space-30);
}

/**
 * GALLERY
 */

.gallery {
    clear: both;
}

.gallery-list {
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
}

.gallery-list-item {
    display: flex;
    flex-wrap: wrap;
    width: 25%;
}

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

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

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    transition: opacity 0.3s;
    background: rgba(235, 75, 49, 80%) url(../images/icons/corner_top_white.svg) no-repeat top left;
}

.gallery-picture-hover > * {
    background: url(../images/zoom.webp) no-repeat center center;
    text-indent: -20000px;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 161px;
    height: 161px;
    left: 0;
    right: 0;
    position: absolute;
    border-radius: 0;
    margin: 0 auto;
    display: block;
    top: 50%;
}

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

.icheckbox_minimal-custom,
.iradio_minimal-custom {
    background-image: url(../images/minimal.webp);
}

/* HiDPI support */
@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
    .icheckbox_minimal-custom,
    .iradio_minimal-custom {
        background-image: url(../images/minimal@2x.webp);
    }
}

/**
* PAGINATION
*/

.pagination-wrapper {
    clear: both;
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
}

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

.pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
    padding: 0 calc(var(--space-30) + 5px);
    vertical-align: middle;
    float: none;
}

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    line-height: 50px;
    padding: 0 14px;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}


.pagination-wrapper ul li.prev a, .pagination-wrapper ul li.next a {
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 transparent;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 1px solid #fff;
    font-size: 13px;
}

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

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


    .pagination-wrapper ul li.prev a:hover {
        background: var(--color-primary);
        color: #fff;
    }

    .pagination-wrapper ul li a:hover {
        color: var(--color-primary);
        font-weight: bold;
    }
}


.main-slider, .slider .slide, .slider .slider-photo, .main-slider .slick-list, .main-slider .slick-track {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.slider {
    position: relative;
    height: 600px;
    margin-bottom: var(--space-40);
}

.slider .slider-photo {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.slider-photo img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mask.slider-mask {
    background: linear-gradient(270deg, rgba(64, 64, 64, 0) 0%, #404040 100%);
}

.slider .container {
    position: absolute;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}


.slide-box {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.slide-text {
    display: flex;
    flex-direction: column;
    width: 39.5%;
    position: relative;
    z-index: 2;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding-top: var(--space-30);
}

.slide-left {
    width: 42%;
    display: flex;
    justify-content: center;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
}

.title1 {
    font-weight: 700;
    font-size: 6.666vw;
    line-height: 86%;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #fff;
}

@media screen and (min-width: 1921px) {
    .title1 {
        font-size: 128px;
    }
}

.title2 {
    font-weight: 700;
    font-size: var(--font-20);
    line-height: 200%;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 22px;
}

.description {
    font-weight: 400;
    font-size: 14px;
    line-height: 214%;
    color: #fff;
    margin-bottom: var(--space-25);
}

.corner-top {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 9%;
}

.corner-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 15%;
}

.corner-top svg, .corner-bottom svg {
    display: block;
    max-width: 100%;
}

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

.offer-box-title {
    font-weight: 700;
    font-size: var(--font-64);
    line-height: 172%;
    text-transform: uppercase;
    color: #fff;
}

.offer-wrapper-header {
    padding-top: var(--space-25);
    padding-bottom: var(--space-25);
    position: relative;
    background: url(../images/icons/corner_top.svg) no-repeat left top, url(../images/icons/corner_orange.svg) no-repeat right bottom;
    background-size: auto 100%;
    margin-bottom: var(--space-30);
}

.offer-box {
    display: flex;
    justify-content: center;
    margin: calc(-1 * var(--space-40));
}

.offer-item {
    width: 33.33%;
    padding: var(--space-40);
}

.offer-link-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #eb4b31;
    padding: 20px;
    padding-top: 10px;
    padding-bottom: calc(var(--space-30) + 10px);
    background: url(../images/icons/corner_top.svg) no-repeat left top;
    background-size: 17%;
    position: absolute;
    width: 100%;
    height: 100%;
    justify-content: center;
}

.offer-icon {
    width: 34%;
    padding-bottom: 34%;
    position: relative;
    margin-bottom: var(--space-60);
}

.offer-icon img {
    display: block;
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.offer-title {
    font-weight: 700;
    font-size: var(--font-20);
    line-height: 200%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    margin-bottom: var(--space-50);
}

.offer-box-container {
    padding-bottom: var(--space-50);
}

.price-list-container {
    padding-top: var(--space-50);
    padding-bottom: var(--space-50);
}

.price-list {
    border: 1px solid #eb4b31;
    padding: 120px 140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: url(../images/icons/corner_grey.svg) no-repeat right bottom / 12.5%;
}

.price-list-title {
    font-weight: 700;
    font-size: var(--font-64);
    line-height: 172%;
    text-transform: uppercase;
    text-align: left;
    color: #fff;
}

.text.txt {
    font-weight: 400;
    font-size: 14px;
    line-height: 214%;
    color: #fff;
}

.text.txt a {
    color: var(--color-primary);
}

.person-item .text.txt a, .contact-item  .text.txt a{
    color: #fff;
}

.person-item .text.txt a:hover, .contact-item  .text.txt a:hover{    color: var(--color-primary);}

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

.price-list .text.txt {
    width: 43%;
    padding-right: 13%;
    font-weight: 300;
}

.about-box-container {
    padding-top: var(--space-60);
    margin-bottom: var(--space-40);
    background: url(../images/icons/corner_top.svg) no-repeat top left;
    background-size: 8.2%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-left-title {
    font-weight: 700;
    font-size: var(--font-64);
    line-height: 172%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    margin-bottom: -6px;
}

.about-box {
    display: flex;
    align-items: center;
}

.about-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: var(--space-40);
    padding-bottom: var(--space-40);
}

.about-right {
    width: 50%;
}

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

.about-left .text.txt h3 {
    font-weight: 700;
    font-size: var(--font-20);
    line-height: 200%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    margin-bottom: calc(var(--space-40) + 5px);
}

.about-left-content {
    width: 100%;
    padding-left: var(--container-padding);
    padding-right: 145px;
    max-width: 860px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-left .text.txt {
    margin-bottom: var(--space-40);
}

.news-box {
    display: flex;
    margin: calc(-1 * var(--space-40));
    flex-wrap: wrap;
}

.news-item {
    width: 33.33%;
    padding: var(--space-40);
}

.news-link {
    display: flex;
    flex-direction: column;
    border: 1px solid #eb4b31;
    padding: calc(var(--space-30) + 5px);
    padding-top: var(--space-40);
    padding-bottom: calc(var(--space-30) + var(--space-25));
    height: 100%;
}

.news-photo img {
    display: block;
    max-width: 200%;
}

.news-photo {
    margin-bottom: var(--space-50);
    position: relative;
}

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

time.news-date {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.5em;
    color: #fff;
    display: block;
    margin-bottom: 18px;
    width: 100%;
    text-align: left;
}

.news-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    /* flex-grow: 1; */
    height: 100%;
}

.news-title {
    font-weight: 700;
    font-size: var(--font-20);
    line-height: 150%;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: calc(var(--space-30) + 5px);
    width: 100%;
    text-align: left;
}

.news-content-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-grow: 1;
    justify-content: space-between;
    width: 100%;
}

.news-box-container {
    margin-bottom: calc(var(--space-30) + var(--space-40));
}

.subpage .about-left {
    padding: 0;
    padding-bottom: 14px;
}

.about-right {
    width: 50%;
    position: relative;
}

.subpage .about-box-container {
    padding-top: 0;
    margin-bottom: 0;
}

.mask.about-mask {
    background: url(../images/about_mask.webp) no-repeat bottom right;
    background-size: 58%;
}

.text-bottom-container {
    background: url(../images/icons/corner_top.svg) no-repeat top left, url(../images/icons/corner_orange.svg) no-repeat bottom right;
    padding-top: calc(var(--space-50) + var(--space-50));
    padding-bottom: calc(var(--space-50) + var(--space-50));
    background-size: 8.2%, 8.3%;
}


.gallery-box-container {
    margin-bottom: -1px;
}

.page-heading-title {
    font-weight: 700;
    font-size: var(--font-64);
    line-height: 172%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    margin-bottom: 12px;
}

.subpage .price-list-container {
    background: url(../images/icons/corner_top.svg) no-repeat top left;
    padding-top: calc(var(--space-30) + var(--space-40));
    padding-bottom: calc(var(--space-50) + var(--space-50));
    background-size: 8.2%;
}

.price-list-box .text.txt table {
    margin: 0;
    width: 100%;
    margin-bottom: calc(var(--space-30) + var(--space-40));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-list-box .text.txt table th {
    color: #fff;
    background: #eb4b31;
    padding: 10px 20px;
    text-transform: uppercase;
}

.price-list-box .text.txt table td {
    font-weight: 400;
    font-size: 14px;
    line-height: 214%;
    text-transform: uppercase;
    color: #fff;
    border: 0 none;
    padding: 10px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.price-list-box {
    max-width: 1090px;
    margin: 0 auto;
    margin-bottom: var(--space-40);
}

.price-list-box .text.txt table tr:nth-child(odd) td {
    background: rgba(255, 255, 255, 0.1);
}

.subpage .news-box-container {
    padding-top: calc(var(--space-30) + var(--space-40));
    background: url(../images/icons/corner_top.svg) no-repeat top left;
    background-size: 8.2%;
}

.text-top {
    margin-bottom: calc(var(--space-30) + var(--space-40));
}

span.mask.news-mask {
    background: url(../images/icons/corner_bottom.svg) no-repeat bottom right;
    background-size: 37.5%;
}

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

.news-link:hover .btn.btn-lg {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.subpage header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.text-box-container {
    background: url(../images/icons/corner_top.svg) no-repeat top left;
    padding-top: calc(var(--space-50) + var(--space-50));
    background-size: 8.2% auto;
}

.text-box-container .page-heading-title {
    font-size: var(--font-40);
    line-height: 130%;
    margin-bottom: 20px;
}

.text-box-container time.news-date {
    text-align: center;
    margin-bottom: var(--space-40);
}

.text-box-container + .gallery-box-container {
    margin-bottom: calc(var(--space-50) + var(--space-50));
}

.gallery-box-container + .buttons-center {
    margin-bottom: calc(var(--space-50) + var(--space-50));
}

.contact-box-container {
    padding-top: calc(var(--space-30) + var(--space-40));
    background: url(../images/icons/corner_top.svg) no-repeat top left;
    background-size: 8.2%;
}

.contact-box-wrapper {
    padding-bottom: calc(var(--space-50) + var(--space-40));
    position: relative;
    margin-bottom: calc(var(--space-40) + var(--space-40));
}

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

.contact-item:first-child{ border-left: 1px solid rgba(255, 255, 255, 0.1);}


.contact-item {
    width: 20%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: var(--space-40);
    padding-right: var(--space-40);
}

.contact-item .text.txt h2 {
    text-align: left;
}

.contact-box-wrapper:after {
    position: absolute;
    left: -25%;
    right: -25%;
    content: '';
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    width: 150%;
    height: 1px;
}

.contact-box-wrapper:last-child {
    margin-bottom: 0;
}

.contact-box-title {
    font-weight: 700;
    font-size: var(--font-20);
    line-height: 200%;
    text-transform: uppercase;
    color: #fff;
    padding-left: var(--space-40);
    margin-bottom: calc(var(--space-30) + 5px);
}

.person-name {
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    color: #fff;
    margin-bottom: 10px;
}

.position {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #fff;
    margin-bottom: var(--space-25);
}

.person-item {
    padding-left: var(--space-40);
    padding-right: var(--space-40);
}

.person-box {
    display: flex;
    flex-wrap: wrap;
}

.person-box {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.person-item {
    width: 20%;
    padding-top: 6px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.person-contact .contact-link {
    font-weight: 400;
    font-size: 14px;
    line-height: 214%;
    color: #fff;
    text-align: left;
    justify-content: flex-start;
}

.person-contact .contact-link .btn-icon {
    width: 16px;
    margin-right: 17px;
}

.person-contact .contact-link:hover .btn-icon{ background: transparent}

.directions-box-title {
    font-weight: 700;
    font-size: var(--font-64);
    line-height: 172%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    margin-bottom: var(--space-50);
}

.map-box-container {
    padding-bottom: calc(var(--space-50) + var(--space-50) + var(--space-30));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: calc(var(--space-30) + var(--space-40));
    background: url(../images/icons/corner_top.svg) no-repeat top left, url(../images/map_bg.webp) no-repeat bottom right;
    background-size: 8.2%, 29.2%;
}

.offer-details-container {
    padding-top: calc(var(--space-30) + var(--space-40));
    background: url(../images/icons/corner_top.svg) no-repeat top left, url(../images/icons/corner_grey_big.svg) no-repeat bottom right;
    padding-bottom: calc(var(--space-50) + var(--space-50));
    background-size: 8.2% auto;
}

.offer-details-box {
    display: flex;
    margin: -25px;
    flex-wrap: wrap;
}


.offer-details-item {
    width: 25%;
    padding: 40px;
}

.offer-details-item .offer-icon {
}

.offer-details-item .offer-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    margin-bottom: var(--space-40);
}

.offer-details-item .offer-link {
}

.mask.details-mask {
    background: url(../images/icons/corner_bottom_big.svg) no-repeat bottom right;
    background-size: 48%;
    bottom: -1px;
    top: auto;
    right: -1px;
    left: auto;
}

/**Fix sliderów**/
.offer-box .slick-list,
.news-box .slick-list {
    display: flex;
    width: 100%;
}

div#content > .buttons-center:last-child {
    margin-bottom: calc(var(--space-50) + var(--space-50));
}

.text-box-container .page-heading-title + .article {
    padding-top: 20px;
}

.item-teaser-more {
    cursor: pointer;
}

.item-teaser-more.more.active {
    display: none;
}

.subpage .about-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article .news-date {
    margin-top: -20px;
}

.offer-link {
    width: 100%;
    padding-bottom: 100%;
    display: block;
    position: relative;
}

.mainpage .offer-details-item .offer-title {
    font-size: 20px;
    margin-bottom: var(--space-50);
}


.subpage .offer-details-box {
    margin: -25px;
}


.subpage .offer-details-item {
    padding: 25px;
}


.subpage .offer-details-item .offer-icon {
    width: 30%;
    padding-bottom: 30%;
    margin-bottom: 50px;
}

.subpage .offer-link-inner {
    padding-bottom: 10px;
}

.subpage .offer-details-item .offer-title {
    margin-bottom: 30px;
}

span.item-teaser-more.more:hover {
    text-decoration: underline;
}
.main-slider .slide video,
.main-slider .slide iframe{
    width: 100%;
    height: 100%;
}


.tile-item {
    display: flex;
    margin-bottom: var(--space-60);
    align-items: center;
}

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

.tile-photo {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tile-text {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 30px;
    padding-bottom: 30px;
}

.tile-title {
    font-weight: 700;
    font-size: var(--font-20);
    line-height: 130%;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: var(--space-30);
}

.tile-text .text.txt {
    margin-bottom: var(--space-30);
}

.tile-item .contact-link .btn-icon{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tile-text .contact-link {
    background-color: transparent;
    border: 1px solid #fff;
    padding: 0 20px 0 8px;
    height: 50px;
    line-height: 48px;
    text-transform: uppercase;
}

.tile-text .contact-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    text-decoration: none;
}