/**
 * 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;
    --second-family: "Playfair Display", sans-serif;
    --container-padding: 40px;
    --row-gap: 5px;

    /** SPECIFIC **/
    --color-primary: #b9aa88;
    --color-secondary: #fff;
    --color-default: #001E4A;
}

body {
    color: #001E4A;
    font-family: "Inter", 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);
}

/**
 * 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;
    padding: 0 34px;
    height: 46px;
    line-height: 44px;
    border-radius: 0;
    box-shadow: 0 0 0 transparent !important;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
}

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

.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: #fff;
    border-color: var(--color-default);
    color: var(--color-default);
}

.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: #fff;
    border-color: #fff;
    color: var(--color-default);
}


.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: var(--color-default);
        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: var(--color-default);
        color: #fff;
        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-default);
        border-color: var(--color-default);
        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-30);
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 0.65em;
    text-transform: uppercase;
    color: #001e4a;
    line-height: 164%;
}

.text.txt h2 {
    font-size: var(--font-24);
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 0.65em;
    text-transform: uppercase;
    color: #001e4a;
    line-height: 164%;
}

.text.txt h3 {
    font-size: var(--font-22);
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 0.65em;
    text-transform: uppercase;
    color: #001e4a;
    line-height: 164%;
}

.text.txt h4 {
    font-size: var(--font-20);
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 0.65em;
    text-transform: uppercase;
    color: #001e4a;
    line-height: 130%
}

.text.txt h5 {
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 0.65em;
    text-transform: uppercase;
    color: #001e4a;
    line-height: 164%;
}


.text.txt h6 {
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 0.65em;
    text-transform: uppercase;
    color: #001e4a;
    line-height: 164%;
}


/**
 * 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: 33px;
    position: relative;
    padding-right: 33px;
}

.text ul > li::before {
    content: "";
    display: inline-block;
    left: -13px;
    margin-left: -5px;
    font-family: sans-serif;
    position: relative;
    top: -2px;
    width: 4px;
    height: 4px;
    background-color: var(--color-default);
    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%;
    /* opacity: 0; */
}

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

.slick-track {
    /* display: flex !important; */
    /* height: auto !important; */
}

.slick-slide {
    /*height: inherit !important;*/
}

div#container-page {
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
}


/**
 * HEADER
 */

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    background: #001E4A;
}

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

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

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

.top {
    padding-top: 14px;
    padding-bottom: 13px;
}

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

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

.logo {
    width: 20%;
}

.logo a {
    display: block;
}

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

#main-menu {
    transition: all 300ms ease-out;
    margin-right: 5.5%;
    flex-grow: 1;
    margin-left: 5.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: 10px 5px;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    display: block;
    text-align: center;
}

#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%;
    left: 0;
}

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

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

.main-menu-button.animIcon--hamburger.active span {
    background-color: var(--color-primary);
}

.top .social-list {
    margin-right: 10px;
    padding-top: 9px;
    padding-bottom: 9px;
}

.top .social-list > ul > li:nth-child(odd) .social-icon {
    background: var(--color-primary);
    color: var(--color-default);
}

.top .social-list > ul > li:nth-child(odd) .social-icon:hover {
    background: transparent;
    color: var(--color-primary);
}

.top .social-list > ul > li:nth-child(even) .social-icon {
    background: transparent;
    color: var(--color-primary);
}

.top .social-list > ul > li:nth-child(even) .social-icon:hover {
    background: var(--color-primary);
    color: var(--color-default);
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -10px;
}

.contact-link {
    align-items: center;
    display: flex;
    padding: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 217%;
    text-align: justify;
    color: #fff;
}

.contact-link .btn-icon {
    margin-right: 20px;
    position: relative;
    flex-shrink: 0;
    padding: 12px;
    text-align: center;
    border: 1px solid #b9aa88;
    width: 46px;
    height: 46px;
    color: var(--color-primary);
}

.contact-link strong {
    font-size: var(--font-18)
}

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

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

}

@media screen and (min-width: 1140px) {
    .contact-link:hover .btn-icon {
        background: var(--color-primary);
        color: var(--color-default)
    }


}

.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;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}


.footer-box-container {
    position: relative;
    padding-top: calc(var(--space-40) + var(--space-40) );
    padding-bottom: 250px;
}

span.mask.footer-mask {
    background: url(../images/footer_top.webp) no-repeat top center, url(../images/footer_bottom.webp) no-repeat bottom center;
    background-color: rgba(0, 30, 74, 0.70);
    background-size: 100% auto, 100% auto;
}

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

.footer-right {
    width: 35%;
}

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

.footer-box:last-child {
    width: 40%;
}

.footer-col-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 500;
    font-size: var(--font-24);
    line-height: 1.66667;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: var(--space-30);
}


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

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

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

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

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


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

.footer-box .text.txt {
    margin-top: -2px;
    color: #fff;
}


.contact-links-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -18px -15px;
}

.contact-link-bottom {
    align-items: center;
    display: flex;
    padding: 18px 15px;
    font-weight: 400;
    font-size: 14px;
    line-height: 197%;
    color: #fff;
}

.contact-link-bottom .btn-icon {
    margin-right: 24px;
    position: relative;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border: 1px solid var(--color-primary);
    padding: 9px;
    text-align: center;
    color: var(--color-primary);
}


.contact-link-bottom .caption strong {
    display: block;
    font-size: var(--font-18);
}

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


.footer-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logos img:first-child {
    max-width: 19%;
}

.footer-logos img:last-child {
    max-width: 67%;
}


/* FOOTER BAR */
.footer-bar {
    padding: 10px 0;
    line-height: 30px;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

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

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

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

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

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


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

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

/**
 * FORM
 */

.form-box-title {
}

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

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

.form .form-element-name {
    font-style: normal;
    margin-bottom: 19px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.06667;
    color: #001e4a;
}


/* INPUTY */
.form-control,
.form .form-control {
    height: 46px;
    box-shadow: 0 0 0 transparent;
    padding-left: 20px;
    padding-right: 20px;
    font-family: "Inter", sans-serif;
    border: 1px solid #f5f5f5;
    border-radius: 0;
    background: #f5f5f5;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #001e4a;
}

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

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.71343;
    letter-spacing: 0.05em;
    color: #001e4a;
}

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

/* 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;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid #f5f5f5;
}

.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-primary.btn-lg {
    margin: 0 auto;
    display: block;
}


@media screen and (min-width: 1140px) {
    .form-box-wrapper button.btn.btn-primary.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: 495px;
}


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

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

.social-icon svg, .social-icon svg * {
    fill: 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)
}


/**
 * LANGUAGES MENU
 */

.langs-menu {
    position: relative;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
    z-index: 1001;
    padding-left: 53px;
    margin-right: -24px;
    margin-top: 11px;
}


.langs-menu ul {
    overflow: hidden;
    position: relative;
    top: auto;
    width: auto;
    background-color: transparent;
    transition: all 0.3s;
    display: flex;
}

.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 {
    text-decoration: none;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang span.langs-menu-icon {
    vertical-align: middle;
    line-height: 0;
    margin-right: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
}

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

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

.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: var(--font-18);
    line-height: 12px;
    transition-duration: 0.3s;
    transition-property: transform, -webkit-transform, -ms-transform;
}

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

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

    .langs-menu li.active a.lang {
        background-color: var(--color-primary);
        border-color: var(--color-primary);
        color: #fff;
    }

    .langs-menu a.lang:hover,
    a.lang:focus {
        background-color: var(--color-primary);
        border-color: var(--color-primary);
        color: #fff;
    }

    .langs-menu:not(.langs-menu--list):not(:hover):not(:focus):not(:focus-within) ul {
        pointer-events: none;
        opacity: 1;
        position: relative;
        top: auto;
        width: auto;
        display: flex;
    }

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

    .langs-menu li {
        border-bottom: 0 none;
        margin-left: 9px;
    }


    span.langs-menu-short {
        display: block;
        text-align: justify;
        font-weight: 400;
        font-size: 14px;
        text-transform: uppercase;
    }
}

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

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

    .langs-menu ul {
        overflow: hidden;
        position: relative;
        top: auto;
        width: auto;
        background-color: transparent;
        display: flex;
    }
}

/**
 * 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: 116px;
    margin-bottom: 20px;
}

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

.article-subtitle {
    padding-bottom: 20px;
    font-weight: 300;
    font-size: var(--font-24);
    letter-spacing: 0.65em;
    text-transform: uppercase;
    color: #001e4a;
    line-height: 164%;
}

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

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

/**
 * GALLERY
 */

.gallery {
    clear: both;
}

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

.gallery-list-item {
    display: flex;
    flex-wrap: wrap;
    width: 33.33%;
    padding: 0;
}

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

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

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background: rgba(0, 30, 74, 0.70) url(../images/hover_gallery.webp) no-repeat top right;
    transition: opacity 0.3s;
}

.gallery-picture-hover > * {
    background: url(../images/icons/loupe.svg) no-repeat center center;
    text-indent: -20000px;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 46px;
    height: 46px;
    left: 0;
    right: 0;
    position: absolute;
    border-radius: 0;
    margin: 0 auto;
    display: block;
    top: 50%;
    border: 1px solid var(--color-primary);
}

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

.pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
    padding: 0 87px;
    vertical-align: middle;
    float: none;
}

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    line-height: 46px;
    padding: 0 11px;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.3em;
    text-align: center;
    color: #001e4a;
}


.pagination-wrapper ul li.prev a, .pagination-wrapper ul li.next a {
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 transparent;
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 0;
    border: 1px solid var(--color-default);
    color: var(--color-default);
}

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

.pagination-wrapper ul li.prev a {
    padding-left: 4px;
}

.pagination-wrapper ul li.next a {
    padding-left: 6px;
}

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

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

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


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

.slider {
    height: 100vh;
    min-height: 670px;
    position: relative;
    padding-top: 90px;
    max-height: 845px;
}

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

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

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

.mask.slider-mask {
    background: url(../images/triangle_left_slider.webp) no-repeat bottom left, linear-gradient(0deg, rgba(0, 30, 74, 0.70));
}

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

img.triangles-left {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    max-width: 15%;
}

img.triangles-right {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 15%;
}

.slide-logo {
    width: 36%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -130px;
    height: 100%;
}

.slide-logo img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    max-height: 100%;
}


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

.slide-text {
    display: flex;
    flex-direction: column;
    width: 38.7%;
    position: relative;
    z-index: 2;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.slide-text-content {
    padding-left: 15.7%;
    position: relative;
}

.slide-text-content-line {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
}

/*
Style do animacji
 */
@media screen and (min-width: 1140px) {
    .sliderLine1 {
        -webkit-animation-name: sliderLine1;
        animation-name: sliderLine1;
        -webkit-animation-duration: 1.3s;
        animation-duration: 1.3s;
    }

    @keyframes sliderLine1 {
        0% {
            height: 0;
        }
        100% {
            height: 100%;
        }
    }

    .benefitsBoxLine1 {
        -webkit-animation-name: sliderLine1;
        animation-name: sliderLine1;
        -webkit-animation-duration: 1.3s;
        animation-duration: 1.3s;
    }
    @keyframes benefitsBoxLine1 {
        0% {
            height: 0;
        }
        100% {
            height: 100%;
        }
    }
}

.title1, .title2 {
    font-family: var(--second-family), sans-serif;
    font-weight: 500;
    font-size: var(--font-64);
    line-height: 1.25;
    text-transform: uppercase;
    color: #fff;
}

@media screen and (min-width: 1921px) {
    .title1, .title2 {

    }
}

.title-box {
    margin-bottom: 25px;
}


.description {
    font-weight: 300;
    font-size: 14px;
    line-height: 2.14286;
    color: #fff;
    margin-bottom: var(--space-40);
}


.slider .slick-arrow {
    width: 46px;
    height: 46px;
    position: absolute;
    bottom: 96px;
    z-index: 9;
    border: 1px solid #fff;
    font-size: 18px;
    right: 50%;
    background: transparent;
    color: #fff;
}


.slick-prev {
    margin-right: -763px;
}

.slick-next {
    margin-right: -819px;
}

@media screen and (min-width: 1140px) {
    button.slick-arrow:hover {
        background-color: var(--color-primary);
        border-color: var(--color-primary);
        opacity: 1;
    }
}

ul.slick-dots {
    max-width: 1670px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 50px;
    text-align: right;
}

ul.slick-dots li {
    display: inline-block;
    margin: 0 6px;
    transition: all 0.2s;
}

ul.slick-dots li span {
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    color: #000;
    font-size: 16px;
    width: 46px;
    height: 46px;
    line-height: 46px;
    background: rgba(255, 255, 255, 0.3);
}

ul.slick-dots li.slick-active span {
    background: var(--color-primary);
    color: #fff;
}

ul.slick-dots li.slick-active span.slider-line {
    background: rgb(255, 255, 255)
}

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

.about-box-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 500;
    font-size: var(--font-64);
    line-height: 1.25;
    text-transform: uppercase;
    color: #001e4a;
    margin-bottom: 10px;
}

.about-box-subtitle {
    font-weight: 300;
    font-size: var(--font-24);
    letter-spacing: 0.65em;
    text-transform: uppercase;
    color: #001e4a;
    margin-bottom: calc(var(--space-30) + 5px);
}

.text.txt {
    font-weight: 400;
    font-size: 14px;
    line-height: 2.14286;
    color: #001e4a;
}

.about-left {
    width: 39%;
    padding-top: 18px;
    margin-bottom: var(--space-60);
}

.about-box {
    display: flex;
    justify-content: space-between;
}

.about-box-container {
    padding-top: calc(var(--space-50) + var(--space-50));
    background: url(../images/about_top.webp) no-repeat right top, url(../images/about_bottom.webp) no-repeat left bottom;
    background-size: 100% auto, 100% auto;
}

.about-right {
    width: 50.7%;
    position: relative;
    padding-right: 7%;
}

.about-right img.about-logo {
    position: absolute;
    right: 15%;
    top: 5%;
    max-width: 39%;
}

.about-box .text.txt {
    margin-bottom: calc(var(--space-40) + var(--space-60));
}

.about-bottom {
    display: flex;
    justify-content: space-between;
    padding-right: 32px;
    align-items: center;
}

.sign {
    width: 52%;
    margin-bottom: -36px;
}

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


.offer-box-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 500;
    font-size: var(--font-64);
    line-height: 1.25;
    text-transform: uppercase;
    margin-bottom: var(--space-40);
    text-align: center;
    color: #fff;
}

.offer-box-container {
    padding-top: calc(var(--space-40) + var(--space-40) );
    padding-bottom: calc(var(--space-40) + var(--space-50) );
    position: relative;
}

.offer-box {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: var(--space-60);
}

.offer-item {
    width: 33.33%;
    position: relative;
}

.offer-icon {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-right: 20px;
}

.offer-name {
    font-family: var(--second-family), sans-serif;
    font-weight: 500;
    font-size: var(--font-24);
    line-height: 1.66667;
    text-transform: uppercase;
    color: #fff;
}

a.offer-link {
    display: flex;
    align-items: center;
    padding: 42px 20px;
    padding-right: 130px;
    position: relative;
    z-index: 1;
}

.more {
    width: 46px;
    height: 46px;
    position: absolute;
    right: 59px;
    font-size: inherit;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 300ms ease-out;
}

.subpage .offer-link .more{ color:var(--color-default);}


.more:after {
    content: "\f105";
    display: block;
    font-family: 'FontAwesome', sans-serif;
    transition: all 0.3s;
}

a.offer-link:hover .more {
    opacity: 1;
}

.mainpage .offer-link:hover {
    background: rgba(0, 30, 74, 0.3);
    z-index: 2;
}

.offer-item:before {
    height: 29px;
    width: 1px;
    position: absolute;
    content: '';
    display: block;
    z-index: 1;
    background: var(--color-primary);
    transition: all 300ms ease-out;
    top: -15px;
    left: 0;
}

.offer-item:after {
    width: 29px;
    height: 1px;
    position: absolute;
    content: '';
    display: block;
    z-index: 1;
    background: var(--color-primary);
    transition: all 300ms ease-out;
    left: -14px;
    top: -1px;
}

.offer-link:after {
    width: 29px;
    height: 1px;
    position: absolute;
    content: '';
    display: block;
    z-index: 1;
    background: var(--color-primary);
    transition: all 300ms ease-out;
    right: -15px;
    bottom: 0;
}

.offer-link:before {
    height: 29px;
    width: 1px;
    position: absolute;
    content: '';
    display: block;
    z-index: 1;
    background: var(--color-primary);
    transition: all 300ms ease-out;
    bottom: -14px;
    right: -1px;
}

.offer-item:hover:after {
    width: 100%;
}

.offer-item:hover:before {
    height: 100%;
}

.offer-link:hover:after {
    width: 100%;
}

.offer-link:hover:before {
    height: 100%;
}

.offer-item-content {
    position: relative;
}

.offer-item:nth-child(3) .offer-item-content:before {
    height: 29px;
    width: 1px;
    position: absolute;
    content: '';
    display: block;
    z-index: 1;
    background: var(--color-primary);
    transition: all 300ms ease-out;
    top: -14px;
    right: -1px;
}

.offer-item:nth-child(3) .offer-item-content:after {
    height: 1px;
    width: 29px;
    position: absolute;
    content: '';
    display: block;
    z-index: 1;
    background: var(--color-primary);
    transition: all 300ms ease-out;
    top: -1px;
    right: -15px;
}

.offer-item:nth-child(3n+1) .offer-item-content:before {
    height: 29px;
    width: 1px;
    position: absolute;
    content: '';
    display: block;
    z-index: 1;
    background: var(--color-primary);
    transition: all 300ms ease-out;
    bottom: -14px;
    left: 0;
}

.offer-item:nth-child(3n+1) .offer-item-content:after {
    height: 1px;
    width: 29px;
    position: absolute;
    content: '';
    display: block;
    z-index: 1;
    background: var(--color-primary);
    transition: all 300ms ease-out;
    bottom: 0;
    left: -14px;
}

span.mask.offer-mask {
    background: rgba(0, 30, 74, 0.70) url(../images/offer_mask.webp) no-repeat left bottom;
}

span.mask.offer-mask2 {
    background: url(../images/offer_top.webp) no-repeat left top, url(../images/offer_bottom.webp) no-repeat left bottom;
    background-size: 100% auto, 100% auto;
}

.offer-box-container .container {
    position: relative;
}

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

.news-box-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 500;
    font-size: var(--font-64);
    line-height: 1.25;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 9px;
    color: #001e4a;
}

.news-box-subtitle {
    font-weight: 300;
    font-size: var(--font-24);
    letter-spacing: 0.65em;
    text-transform: uppercase;
    color: #001e4a;
    text-align: center;
    margin-bottom: 64px;
}

.news-box {
    display: flex;
    margin: -42px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.news-item {
    width: 33.33%;
    padding: 42px;
}

.news-link {
    display: flex;
    flex-direction: column;
}

.news-date {
    font-weight: 400;
    font-size: 14px;
    line-height: 2.14286;
    letter-spacing: 0.5em;
    color: #001e4a;
    background: url(../images/icons/time.svg) no-repeat left center;
    padding-left: 36px;
    margin-bottom: 11px;
}

.news-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.875;
    color: #001e4a;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.news-content-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px var(--space-60);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.news-hover {
    position: absolute;
    background: rgba(0, 30, 74, 0.70) url(../images/hover_blog.webp) no-repeat right top;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 300ms ease-out;
}

.news-item:nth-child(even) .news-link {
    flex-direction: column-reverse;
}

.news-content {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.news-content .text.txt {
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.subpage .about-left {
    width: 46%;
}

.subpage .about-right img.about-logo {
    right: 0;
    max-width: 38%;
}

.subpage .about-bottom {
    justify-content: flex-end;
    padding-right: 20px;
}

header.stickable {
}

.subpage .about-left {
    padding-top: 22px;
}

.subpage .about-box .text.txt {
    margin-bottom: var(--space-60);
}

.subpage .about-box-subtitle {
    letter-spacing: 0.66em;
}

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

.text-bottom-container {
    padding-top: calc(var(--space-50) + var(--space-50) );
    padding-bottom: calc(var(--space-25) + var(--space-40) + var(--space-40));
    background: url(../images/text_top.webp) no-repeat left top, url(../images/text_bottom.webp) no-repeat left bottom;
    background-size: 100% auto, 100% auto;
}

.text-bottom-container .text.txt h2 {
    font-weight: 300;
    font-size: var(--font-24);
    letter-spacing: 0.666em;
    text-transform: uppercase;
    color: #001e4a;
    line-height: 130%;
    margin-bottom: 34px;
}

.benefits-box-title {
    font-weight: 500;
    font-size: var(--font-64);
    line-height: 1.25;
    text-transform: uppercase;
    text-align: center;
    color: #001e4a;
    font-family: var(--second-family), sans-serif;
    margin-bottom: 12px;
}

.benefits-box-subtitle {
    font-weight: 300;
    font-size: var(--font-24);
    line-height: 1.5;
    letter-spacing: 0.65em;
    text-transform: uppercase;
    text-align: center;
    color: #001e4a;
    margin-bottom: var(--space-50);
}

.benefits-box-container {
    padding-top: calc(var(--space-40) + var(--space-40) );
    padding-bottom: calc(var(--space-25) + var(--space-30) + var(--space-40));
}

.benefits-box {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.benefit-item {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 5% 66px;
 position: relative;
}


.benefit-item-line {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    right: 0;
    background: rgba(0,0,0,0.1);
    top: 0;
}

.benefits-box-line-1 {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    left: 0;
    background: rgba(0,0,0,0.1);
    top: 0;
}

.benefit-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 500;
    font-size: var(--font-24);
    line-height: 1.66667;
    text-transform: uppercase;
    text-align: center;
    color: #000;
    padding: 0 25%;
    margin-bottom: 28px;
    flex-grow: 1;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gallery-box-container {
    padding-bottom: 0;
}

.page-heading-title {
    font-weight: 500;
    font-size: var(--font-64);
    line-height: 1.25;
    text-transform: uppercase;
    text-align: center;
    color: #001e4a;
    font-family: var(--second-family), sans-serif;
    margin-bottom: var(--space-40);
}

.subpage .offer-box-container {
    padding-top: var(--space-60);
    padding-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: url(../images/offer_sub_top.webp) no-repeat left top, url(../images/offer_sub_bottom.webp) no-repeat left bottom;
    background-size: 100% auto, 100% auto;
}

.subpage .offer-name {
    color: var(--color-default);
}


.subpage .offer-link:before,
.subpage .offer-link:after,
.subpage .offer-item:after,
.subpage .offer-item:before,
.subpage .offer-item:nth-child(3n+1) .offer-item-content:after,
.subpage .offer-item:nth-child(3n+1) .offer-item-content:before,
.subpage .offer-item:nth-child(3) .offer-item-content:before,
.subpage .offer-item:nth-child(3) .offer-item-content:after {
    background: var(--color-default);
}

.subpage .offer-item:hover:after {
    width: 100%;
    background: var(--color-primary);
}

.subpage .offer-item:hover:before {
    height: 100%;
    background: var(--color-primary);
}

.subpage .offer-link:hover:after {
    width: 100%;
    background: var(--color-primary);
}


/****************************************************************/

.subpage .offer-link:hover:before {
    height: calc(100% + 30px) !important;
    background: var(--color-primary) !important;
    z-index: 3;
}

.subpage .offer-item:hover:before {
    height: calc(100% + 30px) !important;
    background: var(--color-primary) !important;
    z-index: 3;
}

.subpage .offer-link:hover:after {
    width: calc(100% + 30px) !important;
    background: var(--color-primary) !important;
    z-index: 3;

}

.subpage .offer-item:hover:after {
    width: calc(100% + 30px) !important;
    background: var(--color-primary) !important;
    z-index: 3;
}

.subpage .text-bottom-container {
    padding-top: calc(var(--space-60) + var(--space-50) );
    background: url(../images/gallery_bottom.webp) no-repeat bottom left / 100% auto;
}

.subpage .offer-box {
    margin-bottom: 0;
}

.text-box-container {
    padding-top: var(--space-60);
    background: url(../images/text_bg.webp) no-repeat top center  / 100%;
}

.details-box-container {
    padding-top: var(--space-60);
    background: url(../images/text_bg.webp) no-repeat top center  / 100%;
}

.article-image-big {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    margin-bottom: 78px;
}

img.article-image-icon {
    position: absolute;
    width: 19%;
}

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

a.article-image-big > img:not(.article-image-icon) {
    min-height: 280px;
    object-fit: cover;
}

a.article-image-big > img.article-image-icon {
    min-width: 100px;
}

span.mask.text-mask {
    background: rgba(0, 30, 74, 0.70);
}

.gallery-picture:after {
    width: 1px;
    height: 100%;
    background: #fff;
    content: '';
    position: absolute;
    display: block;
    right: 0;
    top: 0;
}

.gallery-picture:before {
    width: 100%;
    height: 1px;
    background: #fff;
    content: '';
    position: absolute;
    display: block;
    right: 0;
    bottom: 0;
}

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

.news-photo {
    position: relative;
}

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

span.loupe svg, span.loupe svg * {
    fill: currentColor;
}

.news-link:hover .news-hover {
    opacity: 1;
}

.subpage .news-box-container {
    padding-top: var(--space-60);
    padding-bottom: 0;
    background: url(../images/text_bg.webp) no-repeat top center / 100%;
}

.subpage .news-item:nth-child(3n+1) .news-link {
    flex-direction: column;
}

.subpage .news-item:nth-child(3n+2) .news-link {
    flex-direction: column-reverse;
}

.subpage .news-item:nth-child(3n+3) .news-link {
    flex-direction: column;
}

.subpage .news-item {
    padding: 38px 42px;
}

.subpage .news-box {
    margin: -38px -42px;
    margin-bottom: 2px;
}

.news-box-container + .text-bottom-container {
    padding-top: 25px;
}

.contact-box-container {
    padding-top: var(--space-60);
    background: url(../images/text_bg.webp) no-repeat top center / 100%;
}

.contact-box {
    display: flex;
    padding: 10%;
    padding-top: calc(var(--space-60) + var(--space-50) );
    justify-content: space-between;
    padding-bottom: calc(var(--space-25) + var(--space-40) + var(--space-40));
    position: relative;
}
.contact-data-box {
    display: flex;
    width: 52%;
    position: relative;
}

.contact-data-title {
    font-family: var(--second-family),sans-serif;
    font-weight: 500;
    font-size: var(--font-24);
    line-height: 1.66667;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 27px;
}

.contact-data .text.txt {
    color: #fff;
}

.contact-logo {
    width: 25%;
    position: relative;
}

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

.contact-data {
    width: 50%;
}

.contact-data .contact-link {
    margin-bottom: 10px;
}

.mask.contact-mask {
    background: rgba(0, 30, 74, 0.70) url(../images/contact_mask.webp) no-repeat right top;
}

.form-box-container {
    padding-top: var(--space-60);
    padding-bottom: calc(var(--space-40) + var(--space-40) );
}

.form-box-title {
    font-family: var(--second-family),sans-serif;
    font-weight: 500;
    font-size: var(--font-64);
    line-height: 1.25;
    text-transform: uppercase;
    text-align: center;
    color: #001e4a;
    margin-bottom: 22px;
}

.form-box-wrapper {
    padding: 0 16%;
}

.map-box-container {
    padding-bottom: calc(var(--space-50) + var(--space-50) );
}

.map-box {
    position: relative;
}


.mask.map-mask {
    background: url(../images/map_mask.webp) no-repeat right top;
}

.text-box-container .news-date {
    max-width: 180px;
    margin: 0 auto 30px;
    display: block;
}

.mainpage .news-box-container {

    background: url(../images/gallery_bottom.webp) no-repeat bottom left / 100% auto;
}

.subpage .about-box-title {
    font-size: var(--font-48);
}

.subpage .about-box-subtitle {
    font-size: var(--font-22);
}

article.article .page-heading-title {
    font-size: var(--font-48);
}

@media screen and (min-width: 1140px) {
    .icon-animations svg {
        stroke-dashoffset: 1000;
        stroke-dasharray: 1000;
        opacity: 0;
    }

    .draw-svg svg {
        animation: ease-in-out 1.8s draw-svg forwards;
    }

    @keyframes draw-svg {
        100% {
            stroke-dashoffset: 1000;
            opacity: 0;
        }
        65%{
            opacity: 1;
        }
        100% {
            stroke-dashoffset: 700;
            opacity: 1;
        }
    }
}


