/**
 * GLOBAL VARIABLES
 */
:root {
    /** UNIVERSAL **/
    --space-60: 60px;
    --space-50: 50px;
    --space-40: 40px;
    --space-30: 30px;
    --space-25: 25px;
    --font-48: 48px;
    --font-45: 45px;
    --font-40: 40px;
    --font-36: 36px;
    --font-30: 30px;
    --font-28: 28px;
    --font-26: 26px;
    --font-24: 24px;
    --font-23: 23px;
    --font-22: 22px;
    --font-21: 21px;
    --font-20: 20px;
    --font-19: 19px;
    --font-18: 18px;
    --container-padding: 40px;
    --row-gap: 5px;

    /** SPECIFIC **/
    --color-primary: #00519E;
    --color-secondary: #00ff00;
    --color-default: #656565;
}

body {
    color: var(--color-default);
    font-size: 16px;
    font-family: "Figtree", sans-serif;
    max-width: unset;
}

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

.btn-sm {
    border: 2px 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;
    background: transparent;
    border: transparent;
    padding-left: 0;
    padding-right: 0;
}

.btn.has-icon .btn-icon {
    width: 46px;
    height: 46px;
    padding: 6px;
    border-radius: 50%;
    border: 1px solid transparent;
    margin-left: 20px;
}

.btn.has-icon .btn-icon svg, .btn.has-icon .btn-icon svg * {
    fill: currentColor;
}

.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.has-icon .btn-icon {
    border-color: var(--color-primary);
}


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

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

.btn.btn-default.has-icon .btn-icon {
    border-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: transparent;
    border-color: transparent;
    color: #fff;
}

.btn.btn-white.has-icon .btn-icon {
    border-color: #fff;
    margin-left: 33px;
}

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


    .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: transparent;
        border-color: transparent;
        color: #fff;
    }

    .btn-white:hover .btn-icon {
        background: #fff
    }

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

}


/**
 * 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-36);
    font-weight: 700;
    text-transform: uppercase;
    color: #00519e;
    margin-bottom: 20px;
    line-height: 130%;
}

.text.txt h2 {
    font-size: var(--font-30);
    font-weight: 700;
    text-transform: uppercase;
    color: #00519e;
    margin-bottom: 20px;
    line-height: 130%;
}

.text.txt h3 {
    font-size: var(--font-24);
    font-weight: 700;
    text-transform: uppercase;
    color: #00519e;
    margin-bottom: 20px;
    line-height: 130%;
}

.text.txt h4 {
    font-size: var(--font-20);
    font-weight: 700;
    text-transform: uppercase;
    color: #00519e;
    margin-bottom: 20px;
    line-height: 130%;
}

.text.txt h5 {
    font-size: var(--font-18);
    font-weight: 700;
    text-transform: uppercase;
    color: #00519e;
    margin-bottom: 20px;
}


.text.txt h6 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #00519e;
    margin-bottom: 20px;
    line-height: 130%;
}


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

@media screen and (min-width: 1140px) {
    .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: 3px;
    height: 3px;
    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;
}

@media screen and (min-width: 1140px) {
    .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;
    display: flex;
    justify-content: 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;
}


header.sticky {
    background: url(../images/header_sticky.jpg) no-repeat top center;
    background-size: cover;
}

.no-slider header {
    background: url(../images/header_sticky.jpg) no-repeat top center;
    background-size: cover;
}

.no-slider #page {
    padding-top: 104px;
}

.subpage header {
    /* background: url(../images/header_sticky.jpg) no-repeat top center; */
}

.fixed {
    position: fixed;
}

/*.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: 16px; */
    /* padding-bottom: 16px; */
}

.top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 16px;
    padding-bottom: 16px;
    transition: all 0.2s;
}

header.sticky .top-inner {
    border: 0 none;
    padding-top: 7px;
    padding-bottom: 7px;
}

.top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.logo {
    float: left;
    flex-shrink: 0;
    margin-right: 1.5%;
}

.logo a {
    display: block;
}

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

#main-menu {
    transition: all 300ms ease-out;
    width: 100%;
}

#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;
    font-weight: 400;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
}

#main-menu li a:hover {
    color: #fff;
    transition: -webkit-text-stroke 0.3s;
    -webkit-text-stroke: 0.4px currentColor;
}

#main-menu li.active a {
    color: #fff;
    transition: -webkit-text-stroke 0.3s;
    -webkit-text-stroke: 0.4px currentColor;
}

#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: 18px 0 18px var(--container-padding);
    border: none;
    background: transparent;
}

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


.contact-links {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 25px;
    margin-left: 20px;
}

.contact-links:before {
    content: '';
    width: 1px;
    height: 11px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -6px;
}


.contact-link {
    align-items: center;
    display: flex;
    padding: 10px;
    font-weight: 400;
    font-size: 15px;
    color: #fff;
    margin-left: 8px;
}

.contact-link .btn-icon {
    margin-right: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
}


.contact-links .btn-icon svg, .contact-links .btn-icon svg * {
    fill: #fff;
    width: 15px;
}

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

}

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


.top .contact-links {
    margin-right: 33px;
    padding-right: 41px;
}

.mainsearch.rwdPanel {
    display: block;
    width: 264px;
    flex-shrink: 0;
    padding-top: 0;
}

.contact-links:after {
    content: '';
    width: 1px;
    height: 11px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -6px;
}


.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;
    box-shadow: none;
    background: transparent;
    border: 0 none;
    font-family: "Figtree", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #fff;
}

.mainsearch input.form-control::placeholder {
    color: #fff;
}

.mainsearch-submit {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0;
    border: 0 none;
    background: transparent;
    width: 46px;
    height: 46px;
}

.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 .photo-bg {
    background: #000;
}

footer .photo-bg img {
    opacity: 0.6
}

span.mask.footer-mask {
    background: url(../images/footer_mask.png) no-repeat bottom center / cover;
}

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


.footer-box-container {
    position: relative;
    padding-top: 52px;
}

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

.footer-col-title {
    line-height: 1.63636;
    margin-bottom: 33px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
}


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

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

.footer-box ul li a {
    display: block;
    line-height: 150%;
    font-weight: 400;
    font-size: 16px;
    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;
    max-width: 90%;
    margin: 15px auto 3px;
}

.footer-box .text.txt {
    font-weight: 400;
    font-size: 15px;
    line-height: 2.66667;
    color: #fff;
    margin-top: -8px;
}


.contact-links-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    margin: -12px -10px;
}

.contact-link-bottom {
    display: flex;
    padding: 6px 10px;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    align-items: center;
}

.contact-link-bottom .btn-icon {
    margin-right: 15px;
    position: relative;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    padding: 2px;
    text-align: center;
}


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

}

.contact-link-bottom svg, .contact-link-bottom svg * {
    /* stroke: currentColor; */
    fill: #fff;
}

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

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

    }
}

.footer-data {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 55px;
    align-items: flex-start;
}

.logo-min-box {
    width: 12%;
}

.address-box .text.txt h3 {
    font-weight: 700;
    font-size: var(--font-20);
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
}

.address-box .text.txt {
    color: #fff;
    line-height: 205%;
}

.footer-under-title {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875em; /* 187.5% */
    margin-bottom: calc(var(--space-25) + 8px);
    padding: 0 10px;
    margin-top: 15px;
}

.address-box {
    width: 40%;
}

.footer-menu {
    position: relative;
    width: 40%;
    padding-left: 10.6%;
}

.footer-menu ul {
    columns: 2;
    column-gap: 8em;
    margin-left: var(--space-40);
}

.footer-menu li {
    position: relative;
    margin-bottom: 20px;
}

.footer-title-js i {
    display: none;
}

.footer-menu li a {
    position: relative;
    display: block;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
}

.footer-menu li a:before {
    content: '';
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 7px;
    margin-bottom: 3px;
}

.footer-menu i {
    display: none;
}

@media screen and (min-width: 1140px) {
    .footer-menu li a:hover {
        font-weight: bold;
    }
}

.footer-menu li.active a {
    font-weight: bold;
}


/* FOOTER BAR */
.footer-bar {
    line-height: 30px;
    font-weight: 300;
    font-size: 13px;
    color: #fff;
    position: relative;
}

.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;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 0;
}

.footer-bar-links a {
}

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

@media screen and (min-width: 1140px) {
    .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 {
    font-weight: 600;
    font-size: var(--font-30);
    line-height: 143%;
    text-transform: uppercase;
    text-align: center;
    color: #00519e;
    margin-bottom: var(--space-50);
}

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

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

.form .form-element-name {
    font-style: normal;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 16px;
    color: #00519e;
    font-family: "Figtree", sans-serif;
}


/* INPUTY */
.form-control,
.form .form-control {
    height: 46px;
    box-shadow: 0 0 0 transparent;
    padding-left: 20px;
    padding-right: 20px;
    letter-spacing: 0;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 300;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    font-family: "Figtree", sans-serif;
}

/* 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: 300;
    font-size: 13px;
    line-height: 1.69231;
    color: #656565;
}

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

/* 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 5px 5px 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

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

@media screen and (min-width: 1140px) {
    .form button.captcha-refresh:hover {
        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;
        -o-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;
}

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

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

.form-box-wrapper button.btn.btn-primary.btn-lg {
    background: transparent;
    margin: 0 auto;
    color: #656565;
}

.form-box-wrapper button.btn.btn-primary.btn-lg .btn-icon {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
}

.form-box-wrapper button.btn.btn-primary.btn-lg .btn-icon svg, .form-box-wrapper button.btn.btn-primary.btn-lg .btn-icon svg * {
    fill: #fff
}

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

    .form-box-wrapper button.btn.btn-primary.btn-lg:hover .btn-icon {
        background: #fff
    }

    .form-box-wrapper button.btn.btn-primary.btn-lg:hover .btn-icon svg,
    .form-box-wrapper button.btn.btn-primary.btn-lg:hover .btn-icon svg * {
        fill: var(--color-primary)
    }

}

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

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


/**
 * MAP POINTS
 */

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

.map-point .custom-map-wrapper .point {
    position: absolute;
    width: 28px;
    height: 40px;
    background: transparent url('../images/marker.png') no-repeat scroll center center;
    cursor: pointer;
    -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: 505px;
    border-radius: 20px;
}


/**
 * 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: #fff;
    transition: all .4s ease;
}

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

.animIcon.animIcon--close span:nth-child(1) {
    transform: rotateZ(45deg);
    -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: var(--font-22);
    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: 40px;
    height: 40px;
    border: 1px solid #f0f;
}

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

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

@media screen and (min-width: 1140px) {
    .social:hover .social-icon {
        color: var(--color-primary);
        border-color: var(--color-primary)
    }
}

/**
 * LANGUAGES MENU
 */
.langs-menu {
    position: relative;
    float: right;
    margin: 0 0 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(255, 255, 255, 1);
    background: transparent;
    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;
}

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

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

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

.article-subtitle {
    font-weight: 700;
    font-size: var(--font-30);
    text-transform: uppercase;
    color: #00519e;
    margin-bottom: 22px;
}

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

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

/**
 * GALLERY
 */

.gallery {
    clear: both;
}

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

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

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

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

.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-color: rgba(18, 45, 84, 0.70);
    transition: opacity 0.3s;
    border-radius: 24px;
}

.gallery-picture-hover > * {
    background: url(../images/zoom.png) no-repeat center center;
    text-indent: -20000px;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 67px;
    height: 67px;
    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.png);
}

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-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.png);
    }
}

/**
* PAGINATION
*/

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

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

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

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    color: #000;
    font-size: 13px;
    line-height: 50px;
    padding: 0 11px;
}


.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: #fff;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.2);
}

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

.pagination-wrapper ul li.next a > * {
    text-indent: -20000px;
    width: 100%;
    height: 100%;
    background: url(../images/icons/arrow_right.svg) no-repeat center center;
}

.pagination-wrapper ul li.prev a > * {
    text-indent: -20000px;
    width: 100%;
    height: 100%;
    background: url(../images/icons/arrow_left.svg) no-repeat center center;
}

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

    .pagination-wrapper ul li.next a:hover > * {
        background: url(../images/icons/arrow_right.svg) no-repeat center center / 50%;
    }

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

    .pagination-wrapper ul li.prev a:hover > * {
        background: url(../images/icons/arrow_left.svg) no-repeat center center / 50%;
    }

    .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 {
    position: relative;
    max-height: 750px;
    overflow: hidden;
}

.slider .slider-photo {
    position: relative;
    max-height: 750px;
}

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

.mask.slider-mask {
    background: url(../images/slider_mask2.png) bottom center;
    background-size: cover;
}

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


.slide-box {
    display: flex;
    position: relative;
    align-items: flex-end;
    height: 100%;
    padding-top: 103px;
    justify-content: space-between;
    padding-bottom: calc(var(--space-60) + var(--space-60));
}

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

.slide-left {
    width: 42%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.slide-right {
    width: 32.7%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 24px;
}

.title1 {
    font-weight: 300;
    font-size: 4.688vw;
    text-transform: uppercase;
    color: #fff;
    line-height: 112%;
}

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


.title2 {
    font-style: normal;
    line-height: 118%;
    position: relative;
    margin-bottom: 25px;
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
    font-size: 3.385vw;
}

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

.description {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    color: #fff;
    margin-bottom: var(--space-60);
}


ul.slick-dots {
    max-width: 50px;
    right: 50%;
    margin-right: -821px;
    top: calc(50% - 95px);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
}

ul.slick-dots li {
    display: flex;
    margin: 50px 0;
    transition: all 0.2s;
    justify-content: space-between;
    width: 50px;
}

ul.slick-dots li .slide-nb {
    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
    color: #fff;
}

ul.slick-dots li .slide-triangle {
    background: url(../images/triangle.png) no-repeat center center;
    width: 15px;
    height: 17px;
    display: none
}

ul.slick-dots li.slick-active .slide-nb {
    font-weight: bold
}


ul.slick-dots li.slick-active .slide-triangle {
    display: inline-block
}


.experience-box-container {
    padding-top: var(--space-60);
    padding-bottom: calc(var(--space-30) + 5px);
    background: url(../images/grey_bg.jpg) no-repeat top center / 100% auto;
}

.experience-box-title {
    font-weight: 300;
    font-size: 3.646vw;
    text-transform: uppercase;
    color: #00519e;
    line-height: 120%;
    margin-bottom: var(--space-60);
}

@media screen and (min-width: 1921px) {
    .experience-box-title {
        font-size: 70px
    }
}

.experience-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 26px;
}


.experience-photo img {
    display: block;
    max-width: 100%;
    border-radius: 15px;
}

.experience-text {
    width: 50%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.experience-photo {
    width: 41%;
}

.experience-photo img {
}

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

.experience-item:nth-child(even) .experience-photo {
    width: 45.732%;
}

.experience-item:nth-child(even) .experience-text {
    width: 41%;
}

.text.txt {
    color: var(--color-default);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
}

.experience-text .text.txt {
    margin-bottom: var(--space-60);
}

.benefit-box-title {
    font-weight: 300;
    font-size: 3.646vw;
    text-transform: uppercase;
    color: #00519e;
    line-height: 120%;
    margin-bottom: calc(var(--space-60) + 5px);
}

@media screen and (min-width: 1921px) {
    .benefit-box-title {
        font-size: 70px
    }
}

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

.benefit-left {
    width: 24.3%;
}

.benefit-right {
    width: 66.4%;
    padding-top: calc(var(--space-40) + 5px);
}

.benefits-box-container {
    padding-top: calc(var(--space-40) + 5px);
    padding-bottom: var(--space-60);
    background: #F7F7F7;
}

.benefit-left img {
    display: block;
    max-width: 100%;
    border-radius: 15px;
}

.benefits-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: -45px 0;
}

.benefit-item {
    width: 45%;
    display: flex;
    padding-bottom: calc(var(--space-40) + 5px);
    padding-top: calc(var(--space-40) + 5px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: 39px;
}

.benefit-text {
    font-weight: 400;
    font-size: 16px;
    /* line-height: 30px; */
    line-height: 1.875;
    color: #656565;
    padding-top: 16px;
}

.benefit-text strong {
    font-weight: 700;
    font-size: var(--font-20);
    text-transform: uppercase;
    color: #00519e;
    display: inline-block;
    margin-bottom: 11px;
}

.products-box-title {
    font-weight: 400;
    font-size: var(--font-45);
    text-transform: uppercase;
    color: #00519e;
}

span.mask.offer-big-mask {
    background: url(../images/offer_mask4.png) no-repeat bottom center;
    background-size: 100% 100%;
}

.offer-box-container .photo-bg img {

}

.offer-box-container .photo-bg {
    background: #000;
}

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

.offer-item {
    width: 25%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 14px;
}

.offer-item.offer-item-first {
    width: 50%;
}

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

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

.offer-box-title {
    font-weight: 300;
    font-size: 3.646vw;
    text-transform: uppercase;
    color: #fff;
}

@media screen and (min-width: 1921px) {
    .offer-box-title {
        font-size: 70px
    }
}

.offer-item img {
    display: block;
    max-width: 100%;
    border-radius: 30px;
    transition: all 300ms ease-out;
}

.offer-link {
    display: block;
    position: relative;
}

.offer-link img {
}

.mask.offer-mask {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%);
    border-radius: 30px;
}

.offer-title {
    font-weight: 600;
    font-size: var(--font-20);
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    padding: 40px;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
}

.offer-hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 12%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 300ms ease-out;
}

@media screen and (min-width: 1140px) {
    .offer-link:hover img {
        display: block;
        max-width: 100%;
    }

    .mainpage .offer-link:hover img {
        opacity: 0;
    }
}

.offer-hover .offer-title {
    position: relative;
    padding: 0 !important;
    left: auto;
    right: auto;
    bottom: auto;
    margin-bottom: 22px;
    opacity: 1;
}

.offer-link .text.txt {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.875;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

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

    .offer-link:hover .offer-title {
        opacity: 0;
    }

    .offer-link:hover .offer-hover .offer-title {
        opacity: 1;
    }
}

.industries-box-title {
    font-weight: 300;
    font-size: 3.646vw;
    text-transform: uppercase;
    color: #00519e;
    line-height: 120%;
}

@media screen and (min-width: 1921px) {
    .industries-box-title {
        font-size: 70px
    }
}

.industries-box-container {
    padding-top: var(--space-60);
    padding-bottom: var(--space-30);
    overflow: hidden;
    position: relative;
}

.industries-box-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/offer-mask-12.webp) no-repeat top center / 100% auto;
    filter: grayscale(100%);
    z-index: -1;
}

.industries-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-60);
}

.industries-header img {
    max-width: 41%;
    border-radius: 15px;
}

.industries-box {
    display: flex;
    overflow: hidden;
    flex-wrap: wrap;
    margin: -22px;
}

.industry-item.long-industry-item {
    width: 33.33%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.industry-item {
    width: 16.66%;
    padding: 22px;
}

.industry-item .contact-links {
    margin: 0;
    padding: 0;
}

.industry {
    border-radius: 15px;
    width: 100%;
    background: #f7f7f7;
    padding-bottom: 100%;
    position: relative
}

.industry-item-content {
    position: absolute;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    flex-direction: column;
    width: 100%;
}

.industry-icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
}

.industry-name {
    font-weight: 700;
    font-size: var(--font-18);
    text-transform: uppercase;
    text-align: center;
    color: #00519e;
    display: flex;
    min-height: 44px;
}

.industry-item.first-industry-item.long-industry-item .text.txt {
    padding-right: 10%;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.title-last-child {
    font-weight: 300;
    font-size: var(--font-20);
    text-transform: uppercase;
    color: #00519e;
    text-align: center;
    margin-bottom: 25px;
    line-height: 150%;
}

.industry-item .contact-links {
    color: #fff;
}

.industry-item .contact-link {
    color: var(--color-primary);
}

.industry-item .contact-link {
    font-weight: 700;
    font-size: var(--font-20);
    text-transform: none;
    color: var(--color-primary);
    margin: 3px 12px;
}

.industry-item .contact-link svg, .industry-item .contact-link svg * {
    fill: var(--color-primary);
    stroke: #fff;
    stroke-width: .01;
}

.industry-item .contact-link .btn-icon {
    width: 20px;
    height: 20px;
}

.industry-item .contact-link .btn-icon svg {
    width: 18px;
}

.products-box-container {
    padding-top: calc(var(--space-40) + var(--space-40) + 5px);
    padding-bottom: 0;
    background: #f7f7f7;
}

.box-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-50);
    align-items: center;
}

.slider-navigation {
    display: flex;
    align-items: center;
}

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

.slider-navigation button {
    width: 46px;
    height: 46px;
    margin-left: 10px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    background: #fff;
    padding-left: 9px;
    padding-right: 9px;
}

.slider-nav-box .btn.btn-lg.btn-secondary {
    padding: 0;
    margin-left: 26px;
}

.products-slider {
    width: 91%;
    display: flex;

}

.products-slider .slick-track, .products-slider .slick-list {
    width: 100%;
    display: flex;
}

.products-slider .products-item {
    flex-shrink: 0;
}


.products-slider .slick-track {

}

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

    .mainpage .products-slider .slick-list {
        position: relative;
    }

    .mainpage .products-slider .slick-list::after {
        content: '';
        position: absolute;
        width: 12500px;
        height: 100%;
        left: -12500px;
        top: -10px;
        background: #f7f7f7;
    }
}

.products-slider .slick-list {
    overflow: unset !important;
}


.product-item {
    width: 25%;
    padding: 0 28px;
    margin-bottom: calc(var(--space-60));
}

.product-item.slick-cloned {
    opacity: 1;
    pointer-events: auto;
}

.product-photo {
    width: 90%;
    padding-bottom: 71%;
    position: relative;
    margin: 0 auto 20px;
}

.product-photo img {
    display: block;
    max-width: 100%;
    position: absolute;
    max-height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.product-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 0 36px;
    flex-grow: 1;
}


.product-name {
    line-height: 1.5;
    font-weight: 700;
    font-size: var(--font-20);
    text-transform: uppercase;
    color: #00519e;
    text-align: center;
    margin-bottom: 17px;
}

.products-slider-wrapper {
    margin: 0 -28px;
}

.product-link {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    box-shadow: 1px 2px 5px 0 rgba(0, 0, 0, 0.1), 6px 7px 9px 0 rgba(0, 0, 0, 0.09), 13px 16px 12px 0 rgba(0, 0, 0, 0.05), 23px 28px 14px 0 rgba(0, 0, 0, 0.01), 36px 44px 16px 0 rgba(0, 0, 0, 0);
    background: #fff;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    height: 100%;
    padding-bottom: calc(var(--space-30) + 5px);
    position: relative;
}


.product-desk {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    text-align: center;
    color: #656565;
}

.product-content-inner {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

@media screen and (min-width: 1140px) {
    .btn.btn-lg.btn-default.has-icon:hover {
        background: transparent;
    }

    .btn.btn-lg.btn-default.has-icon:hover .btn-icon {
        background: var(--color-default);
    }

    .btn.btn-lg.btn-default.has-icon:hover .btn-icon svg,
    .btn.btn-lg.btn-default.has-icon:hover .btn-icon svg * {
        fill: #fff;
    }

    .product-link:hover .btn.btn-lg.btn-default.has-icon .btn-icon {
        background: var(--color-default);
    }

    .product-link:hover .btn.btn-lg.btn-default.has-icon .btn-icon svg,
    .product-link:hover .btn.btn-lg.btn-default.has-icon .btn-icon svg * {
        fill: #fff;
    }

    .product-link:hover {
        border-color: var(--color-primary);
    }
}

.product-link:after {
    border-radius: 14px;
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-primary);
    content: '';
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

@media screen and (min-width: 1140px) {
    .product-link:hover:after {
        opacity: 1
    }

}

.grid-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(var(--space-40) + var(--space-40) + 5px);
}

.grid-photo {
    width: 49.2%;
}

.grid-photo img {
    display: block;
    max-width: 100%;
    border-radius: 15px;
}

.grid-text {
    width: 41%;
    padding: 0;
}

.grid-text .text.txt h3 {
    font-weight: 300;
    font-size: var(--font-30);
    text-transform: uppercase;
    color: #00519e;
    margin-bottom: var(--space-30);
}

.grid-text .text.txt {
    margin-bottom: 0;
}

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


.grid-box-container {
    padding-top: calc(var(--space-40) + var(--space-50));
    background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
}

.grid-item:last-child {
    margin-bottom: var(--space-60);
}

.page-heading-title {
    font-weight: 700;
    font-size: var(--font-45);
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding-top: 103px;
}

.knowledge-box-container {
    padding-top: var(--space-50);
}

.knowledge-top {
    position: relative;
    background: url(../images/know.jpg) no-repeat top center;
    border-radius: 15px;
    width: 100%;
    padding-bottom: 14.707%;
}

.knowledge-top img {
    display: block;
    max-width: 100%;
    border-radius: 15px;
    display: none;
}

.knowledge-title {
    font-weight: 700;
    font-size: var(--font-30);
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

span.mask.knowledge-mask {
    background: linear-gradient(0deg, rgba(0, 49, 96, 0.60) 0%, rgba(0, 49, 96, 0.60) 100%);
    border-radius: 15px;
}


.accordion {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.accordion-content .text.txt {
    margin-bottom: 0;
}

.accordion .gallery-list-item {
    width: 33.33%;
}


.accordion-box {
    max-width: 1360px;
    margin: 0 auto;
}

.accordion-header-content {
    clear: both;
    margin: 0 auto;
    width: auto;
    position: relative;
    background: transparent;
    display: flex;
    align-items: center;
    padding: 17px 90px 17px 20px;
    cursor: pointer;
}

.accordion-name {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 10px 0 10px;
    font-size: var(--font-18);
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    color: rgb(0, 81, 158);
}

.accordion-arrow {
    text-align: center;
    transition: all 300ms ease-out;
    position: absolute;
    top: 50%;
    margin-top: -23px;
    right: 27px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #656565;
    border-radius: 50%;
}

.accordion-header.active .accordion-arrow {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
}

@media screen and (min-width: 1140px) {
    .accordion-header:hover .accordion-arrow {
        transform: rotate(180deg);
        -ms-transform: rotate(180deg);
    }

    .accordion-header:hover .accordion-name {
        color: #000;
    }
}

.accordion-content {
    display: none;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding: 40px 70px 40px 20px;
}

.accordion-header.active .accordion-name {
    color: #000;
}

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

.contact-box-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: calc(var(--space-40) + 5px);
    padding-top: 8px;
}

.contact-left {
    width: 48.6%;
    display: flex;
    flex-direction: column;
    padding: 25px 35px;
    background: url(../images/contact_left.jpg) no-repeat top center / cover;
    border-radius: 20px;
}

.contact-right {
    width: 48.6%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    padding: 28px 40px;
    flex-direction: column;
    background: #fff;
}

.form-element-container.form-element-captcha-container {
    margin-bottom: -10px;
}

.contact-right-text .text.txt {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    color: #00519e;
}

.contact-right-icon svg {
    max-width: 46%;
}

.contact-address-box {
    margin-bottom: 22px;
}

.contact-left .contact-links:before {
    display: none;
}

.contact-left-bottom {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    color: #fff;
}

.contact-right-title {
    font-weight: 600;
    font-size: var(--font-30);
    text-transform: uppercase;
    color: #00519e;
    margin-bottom: 20px;
}

.content-right-item {
    display: flex;
    justify-content: space-between;
}

.contact-right-text {
    width: 56%;
}

.contact-right-icon {
    width: 43%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

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

.contact-right-icon svg {
    max-width: 46%;
}

.contact-address-box .text.txt h3 {
    font-weight: 700;
    font-size: var(--font-18);
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0;
}

.contact-left .text.txt {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    color: #fff;
}

.contact-left .contact-links:before {
    display: none;
}

.contact-left .contact-links {
    padding: 0;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 0 23px;
}

.contact-left .contact-link {
    margin-left: -10px;
    margin-right: 10px;
    justify-content: space-between;
}

.contact-box-links {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 14% 35px 35px;
    background: #ffff;
}

.contact-data-title {
    font-weight: 700;
    font-size: 16px;
    color: #00519e;
    margin-bottom: var(--space-30);
}

.contact-data .contact-links {
    flex-direction: column;
    padding: 0;
    margin: 0;
    align-items: flex-start;
}

.contact-data .contact-link {
    font-weight: 400;
    font-size: 16px;
    color: #00519e;
    padding: 0;
    margin: 0 0 13px;
}

.contact-data .contact-link svg, .contact-data .contact-link svg * {
    fill: var(--color-primary);
}

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

.form-box-wrapper {
    max-width: 1090px;
    margin: 0 auto;
}

.map-box-container {
    margin-bottom: var(--space-60);
}

.subpage .knowledge-box-container {
    padding-top: 0;
}


.page-box-header {
    position: relative;
    margin-bottom: calc(var(--space-30) + 5px);
}

.page-box-header img {
    display: block;
    position: relative;
    margin: 0 auto;
}

.page-box-header img {
    display: block;
    position: relative;
    margin: 0 auto;
    max-width: 100%;
}

.mask.top-mask {
    background: url(../images/top_mask.png) no-repeat top center;
    background-size: cover;
}

.white-box-special {
    width: 100%;
    margin-top: var(--space-60);
}

.knowledge-box:last-child {
    margin-bottom: var(--space-50);
}

.subpage .offer-box-container {
    padding-top: 0;
    padding-bottom: calc(var(--space-40) + var(--space-40));
}

.offer-sub-box {
    display: flex;
    flex-wrap: wrap;
    padding-top: var(--space-50);
    margin: -43px -43px;
}

.offer-sub-item {
    width: 50%;
    padding: 43px 43px;
}


.offer-sub-item .mask.offer-mask {
    border-radius: 36px;
    transition: all 300ms ease-out;
}

.offer-sub-item img {
    border-radius: 36px;
    display: block;
    max-width: 100%;
    width: 100%;
}

.offer-sub-item .offer-title {
    font-weight: 600;
    font-size: var(--font-28);
    line-height: 1.28751;
    text-transform: uppercase;
    color: #fff;
    padding-right: 32%;
}

.offer-sub-item .offer-hover {
    padding: 57px 50px;
}

.offer-sub-item .text.txt {
    font-weight: 400;
    font-size: var(--font-20);
    line-height: 1.80251;
    padding-right: 10%;
}

.offer-sub-item .btn.btn-lg {
    font-size: var(--font-18);
}

.offer-sub-item .btn.has-icon .btn-icon {
    width: 55px;
    height: 55px;
    margin-left: 26px;
}

.offer-sub-item .mask.offer-mask {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%);
}

@media screen and (min-width: 1140px) {
    .offer-sub-item .offer-link:hover .mask.offer-mask {
        background: url(../images/offer_mask2.png) no-repeat center center /100% 100%;
    }
}

.submenu > ul > li > a {
    display: flex;
    font-weight: 700;
    font-size: var(--font-20);
    line-height: 1.5;
    text-transform: uppercase;
    color: #00519e;
    align-items: center;
}

.content-box {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}

.submenu ul ul li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.375;
    color: #656565;
    min-height: 60px;
    display: flex;
    align-items: center;
    padding: 5px 57px 5px 19px;
}

.content-left {
    width: 19.1%;
}

.content-main {
    width: 75%;
}

.submenu-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.submenu-caption {
    line-height: 1.2;
}

.submenu > ul ul {
    padding-top: calc(var(--font-30) + 5px);
    padding-bottom: 18px;
}

.submenu ul ul li.active a {
    color: #fff;
    background: var(--color-primary);
    border-radius: 10px;
}

.submenu ul ul li a:hover {
    color: #fff;
    background: var(--color-primary);
    border-radius: 10px;
}

.submenu ul ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
}

.submenu ul ul li:hover {
    border-color: #fff
}

.submenu ul ul li:hover:after {
    width: 100%;
    height: 1px;
    content: '';
    position: absolute;
    background: #fff;
    top: -1px
}

.submenu ul ul li.active:after {
    width: 100%;
    height: 1px;
    content: '';
    position: absolute;
    background: #fff;
    top: -1px
}

.submenu ul ul li.active {
    border-color: #fff
}

.submenu > ul > li {
    margin-bottom: calc(var(--space-30) + 5px);
}

.category-title {
    font-weight: 700;
    font-size: var(--font-30);
    text-transform: uppercase;
    color: #00519e;
    margin-bottom: 22px;
}

.category-title:only-child {
    margin-bottom: 0;
}

.category-info {
    padding: 42px 37px;
    background: url(../images/category_bg.jpg) no-repeat top center / cover;
    margin-bottom: var(--space-30);
    border-radius: 15px;
}

.products-list {
    display: flex;
    margin: -15px;
    flex-wrap: wrap;
    padding-bottom: var(--space-30);
}

.products-list .product-item {
    width: 33.33%;
    padding: 15px;
    margin-bottom: 0;
}

.products-list .product-link {
    padding-top: var(--space-30);
    padding-bottom: 20px;
}


.products-list .product-photo {
    padding-bottom: 56%;
    margin-bottom: calc(var(--space-30) + 5px);
}

.products-list .product-content {
    align-items: flex-start;
    padding: 0 31px;
}

.products-list .product-name {
    text-align: left;
    margin-bottom: 16px;
    word-break: break-word;
}

.products-list .product-desk {
    text-align: left;
    line-height: 146%;
}


.products-list .btn.has-icon {
    font-size: 13px;
}

.products-list .btn.has-icon .btn-icon {
    margin-left: 18px;
    width: 36px;
    height: 36px;
    padding: 0;
}

.products-list .btn.has-icon .btn-icon svg {
    width: 9px;
}

.list-box-container {
    padding-bottom: 20px;
}

.product-details-container {
    padding-top: 104px;
    background: #F7F7F7 url(../images/header_sticky.jpg) no-repeat top center;
    padding-bottom: calc(var(--space-60) + 5px);
}

.product-submenu-box {
    position: relative;
    width: 100%;
    background: #fff;
    z-index: 1;
}

.product-submenu {
    display: flex;
    justify-content: space-between;
    width: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 2px solid rgba(0,0,0,0.15);
}


body:has(header.sticky) .product-submenu {
    margin: -20px auto;
}

.product-submenu-inner {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
}

.product-submenu-inner ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.product-submenu-inner ul li a {
    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
    color: #00519e;
}

@media screen and (min-width: 1140px) {
    .product-submenu-inner ul li a:hover {
        font-weight: 600;
    }
}

.product-submenu-inner ul li:before {
    width: 1px;
    height: 16px;
    background: var(--color-primary);
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -8px;
}

.product-submenu-inner ul li {
    position: relative;
    padding-left: 10px;
    margin-left: 10px;
}

.btn.has-icon.btn-back .btn-icon {
    margin-left: 0;
    margin-right: 20px;
}

.product-details {
    padding-top: calc(var(--space-60) + var(--space-60));
    display: flex;
    justify-content: space-between;
}

.product-left {
    width: 48.7%;
}

.product-right {
    width: 48.2%;
}

.white-box {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    background: #fff;
    padding: 40px 38px 34px;
    margin-bottom: var(--space-60);
}

.product-details-container .white-box{
    margin-bottom: var(--space-40);
}
.product-details-container .white-box-special{
    margin-top: var(--space-40);
}

.product-title {
    font-weight: 700;
    font-size: var(--font-30);
    text-transform: uppercase;
    color: #00519e;
    margin-bottom: calc(var(--space-30) + 5px);
}

.question-title {
    font-weight: 300;
    font-size: var(--font-21);
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 6px;
}

.question-subtitle {
    font-size: var(--font-21);
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px;
    margin-right: 8px;
}

.question-box {
    display: flex;
    justify-content: space-between;
    padding: 42px 44px;
    align-items: center;
    background: url(../images/question.jpg) no-repeat top center / cover;
    border-radius: 20px;
    margin-bottom: var(--space-60);
}

.question-box .contact-link {
    font-weight: 700;
    font-size: var(--font-23);
    text-transform: uppercase;
    color: #fff;
    margin-left: 0;
    padding: 0;
}

.question-box .contact-link .btn-icon {
    margin-right: 25px;
}

.question-box .btn {
    background: #fff;
    border-radius: 10px;
    color: var(--color-primary);
    padding: 0 17px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    height: 50px;
    line-height: 48px;
    border-color: #fff;
}

.box-title {
    font-weight: 700;
    font-size: var(--font-22);
    text-transform: uppercase;
    color: #00519e;
    margin-bottom: 23px;
}

.product-img-wrapper {
    width: 100%;
}

.product-img-wrapper {
    width: 100%;
}


.slider-for {
    padding: 0;
    margin-bottom: 10px;
    width: 100%;
}

.slider-for .slide a {
    display: flex;
    position: relative;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    background: #fff;
    max-height: 630px;
    overflow: hidden;
}

.slider-nav .slide {
    margin: 0 5px;
}

.slider-nav .slide span {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 13px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #fff;
}

.slider-nav img {
    display: block;
    max-width: 95%;
    position: absolute;
    max-height: 90%;
}

.slider-for img {
    display: block;
    margin: 0 auto;
    position: absolute;
    max-width: 95%;
    max-height: 95%;
}

.slider-nav button.slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 9;
    background: #fff;
    font-size: 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
    width: 48px;
    height: 48px;
    line-height: 46px;
    border-radius: 50%;
    margin-top: -24px;
}

.slider-nav button.slick-prev.slick-arrow:after {
    color: #000;
    content: "\f104";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: var(--font-20);
    padding-top: 12px;
}

.slider-nav button.slick-next.slick-arrow:after {
    color: #000;
    content: "\f105";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: var(--font-20);
    padding-top: 12px;
}

.slider-nav button.slick-prev {
    left: 23px;
}

.slider-nav button.slick-next {
    right: 20px;
}

.slider-nav {
    margin-left: -5px;
}

.slider-nav span:after {

    padding-bottom: 97%;
    display: block;
    position: relative;
    content: '';
}

.white-box-special-two {
    display: none;
}

.slider-for .slick-slide.slide a:after {
    padding-bottom: 95%;
    display: block;
    position: relative;
    content: '';
}


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

    .slider-nav button.slick-arrow:hover {
        background: var(--color-primary);
        border-color: var(--color-primary);
    }

    .slider-nav .slick-slide.slide span:hover {
        border-color: var(--color-primary);
        cursor: pointer;
    }

    .slider-nav button.slick-arrow:hover:after {
        color: #fff
    }
}

.white-box .grid-box {
    padding-top: 20px;
}

.white-box .grid-photo {
    width: 45.8%;
}

.white-box .grid-text {
    width: 48%;
}

.white-box .grid-item {
    margin-bottom: var(--space-50);
}

.white-box .grid-photo img {
    border-radius: 20px;
}

.white-box .grid-item:last-child {
    margin-bottom: 10px;
}

.variant-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.variant-photo {
    width: 40%;
}

.variant-photo img {
    display: block;
    border-radius: 20px;
    max-width: 100%;
}

.variant-text {
    width: 47.3%;
}

.variant-title {
    font-size: var(--font-20);
    color: #00519e;
    margin-bottom: calc(var(--space-30) + 5px);
}

.variant-title strong {
    text-transform: uppercase;
}

.variants-box {
    padding-top: 15px;
}

.variant-item:last-child {
    margin-bottom: 15px;
}

.data-box table {
    width: 100%;
    margin: 0 0 11px;
}

.data-box .text.txt th {
    font-size: 16px;
    line-height: 1.875;
    text-align: center;
    color: #1f4e88;
    font-weight: bold;
    padding: 10px;
}

.data-box .text.txt td {
    font-size: 16px;
    line-height: 1.875;
    text-align: center;
    color: #1f4e88;
    border: 0 none;
    padding: 10px;
}

.data-box {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.options-box {
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    margin: -30px;
    flex-wrap: wrap;
}

.option-item {
    width: 50%;
    display: flex;
    justify-content: space-between;
    padding: 30px;
}

.option-photo img {
    display: block;
    max-width: 100%;
    border-radius: 19px;
}

.option-photo {
    width: 35%;
}

.option-item .text.txt {
    width: 58%;
}

.white-box .gallery {
    padding-top: 22px;
    padding-bottom: 10px;
}

.files-list {
    padding-top: 22px;
}

.files-list ul {
    display: flex;
    flex-wrap: wrap;
    margin: -20px;
}

.files-list ul li {
    width: 50%;
    padding: 20px;
}

.files-list ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 28px 50px 28px 40px;
    position: relative;
}


.files-list ul li .file-name-box {
    display: flex;
    padding-right: 20px;
    align-items: center;
}

.files-list ul li .file-name {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    color: #656565;
}

.file-name-box .icon-file {
    width: 35px;
    height: 35px;
    margin-right: 33px;
    flex-shrink: 0;
}


.files-list ul li .file-download {
    border: 0 none;
    border-radius: 0;
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.files-list ul li .file-download svg * {
    fill: var(--color-primary);
}

.files-list ul li a:after {
    border-radius: 20px;
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-primary);
    content: '';
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}


@media screen and (min-width: 1140px) {
    .files-list ul li a:hover:after {
        opacity: 1
    }

    .files-list ul li a:hover {
        border-color: var(--color-primary);
    }
}

.product-details-container .buttons-center {
    padding-top: 15px;
}

.other-box-container {
    padding-top: var(--space-50);
    padding-bottom: var(--space-40);
}

.other-box-container .products-box-title {
    font-weight: 700;
    font-size: var(--font-30);
    text-transform: uppercase;

    color: #00519e;
    line-height: 168%;
}

.other-box-container {
    padding-top: var(--space-50);
    padding-bottom: var(--space-30);
}

.other-box-container .products-slider {
    width: 100%;

}

.other-box-container .product-item {
    padding: 0 8px;
}

.other-box-container .products-slider-wrapper {
    margin: 0 -8px;

}

.other-box-container .product-link {
    box-shadow: 5px 4px 10px 0 rgba(0, 0, 0, 0.1);
}

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

.page-box-content .offer-box {
    padding-top: 20px;
    margin: -25px;
}

.page-box-content .offer-item {
    width: 33.33%;
    padding: 25px;
}

.page-box-content .offer-box .offer-title {
    font-weight: 600;
    font-size: var(--font-26);
    line-height: 1.18182;
    text-transform: uppercase;
    color: #fff;
    padding: 0 50px;
    min-height: 93px;
    display: flex;
    align-items: center;
    bottom: 40px;
}

.page-box-content .offer-box .offer-hover .offer-title {
    padding: 0;
    margin-bottom: var(--space-30);
    bottom: auto;
    height: auto;
}

.page-box-content .offer-box .offer-hover {
    padding: 42px 50px 67px;
    background: url(../images/service_mask.jpg) no-repeat top center / cover;
}

.page-box-content .offer-box .offer-link .text.txt {
    font-weight: 400;
    font-size: var(--font-19);
    /* line-height: 31px; */
    line-height: 1.625;
    color: #fff;
}

.page-box-content .offer-box .btn.btn-lg.btn-white.has-icon {
    font-size: var(--font-21);
}

.page-box-content .offer-box .btn.has-icon .btn-icon {
    width: 65px;
    height: 65px;
}

.page-box-content .offer-box .btn.has-icon .btn-icon svg {
    width: 15px;
}

.article-content {
    padding-top: var(--space-50);
    padding-bottom: var(--space-30);
}

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

.rodo-container {
    padding-bottom: calc(var(--space-50));
}

.about-box-container .grid-box {
    padding-top: 20px;
}

.benefits-sub-box-wrapper {
    display: flex;
    justify-content: space-between;
    padding-top: 22px;
    padding-bottom: calc(var(--font-40) + var(--space-30));
}

.benefits-sub-box-wrapper .benefit-left {
    width: 20%;
}

.benefits-sub-box-wrapper .benefit-right {
    width: 66.6%;
    padding-top: 15px;
}

.benefits-sub-box-wrapper .benefit-box-title {
    font-weight: 400;
    font-size: var(--font-45);
    text-transform: uppercase;
    color: #00519e;
    margin-bottom: calc(var(--space-50) + var(--space-50));
}

.about-data {
    display: flex;
    justify-content: space-between;
    padding: 50px 70px;
    background: url(../images/about_bg.jpg) no-repeat top center / cover;
    border-radius: 15px;
    margin-bottom: calc(var(--font-40) + var(--space-30));
}

.about-data .text.txt {
    font-size: var(--font-20);
    line-height: 2;
    color: #fff;
}

.about-data.text.txt h3 {
    font-weight: 700;
    font-size: var(--font-22);
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 6px;
}

.about-data .text.txt h3 {
    font-weight: 700;
    font-size: var(--font-22);
    color: #fff;
    margin-bottom: 12px;
}

.about-left {
    width: 50%;
}

.about-right {
    width: 41%;
}

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

.awards-box-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.awards-title {
    font-weight: 400;
    font-size: var(--font-45);
    text-transform: uppercase;
    color: #00519e;
    margin-bottom: var(--space-50);
}

.awards-text {
    width: 41%;
    padding-top: var(--space-30);
}

.awards-box {
    width: 45.8%;
    display: flex;
    flex-wrap: wrap;
    margin: -20px;
}

.awards-box-container {
    padding-top: calc(var(--space-40) + var(--space-50));
    padding-bottom: calc(var(--space-40) + var(--space-50));
    background: #f7f7f7;
}

.award-item {
    width: 50%;
    padding: 20px;
}

.award-item-inner {
    width: 100%;
    height: 134px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 15px;
}

.award-item-inner img {
    display: block;
    max-width: 70%;
}

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

.chose-box {
    display: flex;
    flex-wrap: wrap;
    margin: -11px;
}

.chose-item {
    width: 14.28%;
    padding: 11px;
}

.chose-item.chose-item-first {
    width: 42.84%;
}

.chose-title {
    font-weight: 400;
    font-size: var(--font-45);
    text-transform: uppercase;
    color: #00519e;
}

.chose-item-content {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    position: relative;
}

.chose-item.chose-item-first .chose-item-content {
    border: 0 none;
    justify-content: flex-start;
    height: 100%;
}

.chose-item-content:after {
    width: 100%;
    padding-bottom: 100%;
    display: block;
    content: '';
}

.chose-item-content img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 300ms ease-out;
    max-width: 70%;
    max-height: 70%;
}

.chose-item.chose-item-first .chose-item-content:after {
    display: none;
}

@media screen and (min-width: 1140px) {
    .chose-item-content:hover img {
        opacity: 1;
        filter: grayscale(0%);
    }
}

.about-box-container .page-box-content {
    padding-top: calc(var(--space-30) + 5px);
    background: url(../images/grey_bg.jpg) no-repeat top center;
}

.about-box-container .page-box-header {
    margin-bottom: 0;
}

.select-mobile-container {
    display: none;
}

article.article:only-child .article-content {
    padding-bottom: 0;
}

article.article:only-child .article-content .article-text.text.txt {
    margin-bottom: 0;
}


.error-template {
    padding-bottom: calc(var(--space-40) + var(--space-40)) !important;
    padding-top: 0 !important;
    margin-top: calc(-1 * (var(--space-30) + 5px));
}

.error-template h2 {
    font-weight: 600;
    font-size: var(--font-30);
    text-transform: uppercase;
    color: #00519e;
    margin-bottom: 20px;
}

.container.container-search {
    padding-bottom: calc(var(--space-40) + var(--space-40));
    margin-top: calc(-1 * var(--space-30) + 5px);
    margin-bottom: 0;
}

.media-heading a:hover {
    color: #000;
}

.result-list .media {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    margin-top: -1px !important;
}


.media-body h6 {
    font-size: 14px;
    margin-bottom: 15px;
}

.media-heading {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: var(--font-26);
    margin-bottom: 0px;
}

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

.ui-menu .ui-menu-item-wrapper {
    position: relative;
    padding: 3px 1em 3px .4em;
    border: 1px solid #fff;
    margin: 0 !important;
}

.ui-menu .ui-menu-item-wrapper:hover, .ui-menu .ui-menu-item-wrapper.ui-state-active {
    background: var(--color-primary) !important;
    color: #fff !important;
}

.ui-widget.ui-widget-content {
    white-space: normal;
    border: 1px solid #c5c5c5;
    left: auto !important;
    right: 0;
    border-radius: 0;
    top: 72px !important;
    padding: 0;
    width: 264px !important;
}

header.sticky .ui-widget.ui-widget-content {
    top: 62px !important;
}

.ui-widget.ui-widget-content a {
    white-space: normal
}

.products-slider .slick-track {
    margin-left: 0;
}


.mainsearch .alert-block {
    position: absolute;
    bottom: -19px;
    left: 14px;
    right: 0;
    white-space: nowrap;
}

.slider-navigation button:hover {
    border-color: var(--color-primary);
}

.ui-widget.ui-widget-content a {
    white-space: normal;
    font-size: 14px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: var(--color-primary);
}

.product-submenu-inner ul li.active a {
    font-weight: 600;
}


.about-box-container + .page-box-content {
    background: url(../images/about_bg2.jpg) no-repeat top center;
    background-size: cover;
    margin-top: calc(-1 * (var(--font-40) + var(--space-30)));
    padding-top: calc(var(--font-40) + var(--space-30));
}

.contact-box-container .page-box-content-wrapper {
    background: url() no-repeat top center;
    margin-top: calc(-1 * (var(--font-30) + 5px));
    padding-top: calc((var(--font-30) + 5px));
}

.about-data .col-xs-6:nth-child(even) {
    width: 41%;
    margin: 0;
}

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

.contact-background {
    position: absolute;
    right: 0;
    top: 0;
    filter: grayscale(1);
    z-index: -1;
}

.about-data .row {
    justify-content: space-between;
}

.about-data .col-xs-6:nth-child(odd) {
    width: 50%;
    margin: 0;
}

.about-data .row:before {
    display: none;
}

.about-data .row:after {
    display: none;
}

.product-submenu-inner ul li:first-child:before {
    display: none;
}


.form-group-lg .form-element.has-feedback .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 16px;
}

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

.contact-data .contact-link .caption {
    color: var(--color-primary);
}

.product-submenu-inner ul li a.active {
    font-weight: bold;
}

header .form .alert-block .error {
    color: red !important;
}

.rwdPanel .contact-links {
    display: none;
}

.slider-for {
    flex-shrink: 0;
    width: 100%;
}

.slider-for a, .slider-for img {
    display: block;
    position: static;
    width: 100%;
}

.slider-for:not(.slick-initialized) .slide a {
    width: 100%;
    height: 100%;
}

.slider-for:not(.slick-initialized) .slide {
    aspect-ratio: 1;

}

.slider-for:not(.slick-initialized) {
    overflow: hidden;
    display: flex;
}

.slider-nav a, .slider-nav img {
    display: block;
    position: static;
}

.slider-nav:not(.slick-initialized) .slide {
    width: 33.333333%;
    aspect-ratio: 1;
    flex-shrink: 0;
}

.slider-nav:not(.slick-initialized) {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.triangle-decoration {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}

.slide-box {
    max-height: 836px;
}

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

@media screen and (min-width: 2222px) {
    ul.slick-dots {
        top: 25%;
    }
}

.page-box-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*header.sticky*/

.content-box .submenu li:not(.active) ul{
    display: none;
}

body:has(.product-details-container) header:not(.sticky){
    background: url(../images/header_sticky.jpg) no-repeat top center;
    background-size: cover;
}