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

    /** SPECIFIC **/
    --color-primary: #1361AA;
    --color-secondary: #FBBA15;
    --color-default: #003a70;
}

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

/**
 * BASIC
 */

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

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

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

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

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

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

.grayscale {
    filter: grayscale(1);
}

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

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

/**
 * PAGE
 */

#page,
#content {
    overflow: hidden;
}

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

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

.container--noClear {
    clear: none;
}

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

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

/**
 * BUTTONS
 */

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

.btn-lg {
    border: 1px solid transparent;
    padding: 0 34px;
    height: 46px;
    line-height: 45px;
    border-radius: 23px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 0 0 transparent !important;
}

.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;
    padding-left: 16px;
    padding-right: 30px;
}

.btn.has-icon .btn-icon {
    width: 44px;
    height: 44px;
    padding: 8px;
    margin-right: -5px;
}

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

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

/**
 * THEMES
 */

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

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

.btn.btn-secondary,
.btn.btn-secondary:focus,
.btn.btn-secondary:active,
.btn.btn-secondary:focus:active {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: 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: var(--color-default);
    color: var(--color-default);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

}

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

.panel {
    box-shadow: none;
}

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

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

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

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

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

/**
 * TITLES
 */

.text.txt h1 {
    font-size: var(--font-30);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.5;

}

.text.txt h2 {
    font-size: var(--font-26);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.text.txt h3 {
    font-size: var(--font-24);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.text.txt h4 {
    font-size: var(--font-20);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.text.txt h5 {
    font-size: var(--font-18);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.5;

}

.text.txt h6 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.5;

}

/**
 * TEXT
 */

.text.txt {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.73333;
    color: #003a70;
}

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

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

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

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

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

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

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

/**
 * TEXT
 */

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

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

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

.text ul > li::before {
    content: "";
    display: inline-block;
    left: -16px;
    margin-left: -8px;
    font-family: sans-serif;
    position: relative;
    top: -1px;
    width: 5px;
    height: 5px;
    background-color: 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;
}

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-top {
    background: var(--color-secondary);
}

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

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

.top {
    padding-top: 8px;
    padding-bottom: 8px;
    background: #fff;
}

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

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

.logo {
    float: none;
    margin-top: -56px;
}

.logo a {
    display: block;
}

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

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

}

#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 {
    color: var(--color-default);
    position: relative;
    font-weight: 400;
    font-size: 17px;
    text-transform: uppercase;
    padding: 10px 25px;
    display: block;
}

#main-menu li a:hover {
    color: var(--color-default);
    transition: -webkit-text-stroke 0.3s;
    -webkit-text-stroke: 1.2px currentColor;
}

#main-menu li.active a {
    color: var(--color-default);
    transition: -webkit-text-stroke 0.3s;
    -webkit-text-stroke: 1.2px 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%;
}

.top .btn {
    margin-left: 25px;
}

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

.contact-link {
    align-items: center;
    line-height: 200%;
    display: flex;
    padding: 10px 27px;
    font-weight: 400;
    font-size: 15px;
    color: #003a70;
}

.link-icon {
    margin-right: 12px;
    align-items: center;
    justify-content: center;
    display: flex;
}

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

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

    .contact-link:hover .btn-icon {
        background: #fff;
    }
}

.top .btn.btn-lg.btn-secondary.has-icon {
    margin-left: 22px;
}

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

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

.mainsearch.rwdPanel {
    display: block;
}

.mainsearch {
    float: left;
    position: relative;
    width: 350px;
    max-width: 100%;
}

.mainsearch-search {
    display: flex;
    align-items: stretch;
}

.mainsearch .form-element-container {
    flex-grow: 1;
}

.mainsearch input.form-control {
    display: block;
    height: 46px;
    padding: 5px 15px;
    border-right: none;
    box-shadow: none;
}

.mainsearch-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.mainsearch .alert-block {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.mainsearch .form-control-feedback {
    display: none;
}

/*
* USER NAV
.header-top .user-nav {    display: flex;    align-items: stretch;}
.header-top .user-nav-item {    display: flex;    align-items: stretch;    position: relative;}
.header-top .user-nav-item-inner {    display: flex;    align-items: center;    color: #fff;}
.header-top .user-nav-item + .user-nav-item {    padding-left: 20px;    margin-left: 20px;}
.header-top .user-nav-item + .user-nav-item::before {    content: '';    display: block;    position: absolute;    top: 50%;    left: 0;    -ms-transform: translate3d(0, -50%, 0);    transform: translate3d(0, -50%, 0);    width: 1px;    height: 12px;    background-color: rgba(255, 255, 255, 0.6);}
.header-top .user-nav-item .icon {    width: 26px;    height: 26px;}
*/

/**
 * FOOTER
 */

footer {
    position: relative;
    min-height: 870px;
}

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

.footer-left {
    width: 41.2%;
    padding-bottom: 15px;
}

.footer-right {
    width: 49.5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-left .footer-box {
    width: 100%;
}

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


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

.footer-top {
    width: 100%;
    height: 95px;
    background: url(../images/footer_top.png) no-repeat top center / 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.footer-bottom {
    width: 100%;
    height: 73px;
    background: url(../images/footer_bottom2.png) no-repeat bottom center;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer-bg .photo-in-bg {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
}

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

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

.footer-boxes {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: var(--space-30);
    position: relative;
}

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

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

.footer-col-title {
    font-weight: 800;
    font-size: var(--font-30);
    line-height: 1.53333;
    color: #fbba15;
    margin-bottom: 36px;
}

.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;
    margin-bottom: calc(var(--space-30) + var(--space-40));
    max-width: 100%;
    margin-top: 9px;
}

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

.contact-links-bottom {
    padding-top: 33px;
}


.contact-link-bottom {
    display: flex;
    align-items: center;
    line-height: 147%;
    font-weight: 400;
    font-size: var(--font-22);
    color: #fff;
    margin-bottom: 25px;
}

.contact-link-bottom .btn-icon {
    border-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 29px 0 0;
    width: 58px;
    height: 58px;
}

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

.footer-bar-content {
    padding: 9px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
}

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

.footer-bar-content > * {
    float: left;
    color: #fff;
    line-height: 30px;
}

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

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

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

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

@media screen and (min-width: 1140px) {
    .footer-bar-links a:hover {
        text-decoration: underline
    }
}

.copyright:before {
    content: '';
    width: 1px;
    height: 10px;
    background: #fff;
    position: absolute;
    left: -25px;
    top: 50%;
    margin-top: -5px;
}

.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;
    margin-top: 6px;
}

.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-box-title {
    font-size: var(--font-40);
    color: #000;
    font-weight: 700;
    margin-bottom: var(--space-40);
}

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

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

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

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

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

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

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

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

.form button.captcha-refresh .fa.fa-spin {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -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: 100%;
}

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

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

/*---- SELECT 2 -----*/

.select2-dropdown {
    z-index: 100;
    border-radius: 0;
}

.select2-container--default .select2-selection--multiple,
.select2-container .select2-selection--single {
    height: 46px;
    border-color: #ccc;
    border-radius: 6px;
    text-align: left;
    padding: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
    padding-left: 12px;
    font-size: 14px;
    padding-right: 44px;
    color: #555;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search {
    line-height: 44px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    line-height: 24px;
    display: inline-block;
    float: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 8px;
}

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

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: auto;
    transition: all 0.4s;
    right: 16px;
    color: #000;
    text-align: center;
    font-size: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:before {
    content: '\f107';
    font-family: 'FontAwesome', sans-serif;
    font-size: 16px;
    vertical-align: middle;
}

.select2-container--default.select2-container--open .select2-selection__arrow {
    -ms-transform: translateY(-50%) scaleY(-1);
    transform: translateY(-50%) scaleY(-1);
}

.select2-container--default .select2-selection--single .select2-selection__arrow > b {
    display: none;
}

.select2-results__option[aria-selected] {
    font-size: 14px;
    line-height: 24px;
    color: #000;
    font-weight: 300;
    padding: 6px 22px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--color-primary);
}

@media (-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 {
    display: block;
    margin: 0 auto;
    padding: 0 25px;
}

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

}

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

@media (-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: 600px;
}

/**
 * BREADCRUMB
 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.logotypes-box-title {
    color: #00306d;
    font-size: 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: 50px;
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: rgba(0, 0, 0, 0.3);
    padding: 4px;
    border-radius: 50%;
}
@media screen and (min-width: 1140px) {
.social:hover .social-icon {
    color: var(--color-primary);
    border-color: var(--color-primary)
}
}

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 1140px) {
    a.lang:hover,
    a.lang:focus {
        color: #fff;
        background-color: 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;
}

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

.article-subtitle {
    font-weight: 700;
    font-size: var(--font-30);
    color: #003a70;
    margin-bottom: var(--space-40);
}

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

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

/**
 * GALLERY
 */

.gallery {
    clear: both;
}

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

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

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

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

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

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

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

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

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

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

.slider .slider-photo {
    -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;
    pointer-events: none;
}

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


.mask.slider-mask {
    background: linear-gradient(232deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.slide-text-box {
    position: absolute;
    display: flex;
    height: 100%;
    top: 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 1640px;
    width: 100%;
}

.slide-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    padding-right: var(--container-padding);
    padding-left: var(--container-padding);
    width: 100%;
    position: relative;
    margin: 0 auto calc(var(--space-50) + var(--space-50));
    padding-top: 155px;
}

.slide-titles {
    padding: 0 4%;
}

.title1 {
    font-weight: 800;
    font-size: 6.776vw;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 4px 11px 38px rgba(0, 0, 0, 0.6);
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.title2 {
    font-weight: 800;
    font-size: 10.417vw;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 4px 11px 38px rgba(0, 0, 0, 0.6);
    text-align: center;
    padding-right: 3%;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.title3 {
    text-align: right;
    font-weight: 800;
    font-size: 6.776vw;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 4px 11px 38px rgba(0, 0, 0, 0.6);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
	        padding-left: 38%;
        white-space: nowrap;
        width: 100%;
}


.description {
    font-weight: 500;
    color: #fff;
    text-shadow: 4px 11px 38px rgba(0, 0, 0, 0.6);
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 38%;
    text-align: left;
    margin-bottom: 26px;
    font-size: 1.355vw;
    padding-left: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slider .slick-arrow {
    width: 56px;
    height: 56px;
    z-index: 9;
    border: 1px solid #fff;
    font-size: 0;
    position: absolute;
    top: calc(50% + 155px);
    margin-top: -160px;
    border-radius: 50%;
}


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

    .title2 {
        font-size: 200px;
    }

    .title3 {
        font-size: 130px;
    }

    .description {

        font-size: 26px;
    }
}


.slick-prev {
    left: 40px;
    background: #fff url(../images/icons/arrow_left.svg) no-repeat center center;
}

.slick-next {
    background: #fff url(../images/icons/arrow_right.svg) no-repeat center center;
    right: 40px;
}

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

button.mouse {
    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 75px;
    background: transparent;
    width: 78px;
    height: 92px;
    border: 0 none;
    margin: 0 auto;
}

button.mouse svg path {
    transition: all 0.9s;
}

@media screen and (min-width: 1140px) {
    button.mouse:hover svg, button.mouse:hover svg * {
        fill: var(--color-secondary);
    }
}


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

.offer-box-title {
    font-weight: 700;
    font-size: var(--font-40);
    color: #003a70;
    margin-bottom: calc(var(--space-30) + var(--space-40));
    line-height: 152%;
}

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

.offer-icon {
    width: 50%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.offer-item {
    width: 20%;
}

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

.offer-content {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
}

.offer-content-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 300ms ease-out;
    padding-top: 10px;
}
@media screen and (min-width: 1140px) {
.offer-item:hover .offer-content-inner {
    padding-top: 0;
}

.offer-item:hover:nth-child(even) .offer-content-inner {
    padding-bottom: 0
}
}

.offer-name {
    font-weight: 600;
    font-size: var(--font-20);
    text-align: center;
    color: #003a70;
    padding: 10px;
}

.t {
    width: 30px;
    height: 15px;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.offer-photo {
    position: relative;
}

.offer-item:nth-child(odd) .t {
    background: url(../images/t1.png) no-repeat top center;
    bottom: 0;
}

.offer-item:nth-child(even) .t {
    background: url(../images/t2.png) no-repeat top center;
    top: 0;
}

.offer-item .btn.btn-lg.btn-secondary {
    opacity: 0;
    height: 0;
    margin-top: 8px;
    transition: all 300ms ease-out;
}
@media screen and (min-width: 1140px) {
.offer-item:hover .btn.btn-lg.btn-secondary {
    opacity: 1;
    height: 46px;
}
}

.offer-link {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

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

.photo-in-bg {
    position: relative;
    -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;
    pointer-events: none;
}

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

.mask.about-mask {
    background: linear-gradient(232deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.about-box-container .container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.about-box-container {
    position: relative;
    margin-bottom: 5px;
}

.about-box-wrapper {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    padding-top: var(--space-40);
}

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

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

.mainpage .about-text .text.txt {
    font-weight: 400;
    font-size: var(--font-18);
    line-height: 1.66667;
    color: #fff;
    text-shadow: 4px 11px 38px rgba(0, 0, 0, 0.6);
    margin-bottom: var(--space-50);
    display: -webkit-box;
    -webkit-line-clamp: 11;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.about-text {
    width: 39%;
}

.about-photo {
    width: 33.42%;
}

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

.routes-box-title {
    font-weight: 700;
    font-size: var(--font-40);
    color: #003a70;
}

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

.box-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: calc(var(--space-30) + var(--space-40));
    position: relative;
}

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

.slider-navigation {
    display: flex;
    align-items: center;
    margin-right: 29px;
}

.slider-nav-box .btn.btn-lg.btn-default {
    padding: 0 27px;
}

.slider-navigation button {
    width: 46px;
    height: 46px;
    z-index: 9;
    border: 1px solid var(--color-default);
    border-radius: 50%;
    background: transparent;
    margin-left: 10px;
}
@media screen and (min-width: 1140px) {
.slider-navigation button:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}
}
.routes-slider {
    margin: -19px;
}

.route {
    padding: 19px;
}

.route-link {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 24px 24px var(--space-30);
    justify-content: space-between;
    height: 100%;
}
@media screen and (min-width: 1140px) {
.route-link:hover {
    border-color: var(--color-secondary);
    -webkit-box-shadow: inset 0 0 0 2px rgba(251, 186, 21, 1);
    -moz-box-shadow: inset 0 0 0 2px rgba(251, 186, 21, 1);
    box-shadow: inset 0 0 0 2px rgba(251, 186, 21, 1);
}
}
.route-photo img {
    display: block;
    max-width: 100%;
}

.route-photo {
    margin-bottom: 18px;
    position: relative;
}

.route-type {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    border-radius: 50%;
}

.route-type-name {
    font-weight: 700;
    font-size: 13px;
    line-height: 1.38462;
    text-align: center;
    color: var(--color-default);
}

.route-type-icon {
    width: 35px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2px;
}

.route-title {
    font-weight: 700;
    font-size: var(--font-20);
    text-transform: uppercase;
    color: #003a70;
    margin-bottom: 21px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.route-content-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 35px;
    flex-grow: 1;
    width: 100%;
}

.route-info-box {
    display: flex;
    justify-content: space-between;
    padding-right: 0;
    width: 100%;
}

.route-info {
    display: flex;
    align-items: center;
}

.route-info-icon {
    border-radius: 50%;
    width: 54px;
    height: 54px;
    background: var(--color-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.route-info-text {
    font-weight: 400;
    font-size: 14px;
    color: #003a70;
}

.route-info-text strong {
    font-size: 16px;
    font-weight: bold;
    display: block;
}

.route-link .text.txt {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 300ms ease-out;
    height: 156px;
}

.route-text {
    height: 156px;
}

.route-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    align-items: flex-start;
}
@media screen and (min-width: 1140px) {
.route-link:hover .text.txt {
    -webkit-line-clamp: 3;
    margin-bottom: 35px;
    height: 78px;
}
}
.route-link .btn {
    height: 0;
    opacity: 0;
}
@media screen and (min-width: 1140px) {
.route-link:hover .btn {
    height: 46px;
    opacity: 1;
}
}
.slick-track {
    display: flex !important;
}

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

.benefit-top-mask {
    width: 100%;
    height: 95px;
    background: url(../images/benefit_top.png) no-repeat top center / 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.benefits-box-container .container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 0 auto;
}

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

.benefit-box-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: var(--space-60);
}

.benefits-box-title {
    font-weight: 700;
    font-size: var(--font-40);
    color: #fff;
    margin-bottom: calc(var(--space-50) + var(--space-50));
}

.benefit-box {
    display: flex;
    margin: -60px;
}

.benefit-text .text.txt h3 {
    font-weight: 600;
    font-size: var(--font-20);
    color: #fff;
    margin-bottom: 10px;
}

.benefit-text .text.txt {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.625;
    color: #fff;
}

.benefit-item:nth-child(even) {
    margin-top: calc(var(--space-50) + var(--space-40) + var(--space-25));
}

.benefit-item {
    width: 25%;
    padding: 60px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-30);
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.equipment-box-title {
    font-weight: 700;
    font-size: var(--font-40);
    color: #003a70;
}

.equipment-item {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-top: calc(var(--space-30) + var(--space-40));
    padding-bottom: var(--space-50);
}

.equipment-title {
    font-weight: 400;
    font-size: var(--font-26);
    color: #003a70;
    margin-bottom: 10px;
}

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

.equipment-photo {
    margin-bottom: var(--space-60);
}

.equipment-price {
    font-weight: 700;
    font-size: var(--font-26);
    color: #003a70;
    margin-bottom: 20px;
}


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

.about-box-sub-container .text.txt {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    color: #003a70;
    text-shadow: inherit;
}


.about-box-container-wrapper .text.txt h2 {
    font-weight: 700;
    font-size: var(--font-30);
    color: #003a70;
    margin-bottom: var(--space-40);
}

.about-box-sub-container .photo-in-bg,
.about-box-sub-container .photo-in-bg img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-box-sub-container .photo-in-bg {
    width: 59%;
    right: 0;
}

.page-heading-title {
    font-weight: 700;
    font-size: var(--font-40);
    text-align: center;
    color: #003a70;
    margin-bottom: calc(var(--space-30) + 5px);
}

.about-box-sub-container {
    padding-top: calc(var(--space-40) + 5px);
    margin-bottom: calc(var(--space-40) + 5px);
}

.about-box-container-wrapper {
    position: relative;
    padding-bottom: var(--space-30);
}

.subpage header {
    box-shadow: -3px 0 6px 0 rgba(0, 0, 0, 0.1), -11px 0 11px 0 rgba(0, 0, 0, 0.09), -25px 0 15px 0 rgba(0, 0, 0, 0.05), -45px 0 18px 0 rgba(0, 0, 0, 0.01), -70px 0 20px 0 rgba(0, 0, 0, 0);
}

.about-box-container-wrapper .about-box-wrapper {
    padding-top: calc(var(--space-40) + var(--space-40));
    position: relative;
}

.about-box-container-wrapper .about-box {
    align-items: flex-start;
}

.about-box-container-wrapper .about-photo {
    margin-right: 9%;
    margin-top: 20px;
}

.about-box-container-wrapper .about-box-wrapper .about-text {
    width: 39%;
}

.benefits-box-sub-container .benefits-box-title {
    color: var(--color-default);
    text-align: center;
}

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

.benefits-box-sub-container .benefit-text .text.txt h3 {
    color: var(--color-default);
}

.benefits-box-sub-container .benefit-text .text.txt {
    color: var(--color-default);
}

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

.gallery-page-container {
    padding-top: calc(var(--space-40) + 5px);
    padding-bottom: var(--space-50);
}

.text-intro {
    max-width: 1090px;
    margin: 0 auto var(--space-50);
    text-align: center;
    padding-top: 9px;
}

.text-intro .text.txt {
    font-size: 16px;
    line-height: 1.875;
    text-align: center;
}

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


.equipment-box-sub-container {
    padding-top: 20px;
}

.equipment-box-sub-container .equipment-box-title {
    text-align: center;
    width: 100%;
}

.equipment-box-sub-container .slider-nav-box {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -23px;
}

.slider-navigation:only-child {
    margin-right: 0;
}

.equipment-box-sub-container .box-header {
    margin-bottom: 13px;
}


.routes-box-sub-container {
    padding-top: calc(var(--space-40) + 5px);
}

.routes-box-sub-wrapper .routes-box-title {
    font-size: var(--font-26);
    line-height: 1.15385;
    text-align: center;
    width: 100%;
}

.routes-box-sub-wrapper .slider-nav-box {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -23px;
}

span.routes-box-title-icon {
    width: 48px;
    height: 41px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 13px;
}

span.routes-box-title-icon svg {
    width: 100%;
}

.routes-box-sub-wrapper {
    padding-top: 7px;
    padding-bottom: var(--space-50);
}

.routes-box-sub-wrapper .box-header {
    margin-bottom: var(--space-50);
}

.routes-suggested .text.txt h3 {
    font-weight: 700;
    font-size: var(--font-18);
    line-height: 192%;
    text-align: center;
    color: #003a70;
    margin-bottom: var(--space-50);
}

.routes-suggested {
    padding-top: var(--space-50);
}

.routes-suggested th {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.875;
    color: #fff;
    background: #003A70;
    padding: 10px;
}

.routes-suggested table td {
    border: 0 none;
}

.routes-suggested table {
    margin: 0 auto;
    min-width: 66%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.routes-details-container {
    padding-top: calc(var(--space-40) + 5px);
    padding-bottom: 10px;
}

.routes-details-container .page-heading-title {
    text-transform: uppercase;
    margin-bottom: 38px;
}

.details-photo {
    position: relative;
}

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

.details-top {
    background: url(../images/details_top.png) no-repeat center bottom;
    width: 100%;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
}

.route-details-info {
    display: flex;
    justify-content: flex-start;
    padding-top: var(--space-30);
    align-items: center;
    padding-bottom: var(--space-30);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: var(--space-50);
}

.route-type-details {
    display: flex;
    white-space: nowrap;
    align-items: center;
    margin-right: 22%;
}

.route-type-details .route-type-icon {
    width: 46px;
    height: 40px;
    margin-right: 18px;
}

.route-type-details .route-type-icon svg {
    width: 100%;
}

.route-type-details .route-type-name {
    font-size: var(--font-24);
    line-height: 1.25;
}

.route-details-info .route-info-box {
    width: auto;
    padding-right: 0;
}

.route-details-info .route-info-box .route-info-text {
    font-size: var(--font-20);
}

.route-details-info .route-info-box .route-info-text strong {
    font-size: var(--font-20);
}

.route-details-info .route-info-icon {
    width: 75px;
    height: 75px;
    margin-right: 30px;
}

.route-details-info .route-info-icon svg {
    width: 55%;
}

.details-box .text.txt {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    color: #003a70;
}

.details-box {
    margin-bottom: var(--space-50);
}

.routes-details-container .gallery-box {
    margin-bottom: calc(var(--space-50) + 5px);
}

.route-details-info .route-info {
    margin-right: 70px;
}

.page-contact .page-heading-title {
    color: #fff;
    width: 100%;
}

.contact-box-container {
    padding-top: calc(var(--space-40) + 5px);
    position: absolute;
    z-index: 1;
    width: 100%;
    left: 0;
}

.page-contact .footer-top {
    display: none;
}

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

body.page-contact {
    min-height: 1px;
}

.mainpage .equipment-box-sub-container {
    padding-top: calc(var(--space-40) + var(--space-40));
}

.mainpage .equipment-box-sub-container .equipment-box-title {
    text-align: left;
}

.mainpage .equipment-box-sub-container .box-header {
    margin-bottom:  calc(var(--space-40) + var(--space-30));
}

.mainpage .equipment-item {
    padding-bottom: 0;
}

.footer-left .form-element.form-element-checkbox {
    margin-bottom: 40px;
}

.footer-left { }