/**
 * GLOBAL VARIABLES
 */
:root {
    /** UNIVERSAL **/

    --space-110: 110px;
    --space-100: 100px;
    --space-90: 90px;
    --space-80: 80px;
    --space-75: 75px;
    --space-70: 70px;
    --space-60: 60px;
    --space-50: 50px;
    --space-40: 40px;
    --space-25: 25px;

    --font-60: 60px;
    --font-56: 56px;
    --font-48: 48px;
    --font-46: 46px;
    --font-40: 40px;
    --font-36: 36px;
    --font-32: 32px;
    --font-30: 30px;
    --font-24: 24px;
    --font-21: 21px;
    --font-20: 20px;
    --font-18: 18px;

    --container-padding: 40px;

    --row-gap: 15px;

    /** SPECIFIC **/
    --color-primary: #1b75bc;
    --color-secondary: #0b2645;
    --color-tertiary: #e22e2e;
    --color-default: #333;
}

body {
    color: #343434;
    font-size: 18px;
    font-family: 'Red Hat Display', sans-serif;
    background: url(../images/body_bg.jpg) repeat center top;
    max-width: none;
}

body.subpage {

    background-position-y: min(390px, 21.5vw);
}


.rjs-cursor {
    width: 10px;
    height: 10px;
    position: fixed; /* Fixed position.. */
    top: 0; /* at the top left.. */
    left: 0;
    z-index: 999999; /* above everything else. */
    pointer-events: none; /* Cant't be clicked. */
    transition: none; /* Cursor is always accurate */
    opacity: 0; /* Hidden by default */
    transform: translate(-50%, -50%);
}


.rjs-cursor-icon { /* Styling for the visible part */
    width: 100%;
    height: 100%;
    border-radius: 100%; /* Circle */
    background-color: rgba(123, 123, 123, 0.7); /* Backup value */
    transition: all 0.2s ease;
    transform-origin: 50% 50%;
}

.rjs-cursor.rjs_cursor_visible {
    opacity: 1;
}

.rjs-cursor.rjs_cursor_hidden {
    opacity: 0;
}

/* Display the cursors at the correct time */

* {
    cursor: none;
}

button, html input[type=button], input[type=reset], input[type=submit] {
    cursor: none;
}

@media (pointer: none), (pointer: coarse) {
    #rjs_cursor, #rjs_cursor .rjs-cursor-icon {
        display: none !important;
        visibility: hidden;
        opacity: 0;
    }

    * {
        cursor: auto !important;
    }
}


/* Hover effects */
.rjs-cursor-icon {
    background-color: var(--color-tertiary);
}

.rjs-cursor-icon::after {
    content: '';
    position: absolute;
    border: var(--color-tertiary) 1px solid;
    border-radius: 100%;
    display: inline-block;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: all 0.3s;
}


.rjs-cursor.rjs_cursor_hover .rjs-cursor-icon::after {
    transform: translateX(-50%) translateY(-50%) scale(1.3);
}


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

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

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


/**
 * PAGE
 */

#page,
#content {
    overflow: hidden;
}



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

.container--noClear {
    clear: none;
}

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

/**
 * THEMES
 */

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

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

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

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

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

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

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

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

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

/**
 * BUTTONS
 */

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

.btn.btn-lg {
    border: 1px solid;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0 30px;
    height: 46px;
    line-height: 44px;
    border-radius: 25px;
    letter-spacing: 0.02em;
}

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


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

.panel {
    box-shadow: none;
}

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

.row {
    margin-left: calc(-1 * var(--row-gap));
    margin-right: calc(-1 * var(--row-gap));
    display: flex;
    flex-wrap: wrap;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7,
.col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5,
.col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3,
.col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12,
.col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    padding-left: var(--row-gap);
    padding-right: var(--row-gap);
}

.modal-footer[style="display: block;"] {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.modal-footer:after, .modal-footer:before {
    content: none;
}

/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: var(--font-18);
    line-height: 32px;
    color: #343434;
    font-weight: 500;
}

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

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

.text ul > li::before {
    content: "";
    display: inline-block;
    left: -30px;
    margin-left: -15px;
    font-family: sans-serif;
    position: relative;
    top: -1px;
    background-color: transparent;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    border: 2px solid #16478a;
}

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

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

div#container-page {
    overflow: hidden;
    margin: 0 auto;
}

/**
 * HEADER
 */

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.761);
}

.header-top {
    background-color: #508cca;
}

.header-top-inner {
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
}


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

.contact-item {
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
    padding-right: 110px;
    position: relative;
}

.contact-item a {
    color: #fff;
}


.contact-item:after {
    width: 1px;
    height: 10px;
    content: '';
    background: #fff;
    display: block;
    position: absolute;
    right: 55px;
    top: 50%;
    margin-top: -5px;
}

.contact-item:last-child:after {
    display: none;
}

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

.top {
    padding-top: 17px;
    padding-bottom: 17px;
}

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

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

.logo {
    float: none;
}

.logo a {
    display: block;
    margin-top: -43px;
    margin-bottom: -43px;
    margin-left: -50px;
}

.logo a img {
    display: block;
    max-width: 100%;
    transition: all 300ms ease-out;
    height: 152px;
}

.logo a img.logo-menu {
    opacity: 0;
    height: 0;
}

.rwdPanel-scrollLock .logo a img {
    opacity: 0;
    height: 0;
}

.rwdPanel-scrollLock .logo a img.logo-menu {
    opacity: 1;
    height: 53px;
}

#main-menu {
    transition: all 300ms ease-out;
    display: none;
}

/*#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 {    display: block;    color: #000;    position: relative;    padding: 10px 0;    font-size: 14px;    font-weight: 400;    text-transform: uppercase;}
#main-menu li a:hover {    color: #508cca;}
#main-menu li.active a {    color: #508cca;}
#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;
    margin: 10px 0;
    border: none;
    background: transparent;
    width: 54px;
    height: 54px;
    background: var(--color-primary);
    border-radius: 50%;
}

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

.menu-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 80px;
    padding-right: var(--container-padding);
}

/**
 * SEARCH
 */

.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
 */

.find-us-mobile {
    display: none !important;
}

footer {
    position: relative;
    background: url(../images/footer_bg.jpg) no-repeat center 490px;
    background-size: cover;
}

.footer-box-container {
    position: relative;
    background-size: cover;
    padding-bottom: 0px;
    background-position: center top;
}

.footer-boxes-container .container {
    position: relative;
    z-index: 2;
}

.footer-boxes {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    width: 100%;
    max-width: 1126px;
    flex-wrap: wrap;
}

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

.footer-col-title {
    margin-bottom: 5px;
    color: #000;
    font-size: var(--font-24);
    line-height: 30px;

    /* Text style for "KONTAKT Z" */
    font-weight: 900;
    text-transform: uppercase;
}


.footer-box ul {
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    padding: 3px 17% 0 0;
}

.footer-box ul li {
    margin-bottom: 8px;
    width: 50%;
}

.footer-box ul li a {
    display: block;
    letter-spacing: 0.05em;
    line-height: 30px;
    font-size: var(--font-24);
    color: #000;
    font-weight: 500;
}

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

.footer-box .text {
    font-size: calc(var(--font-24) + 1px);
    color: #000;
    line-height: 152%;
    font-weight: 500;
    letter-spacing: 0;
}

.form .checkboxradio-container, .form .checkboxradio-container label {
    cursor: pointer;
}

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

.footer-box:last-child {
    padding-right: 0;
    text-align: right;
}

img.logo-min {
    max-width: 90%;
}


/* FOOTER BAR */
.footer-bar {
    line-height: 30px;
    letter-spacing: 0.05em;
    font-weight: 300;
    font-size: 14px;
    color: #fff;
    background: #000;
}

.footer-bar-content {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 840px;
    color: #fff;
    justify-content: space-between;
    display: flex;
}


.footer-bar-content::after {
}

.footer-bar-content > * {
    color: #fff;
    font-size: var(--font-18);
    letter-spacing: 0;
    font-weight: 500;
}

.footer-bar-content > *:not(:last-child) {
    margin-right: 40px;
    color: #fff;
}

.footer-bar-links {
    margin-left: -8px;
    font-size: 0;
    text-transform: uppercase;
}

.footer-bar-links > li {
    display: inline-block;
    vertical-align: middle;
    margin: 3px 8px;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.05em;
}

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

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


.copyright {
    position: relative;
}

.copyright-undicom {
    display: flex;
    float: right;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    align-items: center;
    color: #fff;
}

.copyright-undicom a {
    display: inline-block;
    vertical-align: middle;
}

.copyright-undicom svg {
    max-width: 15px;
    margin-right: 2px;
    fill: currentColor;
    margin-bottom: -3px;
}


/**
 * FORM
 */
form.form {
    /* padding: 15px 0; */
}

/* INPUTY */
.form-control,
.form .form-control {
    height: 38px;
    box-shadow: 0 0 0 transparent;
    font-weight: 500;
    background: transparent;
    font-family: 'Red Hat Display', sans-serif;
    border: 0 none;
    border-bottom: 2px solid #fff;
    border-radius: 0;
    font-size: var(--font-24);
    color: #fff;
    padding-left: 0;
    padding-right: 0;

    letter-spacing: 0.2em;
}

.form .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #fff;    text-transform: uppercase;
}

.form .form-control::-moz-placeholder { /* Firefox 19+ */
    color: #fff;    text-transform: uppercase;
}

.form .form-control:-ms-input-placeholder { /* IE 10+ */
    color: #fff;    text-transform: uppercase;
}

.form .form-control:-moz-placeholder { /* Firefox 18- */
    color: #fff;    text-transform: uppercase;
}


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

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

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

.form .checkboxradio-container label {
    line-height: 120%;
    font-size: 12px;
    color: #fff;
    margin-bottom: 0;
    padding-left: 26px;
}

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

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

.form .form-control.form-control-captcha::placeholder{
    font-size: 15px;
}

/* 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: #e10121;
    border-radius: 0 6px 6px 0;
    background-color: transparent;
    border-color: #fff #fff #fff var(--color-default);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
}

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

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

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

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

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

/**
 * 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;
    padding: 0 !important;
}

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

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

.animIcon span.caption {
    font-size: 7px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    position: absolute;
    left: 0;
}

/* 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.hamburger-line {
    top: 0;
    left: 13px;
    transform-origin: left center;
}

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

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

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

.animIcon.animIcon--hamburger.active span:nth-child(1) {
    margin-top: 30%;
    margin-left: 9%;
    -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: 67%;
    margin-left: 8%;
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.animIcon.animIcon--hamburger.active span.caption {
    display: none;
}


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

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

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

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

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

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


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

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

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

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

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


/**
 * LANGUAGES MENU
 */
.menu-bottom-right {
    display: flex;
    align-items: flex-end;
}

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

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

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

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

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

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

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

.lang span {
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: normal;
    font-weight: 500;
    font-size: 24px;
}

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

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

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

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

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

    a.lang:hover, a.lang:focus {
        color: #fff !important;

    }

    .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-icon {
    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: 0px 5px 0 0;
    border: none;
}

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

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

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

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

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

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

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

.article-subtitle {
    padding-bottom: 30px;
    font-size: 24px;
    font-weight: 500;
    line-height: 150%;
    color: #0b2645;
}

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

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

/**
 * GALLERY
 */

.gallery {
    clear: both;
}

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

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

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

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

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    transition: opacity 0.3s;
    background-image: linear-gradient(180deg, rgba(0, 88, 165, 0.7) 0%, rgba(0, 9, 30, 0.7) 100%);
}

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


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

.main-slider:not(.slick-initialized) .slide:nth-child(n + 2) {
    display: none;
}

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

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

.mask.slider-mask {
    background-color: #000000;
    opacity: 0.45;
}

.main-slider:not(.slick-initialized) .slider-text-box {
    transform: none;
    opacity: 1;
}

.slider-text-box.active {
    transform: none;
    opacity: 1;
}

.slider-text-box {
    transition-property: opacity, transform;
    transition-duration: 5000ms;
    transform: translateY(60px);
    opacity: 0;
    position: absolute;
    display: flex;
    height: 100%;
    top: 0;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 var(--container-padding);
    align-items: flex-end;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 1720px;
    width: 100%;
}

.slider-text {
    width: 48%;
}

.title1 {
    font-weight: 500;
    color: #f7931e;
    margin-bottom: 200px;
    line-height: 121%;
    font-size: 4.06vw;
}


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

}


.page-heading-title {
    line-height: 1.2;
    font-size: calc(var(--font-60) + 2px);
    color: #070b43;
    font-weight: 500;
    margin-bottom: 40px;
}

.category-box-container .container {
    max-width: 1409px;
}

.text.intro-text {
    font-size: var(--font-24);
    line-height: 1.3333;
    font-weight: 500;
    padding-left: 50px;
    letter-spacing: 0;
    margin-bottom: 63px;
}

.category-box-container {
    padding-top: 50px;
    padding-bottom: 160px;
}

.about-text {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    margin-bottom: 170px;
}

.about-text .text.txt {
    width: 55%;
    font-size: var(--font-21);
    line-height: 32px;
    font-weight: 500;
    letter-spacing: 0;
    padding-right: 5%;
    margin-bottom: 11px;
}

.about-text .link {
    width: 55%;
    padding-left: 0;
}


.category-item {
    display: flex;
}


.category-item-inner {
    display: flex;
}


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


.category-title {
    font-size: var(--font-60);
    color: #0b2645;
    font-weight: 500;
    margin-bottom: 7px;
}

.category-text .text.txt {
    padding-left: 50px;
}

.link {
    font-size: var(--font-18);
    color: #e22e2e;
    letter-spacing: 0.2em;
    font-weight: 500;
    display: inline-block;
    transition: all 300ms ease-out;
    margin-left: 50px;
}

.link:after {
    width: 0;
    content: '';
    height: 2px;
    background: currentColor;
    margin-top: 5px;
    display: block;
    opacity: 0;
    transition: all 300ms ease-out;
    position: absolute;
}


.link:hover:after{width: 92px; opacity:1}


.category-item:nth-child(2) .category-photo {
    pointer-events: none;
}


.category-item:first-child {
    display: flex;
    justify-content: flex-end;
}


.category-item:first-child .category-item-inner {
    width: 65%;
}

.category-item:first-child .category-photo {
    width: 57%;
    margin: 0 0 0 -4%;
}


.category-item:first-child .category-text {
    width: 50%;
}

.category-item .category-text .link {
    margin-top: 12px;
}

.category-item:nth-child(2) {
    margin-top: -16.5%;
    padding-left: 6.6%;
}

.category-item:nth-child(2) .category-item-inner {
    width: 44%;
    flex-direction: column;
    align-items: flex-end;
}

.category-item:nth-child(2) .category-text {
    width: 100%;
    padding-right: 19%;
}

.category-item:nth-child(2) .category-photo {
    width: 77%;
    margin-top: -10.4%;
}


.category-item:nth-child(3) {
    display: flex;
    justify-content: flex-end;
    margin-top: -11.6%;
}

.category-item:nth-child(3) .category-photo {
    width: 69%;
    margin-left: 31%;
    margin-top: 0.9%;
}


.category-item:nth-child(3) .category-text {
    width: 84%;
}

.category-item:nth-child(3) .category-item-inner {
    width: 47.4%;
    flex-direction: column;
}

.category-item:nth-child(3) .category-text .text.txt {
    padding-right: 15%;
}

.category-item:nth-child(4) {
    margin-top: -14.8%;
    padding-left: 3%;
}

.category-item:nth-child(4) .category-item-inner {
    width: 66%;
    flex-direction: row-reverse;
    align-items: flex-start;
}

.category-item:nth-child(4) .category-text {
    width: 53.4%;
    margin-left: -7%;
    margin-top: 7%;
}

.category-item:nth-child(4) .category-photo {
    width: 54%;
    margin-top: -7%;
}

.category-item:nth-child(5) {
    display: flex;
    justify-content: flex-end;
    margin-top: 8%;
}

.category-item:nth-child(5) .category-photo {
    width: 46%;
    margin-left: -3%;
}


.category-item:nth-child(5) .category-text {
    width: 51%;
    padding-top: 3%;
}

.category-item:nth-child(5) .category-item-inner {
    width: 76.4%;
    align-items: flex-start;
}

.category-item:nth-child(5) .category-text .text.txt {
    padding-right: 11%;
}

.category-item:nth-child(6) {
    margin-top: -12.4%;
}

.category-item:nth-child(6) .category-item-inner {
    width: 66%;
    flex-direction: row-reverse;
    align-items: flex-start;
}

.category-item:nth-child(6) .category-text {
    width: 51%;
    margin-left: -6%;
    margin-top: 17.6%;
}

.category-item:nth-child(6) .category-photo {
    width: 55%;
}

.category-item:nth-child(6) .category-photo img {
    width: 88%;
}

.category-item:nth-child(7) {
    display: flex;
    justify-content: flex-end;
    margin-top: -0.8%;
}

.category-item:nth-child(7) .category-photo {
    width: 74%;
    margin-left: 49%;
    margin-top: -20%;
}


.category-item:nth-child(7) .category-text {
    width: 84%;
}

.category-item:nth-child(7) .category-item-inner {
    width: 43.8%;
    flex-direction: column;
}

.category-item:nth-child(7) .category-text .text.txt {
    padding-right: 26%;
}


.category-item:nth-child(8) {
    margin-top: -22%;
    padding-left: 6.6%;
}

.category-item:nth-child(8) .category-item-inner {
    width: 53.4%;
    align-items: flex-end;
    flex-direction: column-reverse;
}

.category-item:nth-child(8) .category-text {
    width: 100%;
    margin-top: -11%;
    padding-right: 21%;
    padding-left: 3%;
}

.category-item:nth-child(8) .category-photo {
    width: 65%;
}

.category-item:nth-child(8) .category-text .text.txt {
    padding-right: 27%;
}

.category-item:nth-child(9) {
    display: flex;
    justify-content: flex-end;
    margin-top: 6.4%;
}

.category-item:nth-child(9) .category-photo {
    width: 61%;
    margin-left: -5%;
}


.category-item:nth-child(9) .category-text {
    width: 44%;
    padding-top: 7.3%;
}

.category-item:nth-child(9) .category-item-inner {
    width: 79.7%;
    align-items: flex-start;
}

.category-item:nth-child(9) .category-text .text.txt {
    padding-right: 11%;
}

.category-item:nth-child(10) {
    margin-top: -4.7%;
}

.category-item:nth-child(10) .category-item-inner {
    width: 68%;
    flex-direction: row-reverse;
    align-items: flex-start;
}

.category-item:nth-child(10) .category-text {
    width: 47%;
    margin-left: -6%;
    margin-top: 18%;
}

.category-item:nth-child(10) .category-photo {
    width: 59%;
}


.category-item:nth-child(11) {
    display: flex;
    justify-content: flex-end;
    margin-top: -0.6%;
}

.category-item:nth-child(11) .category-photo {
    width: 56%;
    margin-left: -5%;
}


.category-item:nth-child(11) .category-text {
    width: 49%;
    padding-top: 17.7%;
}

.category-item:nth-child(11) .category-item-inner {
    width: 66.6%;
    align-items: flex-start;
}

.category-item:nth-child(11) .category-text .text.txt {
    padding-right: 5%;
}


.category-item:nth-child(12) {
    margin-top: 1.8%;
    padding-left: 4.6%;
}

.category-item:nth-child(12) .category-item-inner {
    width: 46.4%;
    align-items: flex-end;
    flex-direction: column-reverse;
}

.category-item:nth-child(12) .category-text {
    width: 100%;
    padding-right: 0%;
    padding-left: 13%;
    margin-top: -1%;
}

.category-item:nth-child(12) .category-photo {
    width: 100%;
}

.category-item:nth-child(12) .category-text .text.txt {
    padding-right: 13%;
}


.category-item:nth-child(13) {
    display: flex;
    justify-content: flex-end;
    margin-top: -28.3%;
}

.category-item:nth-child(13) .category-photo {
    width: 63%;
    margin-top: 19%;
    margin-left: 3%;
}


.category-item:nth-child(13) .category-text {
    width: 84%;
}

.category-item:nth-child(13) .category-item-inner {
    width: 39.4%;
    flex-direction: column;
}

.category-item:nth-child(13) .category-text .text.txt {
    padding-right: 11%;
}

.category-box {
    padding-bottom: 100px;
}

.contact-box-container {
    /*padding-top: 230px;*/
    margin-bottom: calc(var(--space-50) * 2);
}

.contact-box-title {
    font-size: calc(var(--font-60) + 2px);
    font-weight: 500;
    color: #f7931d;
    margin-bottom: 15px;
}

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

.contact-box-img img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.contact-box-img > img{
    min-height: 560px;
}

.contact-box-content {
    left: 50%;
    padding: 60px;
    padding-right: 120px;
    width: 100%;
    top: 45%;
    transform: translate3d(-50%, -50%, 0);
    position: absolute;
}

.contact-form-wrapper {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    /*padding-bottom: 160px;*/
}

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

.checkbox {
    margin: 0;
}

.form-bottom {
    display: flex;
}

.form-bottom-left {
    width: 78%;
}

.form-bottom-right {
    width: 22%;
    align-self: flex-end;
    text-align: right;
}

.form-bottom-right button.btn-lg {
    background: transparent;
    color: #fff;
    border: 0 none;
    font-size: var(--font-24);
    letter-spacing: 0.2em;
    font-weight: 500;
    padding: 0;
    height: auto;
    margin-right: -32px;
}

button.btn.btn-lg.has-icon:hover {
    color: #be1e2d;
}

.form-bottom-right button.btn-lg img {
    display: block;
    margin: 0 auto;
}

.form-bottom-right button.btn-lg .btn-icon {
    margin-bottom: 4px;
}

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

.consent-all.btn-link {
    color: #fff;
}

.contact-form-wrapper .form-box {
    max-width: 59%;
}

.contact-form-wrapper .find-us {
    background: transparent;
    color: #fff;
    margin-bottom: 7px;
    border: 0 none;
    font-size: var(--font-24);
    letter-spacing: 0.2em;
    font-weight: 500;
    padding: 0;
    height: auto;
}

.form-bottom-right button.btn-lg .btn-icon {
    width: 55px;
    display: block;
    margin: 0 auto;
    height: 55px;
    background: #f78d10;
    margin-bottom: 4px;
    border-radius: 50%;
}

.contact-form-wrapper .find-us .btn-icon {
    background: #be1e2d;
}

.footer-box-container .container {
    max-width: 1520px;
}

.footer-box:first-child .footer-col-title {
    opacity: 0;
}

.footer-box nav.social-list {
    padding-top: 8px;
}

.footer-box .social-list > ul li {
    width: auto;
    margin-right: 30px;
}

.footer-box .social-list > ul li .social-icon {
    background: #0f79e5;
    width: 42px;
    height: 42px;
    border-color: #0f79e5;
    color: #bbc4c7;
    border-radius: 50%;
}

.footer-box ul.footer-bar-links {
    display: flex;
    padding-right: 0;
    justify-content: flex-start;
    margin-left: -31px;
    padding-top: 0;
}

.footer-box ul.footer-bar-links li {
    width: auto;
    margin: 0 84px 0 0;
}

.footer-box ul.footer-bar-links li a {
    text-transform: none;
    letter-spacing: 0;
}

.footer-box ul.footer-bar-links li a:hover {
    color: var(--color-tertiary);
}

.footer-bar .container {
    max-width: 1540px;
}

.copyright-zvorka {
    color: #fff;
    font-size: var(--font-18);
    letter-spacing: 0;
    font-weight: 500;
}

.copyright-zvorka a {
    color: #fff;
}

.copyright-zvorka a:hover {
    color: var(--color-primary);
}

img#footer-img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 33.5%;
}

.footer-box .social-list > ul li a:hover .social-icon {
    color: #0f79e5;
    background: transparent;
    border-color: #0f79e5;
}

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

.page-top-box-container .page-top-photo + .container {
    max-width: 1560px;
    margin-top: -162px;
    position: relative;
}

.box-top:before {
    position: absolute;
    background: rgba(242, 242, 242, 0.9);
    top: 0;
    left: 0;
    width: 100%;
    height: 162px;
    z-index: -1;
    content: "";
    display: block;
}

.box-top {
    position: relative;
    z-index: 2;
    width: 75%;
    padding: 2.6% 3.5% 0 5.5%;
    overflow: hidden;
}

.mainpage .box-top {
    padding-top: 0;
}

.page-top-content .text.intro-text {
    max-width: 100%;
}

.about-text-category .text.txt {
    font-size: var(--font-24);
    line-height: 150%;
    font-weight: 500;
    letter-spacing: 0;
    width: 57.5%;
    padding-right: 4%;
}

.about-text-category {
    display: flex;
    justify-content: flex-end;
    padding-top: 7px;
}

.category-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-info-photo {
    width: 59.2%;
}

.category-info-right {
    margin-top: calc(var(--space-40) - 5px);
    width: 38.2%;
}

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

.category-info-right-title {
    font-size: var(--font-32);
    text-transform: uppercase;
    color: #0b2645;
    letter-spacing: 0.2em;
    font-weight: 500;
    margin-bottom: 20px;
}

.product-group-list ul li a {
    display: block;
    font-size: var(--font-32);
    color: #343434;
    font-weight: 500;
    padding: 4px 0;
}

.product-group-list ul {
    padding-left: 30px;
}

.category-link-box {
    margin-top: 0;
    position: relative;
}

.category-details-container {
    position: relative;
}

.category-link-box img {
    display: block;
    max-width: 100%;
    width: 100%;
}

.category-link-title {
    font-size: var(--font-60);
    color: #fff;
    font-weight: 500;
    margin-bottom: 60px;
}

.mask.category-mask {
    background: rgba(0, 0, 0, 0.5);
}

.category-link-box-text {
    position: absolute;
    display: flex;
    top: 0;
    width: 100%;
    left: 0;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 25px;
}

.category-link-box-text .btn.btn-lg:hover {
    background-color: rgba(17, 37, 218, .5);
}

.category-link-box-text .btn.btn-lg {
    border-color: #ffb206;
    font-size: var(--font-30);
    letter-spacing: 0.2em;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0;
    color: #ffb206;
    border-width: 2px;
    font-weight: 500;
    height: 70px;
    line-height: 66px;
}

.category-products-box {
    padding-top: 107px;
}

.category-products-title {
    font-size: var(--font-32);
    text-align: center;
    font-weight: bold;
    margin-bottom: 50px;
}

.welcome-text .text.txt {
    font-size: var(--font-32);
    line-height: 150%;
    margin-bottom: 28px;
}

.welcome-text {
    max-width: 1300px;
    margin: 0 auto 170px;
}

.category-products-icon {
    width: 100px;
    margin: 0 auto;
}

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

.recipes-box-wrapper {
    padding-top: 0;
    display: flex;
    justify-content: space-between;
    margin-bottom: 190px;
}

.recipes-box-title {
    font-size: var(--font-56);
    font-weight: 500;
    color: #0b2645;
    text-transform: uppercase;
    width: 32%;
    padding-right: 5%;
    line-height: 121%;
    padding-left: 1.4%;
    letter-spacing: 0.2em;
    padding-top: 17px;
}



.recipe-link {
    background-color: rgb(255, 255, 255);
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.28);
    display: block;
    margin: 10px 10px 24px;
}

.recipe-link img {
    display: block;
    max-width: 100%;
    width: 100%;
}

.recipe-content {
    padding: 15px;
}

.recipe-name {
    font-size: var(--font-21);
    color: #0b2645;
    font-weight: 500;
    line-height: 128%;
}

.recipe-link:hover .recipe-name {
    color: var(--color-primary);
}

.brand-box-title {
    font-size: var(--font-32);
    font-weight: 500;
    text-transform: uppercase;
    color: #0b2645;
    letter-spacing: 0.2em;
    width: 26%;
}

.brand-box-slider {
    display: flex;
    align-items: stretch;
}

.brand-box-slider .slick-track, .brand-box-slider .slick-list {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.brand-box-slider .slide {
    width: 20%;
}

.brand-box-slider:not(.slick-initialized) .slide:nth-child(n + 6) {
    display: none;
}

.brand-box-slider .slide a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.brand-box-wrapper {
    display: flex;
    align-items: center;
    max-width: 1430px;
    margin: 0 auto;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 163px;
}

.brand-box-slider {
    width: 74%;
}

.brand-box-slider .slide img {
    display: block;
    max-width: 100%;
}

.other-box-wrapper {
    padding-top: 44px;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
    flex-direction: row-reverse;
}

.other-box-title {
    margin-left: var(--space-60);

    font-size: var(--font-56);
    font-weight: 500;
    color: #0b2645;
    text-transform: uppercase;
    width: 30%;
    line-height: 121%;
    padding-left: 1.4%;
    letter-spacing: 0.2em;
    padding-top: 17px;
}

.page-top-details-container .container {
    max-width: 1560px;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.page-top-details-container {
    position: relative;
}

.recipe-details-container {
    padding-top: 87px;
    padding-bottom: 162px;
}

.recipe-details-container .container {
    max-width: 1300px;
}

.recipe-details-title {
    font-size: var(--font-40);
    color: #e22e2e;
    text-transform: uppercase;
    display: inline-block;
    font-weight: 500;
    margin-bottom: 22px;
}

.recipe-details-title:after {
    content: '';
    width: 192px;
    height: 3px;
    background: #e22e2e;
    display: block;
    margin-top: 6px;
}

.ingredients-box dt, .ingredients-box dd {
    font-size: var(--font-24);
    font-weight: 500;
    line-height: 150%;
}

.ingredients-box dl {
    display: flex;
}

.ingredients-box dt {
    width: 21%;
}

.ingredients-box {
    -moz-column-count: 2;
    column-count: 2;
    max-width: 93%;
}
.ingredients-boxes{
    margin-bottom: 170px;

}
.ingredients-boxes h3{
    text-transform: uppercase;
    margin: 10px 0;
    font-weight: 700;
    font-size: var(--font-24);
}
.ingredients-box dd {
    width: 70%;
}

.how-make-item {
    display: flex;
    margin-bottom: 30px;
}

.how-make-nb {
    color: rgba(0, 0, 0, 0.259);
    font-size: 100px;
    font-weight: 900;
    width: 90px;
    flex-shrink: 0;
    line-height: 1;
    text-align: left;
}


.how-make-desk {
    font-size: var(--font-24);
    font-weight: 500;
    line-height: 150%;
    padding-top: 6px;
}

.how-make-list {
    padding-top: 33px;
    width: 68%;
}

.how-make-box {
    display: flex;
}

.how-make-photo {
    width: 42%;
    margin-right: -10%;
    margin-top: -24%;
    position: relative;
    right: -8%;
}

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

.recipe-details-container + .category-products-box .recipes-box-wrapper {
    margin-bottom: 105px;
}

.text-right {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
}

.text-right-inner {
    width: 55%;
    text-align: left;
    padding-right: 5%;
}


.partner-box-title {
    font-size: var(--font-60);
    color: #0b2645;
    font-weight: 500;
    margin-bottom: 28px;
}

.partner-info {
    font-weight: 500;
    padding-left: 50px;
    margin-bottom: 103px;
    max-width: 58%;
}

.partner-info .text.txt {
    font-size: var(--font-24);
    line-height: 150%;
    font-weight: 500;
}

.about-partner {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 142px;
}

.about-partner-title {
    font-size: var(--font-32);
    color: #0b2645;
    letter-spacing: 0.2em;
    font-weight: 500;
    margin-bottom: 15px;
}

.about-partner .text.txt {
    font-weight: 500;
    font-size: var(--font-24);
    line-height: 150%;
}

.partner-benefits {
    display: flex;
    flex-wrap: wrap;
    margin: calc(var(--space-25) * -1);
    padding-bottom: 180px;
}

.partner-benefit {
    width: 25%;
    padding: var(--space-25);
}

.mainpage .page-heading-title {
    margin-bottom: 6px;
}

.mainpage .text.intro-text {
    margin-bottom: 50px;
}

.mainpage .box-top {
    background: transparent;
}

.text-right .text.txt {
    font-size: var(--font-24);
    line-height: 150%;
    font-weight: 500;
}

.text-right-inner .text.txt {
    font-size: var(--font-21);
    line-height: 152%;
    margin-bottom: 12px;
}

.text-right-inner .link {
    margin-left: 0;
}

.text-right > .text.txt {
    max-width: 58.2%;
    text-align: left;
}

.page-top-box-container {
    position: relative;
    z-index: 1;
}

.page-top-content {
    width: 100%;
    position: relative;
}

.partners-box-container {
    padding-top: 109px;
    padding-bottom: 166px;
}

.partners-box-container .container {
    max-width: 1662px;
}

.benefit-icon {
    max-width: 50%;
    margin: 0 auto 83px;
}

.benefit-title {
    font-size: var(--font-32);
    line-height: 131%;
    font-weight: bold;
    max-width: 86%;
    color: #16478a;
    margin-bottom: 10px;
}

.benefit-text {
    font-size: var(--font-24);
    line-height: 150%;
    font-weight: 500;
}

.training-centers {
    display: flex;
    padding: 0 2%;
    justify-content: space-between;
}

.training-centers-photo {
    width: 34%;
    padding-top: 33px;
}

.training-centers-text {
    width: 58.3%;
}

.training-centers-title {
    font-size: var(--font-60);
    color: #0b2645;
    font-weight: 500;
    margin-bottom: 28px;
}

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

.training-centers-text .text.txt {
    padding-left: 50px;
    font-size: var(--font-24);
    line-height: 150%;
}

.text ul {
    padding-top: 13px;
    padding-bottom: 25px;
}

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


.cooperation-box-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    max-width: 1410px;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 80px;
}

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

.cooperation-box-container img {
    display: block;
    max-width: 100%;
}

.cooperation-box-title {
    font-size: var(--font-60);
    color: #fff;
    font-weight: 500;
    margin-bottom: 68px;
}

.cooperation-box-content .text.txt {
    font-size: var(--font-32);
    line-height: 150%;
    font-weight: 500;
    color: #fff;
}

.contact-cooperation-title {
    font-size: var(--font-60);
    color: #0b2645;
    font-weight: 500;
    margin-bottom: 60px;
    line-height: 121%;
}

.contact-cooperation-box {
    padding-top: 89px;
    padding-bottom: 100px;
}

.contact-cooperation-box .container {
    max-width: 1680px;
}

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

.contact-map {
    width: 56.6%;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 640px;
}

.contact-text {
    width: 43.4%;
    padding-left: 3.5%;
    padding-top: 27px;
}

.contact-text-title {
    font-size: var(--font-24);
    font-weight: 900;
    color: #0b0b0e;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-text ul li a {
    font-size: var(--font-24);
    color: #0b0b0e;
    font-weight: 500;
    padding: 10px;
}


.contact-text ul#branches {
    margin: 0;
    margin-bottom: calc(var(--space-60) + 10px);
    gap: var(--space-25) calc(var(--space-25) + 5px);
}

.contact-text ul {
    display: flex;
    flex-wrap: wrap;
    margin: -10px -10px 50px;
}

.contact-text-content {
    width: 100%;
    padding-right: var(--container-padding);
    max-width: 640px;
}

.address-box {
    width: 120%;
    margin-left: -20%;
    padding: 9% 9% 12% 20%;
    position: relative;
    z-index: 2;
    background: #16478a;
}

.address-box .text.txt {
    line-height: 175%;
    font-size: var(--font-24);
    color: #fff;
}

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

.contact-text ul li a:hover {
    color: #be1e2d;
}

.find-us {
    font-size: 24px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
}


.find-us .btn-icon {
    width: 55px;
    height: 55px;
    background: #f78d10;
    margin-bottom: 10px;
    border-radius: 50%;
}

.find-us .btn-caption {
    color: #fff
}


.find-us .btn-icon svg {
    fill: #fff;
}

.text-box-container {
    padding-top: 100px;
    padding-bottom: 100px;
}

.btn-link:hover, .btn-link:focus {
    color: #be1e2d;
    text-decoration: none;
}

.btn-link {
    font-size: calc(var(--font-24) + 1px);
    font-weight: 500;
    color: #0b0c0e;
    background-color: transparent;
    padding: 0 !important;
    border: none !important;
}

/*.contact-bg{*/
/*    background: url(../images/contact_bg.jpg) repeat center;*/
/*    background-position-y: min(390px, 21.5vw);*/
/*}*/
.googleMap {
    min-height: 638px;
}

.recipe-page .box-top {
    padding-top: 1.5%;
    padding-left: 5%;
}

.recipe-page .box-top:before {
    height: 236px;
}

.recipe-page .page-heading-title {
    margin-bottom: calc(var(--space-60) + 5px);
}

.recipe-details-title:after {
    width: 208px;
}

.recipes-box-slider .slick-list, .recipes-box-slider .slick-track {
    width: 100%;
    display: flex !important;
    align-items: stretch;
}

.recipes-box-slider {

}





.social-box-title {
    text-transform: uppercase;
}

.product-group-list li {
    font-size: calc(var(--font-30) + 2px);
    font-weight: 500;
    line-height: 1.563;
}

.offer-view.page-top-box-container .container {
    margin-top: 100px;
}

.offer-view.page-top-box-container .page-top-photo + .container {
    margin-top: -190px;
}

.offer-view .box-top:before {
    height: 190px;
}

.main-menu-button {
    position: relative;
}


.find-us {
    position: relative;
}

.text-right-inner .link, .category-item .category-text .link {
    position: relative;
}

.link, .category-text, .btn-caption, .social-icon {
    transition-property: color, text-shadow, background-color, border;
    transition-duration: 300ms;
}

@media screen and (min-width: 1140px) {
    header .rwdPanel .rwdMenu .social-list ul li a:hover .social-icon {
        background-color: var(--color-tertiary);
        border-color: var(--color-tertiary);
    }

    .text-right-inner .link:hover, .category-item .category-text .link:hover {
        color: var(--color-primary);
    }

    .find-us:hover .btn-caption {
        color: var(--color-tertiary);
    }

    .footer-box .text a:hover {
        color: #e22e2e;
        text-decoration: none;
    }


    .find-us:hover {
        color: #fff;
    }

    .address-box .text.txt a:hover, .address-box .text.txt a:focus {
        color: var(--color-tertiary);
        text-decoration: none;
    }

}



.offer-view .page-heading-title {
    margin-bottom: 14px;
}

.category-box-container .box-top:before {
    content: unset;
}

.page-top-content .text.intro-text {
    margin-bottom: calc(var(--space-50) * 2);
}

.contact .text.intro-text {
    margin-bottom: calc(var(--space-40) * 2);
}

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    background-color: transparent !important;
}

header .rwdMenu li .lang.lang-item {
    padding: 0;
    height: unset;
    line-height: normal;
    min-height: unset;
    display: inline-block;
    vertical-align: middle;
}

.langs-menu {
    opacity: 0;
    pointer-events: none;
    transition: opacity, 500ms;
}

.rwdPanel-scrollLock .langs-menu {
    opacity: 1;
    pointer-events: auto;
}

.form-floatingTop {
    top: -10%;
    right: 2%;
    max-width: 27%;
}

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

.form-floatingBottom {
    max-width: 24%;
    bottom: -6%;
    left: 2%;
}

.form-floating {
    position: absolute;
}
body.sticky-footer footer{
    overflow: visible;
}

.category-box-list {
    max-width: 1920px; margin:0 auto;
}


.rwdPanel-scrollLock .logo a {
    margin: 0;
}

.menu-lang .langs-menu.langs-menu--list li.active a {
    color: #f78d10;
}

.menu-lang .langs-menu.langs-menu--list li.active a:after {
    opacity: 1;
    width: 100%;
}

.recipes-box-slider {
    width: 65%;
}

.recipes-box-container .recipes-box-slider {
    display: flex;
    flex-wrap: wrap; width:auto;
    margin: -10px;
}


.recipes-box-container {
    padding-top: 130px;
}

.recipes-box-container .recipes-box-wrapper {
    justify-content: flex-start;
}

.recipes-box-container .recipes-box-slider .slide {
    display: flex;
    width: 20%;
    align-items: stretch;
}

.recipes-box-container .recipe-link {width:100%}


.recipes-box-slider .slick-track {
    display: flex !important;
 height: auto;
}

.recipes-box-slider .slick-slide {
    height: inherit !important;
}

.recipes-box-slider .slick-slide .recipe-content {
    padding: 15px;
    min-height: 84px;
}

.recipe-details{
    position: relative;
}

.recipe-details .btn {
    position: absolute;
    right: 30%;
    top: 0;
}