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


    --font-72: 72px;
    --font-65: 65px;
    --font-50: 50px;
    --font-48: 48px;
    --font-40: 40px;
    --font-38: 38px;
    --font-36: 36px;
    --font-35: 35px;
    --font-30: 30px;
    --font-28: 28px;
    --font-26: 26px;
    --font-24: 24px;
    --font-22: 22px;
    --font-20: 20px;
    --font-18: 18px;

    --container-padding: 40px;

    /** SPECIFIC **/
    --color-primary: #002757;
    --color-secondary: #c5d000;
    --color-default: #333;
}

body {
    color: #002757;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
}

/**
 * BASIC
 */

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

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: #002757;
}

a:hover, a:focus {
    color: #c5d000;
}

/**
 * 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: 1670px;
    width: 100%;
}

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

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

/**
 * THEMES
 */

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

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

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

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

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

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

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

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

.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-lg {
    transition: all 0.2s;
    border-radius: 23px;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    padding: 11px 40px;
    border: 2px solid;
}

.btn-sm {
    transition: all 0.2s;
    border-radius: 23px;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    padding: 8px 40px;
}

.btn-primary {
    background: transparent;
    border-color: #e5e5e5;
    color: var(--color-primary);
}


.btn.btn-secondary {
    background: transparent;
    border-color: #fff;
}


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


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

.panel {
    box-shadow: none;
}

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


/**
 * TEXT
 */

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

/** 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;
    width: 7px;
    height: 7px;
    left: -16px;
    margin-left: -7px;
    font-family: sans-serif;
    position: relative;
    background: #c6d101;
    top: -1px;
    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;
}


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

/**
 * HEADER
 */

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.2s;
}

.header-top {
    background-color: #002757;
    padding-bottom: 5px;
    padding-top: 5px;
}

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

.slogan {
    text-transform: uppercase;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.slogan:after {
    content: '';
    height: 12px;
    width: 1px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.5);
    margin-left: 32px;
    margin-right: 28px;
}

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

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

.social-box-title {
    font-size: 13px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    margin-right: 20px;
}

.header-top .social-desc {
    display: none;
}


header .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

header .social-icon:hover {
    color: #002757;
    background: #c5d000;
    border-color: #c5d000;
}


nav#top-menu ul {
    display: flex;
}

nav#top-menu ul li a {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 300;
    color: #fff;
    padding: 13px;
}

@media screen and (min-width: 1140px) {
    nav#top-menu ul li a:hover {
        color: #c5d000;
    }
}

nav#top-menu ul li.active a {
    color: #c5d000;
}


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

.logo {
}

.logo a {
    display: block;
}

.logo a img {
    display: block;
    transition: all 300ms ease-out;
}

.logo a img.logo-main {
    display: block;
}

.logo a img.logo-sub {
    display: none;
}

header.sticky .logo a img.logo-sub, .subpage .logo a img.logo-sub {
    display: block;
}

header.sticky .logo a img.logo-main, .subpage .logo a img.logo-main {
    display: none;
}

header.sticky .logo a img {
    height: 50px;
}

header.sticky {
    background: rgba(255, 255, 255);
}

header.sticky #main-menu li a {
    color: #002757;
}

#main-menu ul {
    display: flex;
}

#main-menu li {
    position: relative;
    margin-left: 39px;
}

#main-menu li a {
    font-size: 17px;
    text-transform: uppercase;
    color: #fff;
}

#main-menu li a:hover {
    color: #c5d000;
}

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

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

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

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

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

.mainsearch.rwdPanel {
    display: block;
    padding: 0;
}

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

.mainsearch-search {
    position: relative;
}

.mainsearch .form-element-container {
}

.mainsearch input.form-control {
    display: block;
    height: 46px;
    border-right: none;
    box-shadow: none;
    width: 100%;
    font-size: 15px;
    text-transform: uppercase;
    color: #002757;
    font-family: oswald, sans-serif;
    border-radius: 23px;
    padding: 5px 15px 5px 37px;
    background: #fff;
}

.mainsearch-submit {
    border: 2px solid var(--color-secondary);
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    background: transparent;
    font-size: 15px;
    color: #002757;
    font-weight: 500;
    padding: 0 33px 0 16px;
    text-transform: uppercase;
    border-radius: 23px;
    background: var(--color-secondary);
}

.mainsearch .alert-block,
.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;
}


.slider,
.main-slider,
.slider .slide,
.slider .slider-photo {
    height: 100vh;
    min-height: 768px;
    position: relative;
    max-height: 950px;
    transition: all 300ms ease-out;
}

.slider-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* justify-content: center; */
    padding-top: 268px;
    height: 100%;
    width: 35%;
}

.slide-price {
    font-size: var(--font-24);
    font-weight: 300;
    color: #fff;
    background: url(../images/price_bg.png) no-repeat right top;
    padding: 2px 44px 20px 15px;
    line-height: 56px;
    font-style: italic;
    margin-bottom: -8px;
}

.slide-price strong {
    font-size: var(--font-30);
    font-weight: bold;
}

.title1, .title2 {
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: var(--font-72);
    line-height: 119%;
}

.title2 {
    margin-bottom: 30px;
}


.description {
    color: #fff;
    margin-bottom: 42px;
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
    letter-spacing: 0.03em;
}

.slider-photo {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100%;
    position: relative;
}

@media screen and (min-width: 1140px) {
    .slider-photo .slider-photo-img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

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

.mask.slide-mask {
    background: rgb(3, 22, 44, 0.4) url(../images/slider_mask.png) no-repeat center bottom / 100% auto;
    animation: float 3.2s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(9px);
    }
    100% {
        transform: translateY(0px);
    }
}




.slider button.slick-arrow {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 50%;
    background: transparent;
    font-size: 25px;
    line-height: 100%;
    color: #fff;
    z-index: 9;
    border: 2px solid #fff;
    border-radius: 50%;
    top: 28%;
}

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

.slider button.prev {
    margin-right: -724px;
}

.slider button.next {
    margin-right: -794px;
}

/**
 * FOOTER
 */


footer {
    background: #052b5b url(../images/footer_bg.png) no-repeat top center / 100% auto;
}

.footer-boxes-container {
    position: relative;
}

.footer-boxes {
    padding-bottom: var(--space-50);
    padding-top: var(--space-50);
    display: flex;
}

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

.footer-box:first-child {
    width: 37%;
    padding-right: 9%;
    padding-top: 4%;
}

.footer-box.footer-contact {
    width: 25%;
}

.footer-box:last-child {
    padding-right: 0;
    width: 10%;
}

.footer-col-title {
    margin-bottom: 23px;
    font-weight: 600;
    font-size: 20px;
    color: #ffff;
    text-transform: uppercase;
}


.footer-box .txt {
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
    line-height: 34px;
    letter-spacing: 0;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
}

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

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

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

}

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

.contact-links {
    padding-top: 8px;
}


.contact-link {
    line-height: normal;
    padding: 0;
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 14px;
}


.contact-link .caption {
    font-size: 14px;
}

.contact-link .btn-icon {
    width: 44px;
    height: 44px;
    margin-right: 14px;
    background: var(--color-secondary);
    border-radius: 50%;
    padding: 2px;
    flex-shrink: 0;
}
.contact-link .btn-icon svg, .contact-link .btn-icon svg * {
    fill: var(--color-primary);
}

@media screen and (min-width: 1140px) {
    .contact-link:hover .btn-caption {
        color: var(--color-secondary)
    }
}

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

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

footer .social {
    display: flex;
    color: #fff;
    text-align: left;
    font-size: 14px;
    font-weight: 300;
    line-height: 124%;
    align-items: center;
}


footer .social-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-secondary);
    background: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 0;
    margin-right: 13px;
}


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

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

.footer-bar-content > * {
    float: left;
}

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

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

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

.footer-bar-links a:hover {
    color: #c5d000;
}

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

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

/* INPUTY */
.form-control,
.form .form-control {
    box-shadow: none;
    height: 46px;
}

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


.form-box .row {
    margin-left: -5px;
    margin-right: -5px;
}

.form-box .col-lg-1,
.form-box .col-lg-10,
.form-box .col-lg-11,
.form-box .col-lg-12,
.form-box .col-lg-2,
.form-box .col-lg-3,
.form-box .col-lg-4,
.form-box .col-lg-5,
.form-box .col-lg-6,
.form-box .col-lg-7,
.form-box .col-lg-8,
.form-box .col-lg-9,
.form-box .col-md-1,
.form-box .col-md-10,
.form-box .col-md-11,
.form-box .col-md-12,
.form-box .col-md-2,
.form-box .col-md-3,
.form-box .col-md-4,
.form-box .col-md-5,
.form-box .col-md-6,
.form-box .col-md-7,
.form-box .col-md-8,
.form-box .col-md-9,
.form-box .col-sm-1,
.form-box .col-sm-10,
.form-box .col-sm-11,
.form-box .col-sm-12,
.form-box .col-sm-2,
.form-box .col-sm-3,
.form-box .col-sm-4,
.form-box .col-sm-5,
.form-box .col-sm-6,
.form-box .col-sm-7,
.form-box .col-sm-8,
.form-box .col-sm-9,
.form-box .col-xs-1,
.form-box .col-xs-10,
.form-box .col-xs-11,
.form-box .col-xs-12,
.form-box .col-xs-2,
.form-box .col-xs-3,
.form-box .col-xs-4,
.form-box .col-xs-5,
.form-box .col-xs-6,
.form-box .col-xs-7,
.form-box .col-xs-8,
.form-box .col-xs-9 {
    padding-left: 5px;
    padding-right: 5px;
}

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

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

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

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

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

.select2-container .select2-selection--single {
    padding: 0;
}

.form button.captcha-refresh {
    right: 15px;
    border-color: rgba(0, 0, 0, .1);
    color: #e10121;
    border-radius: 0 6px 6px 0;
    background-color: transparent;
    border-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

/**
 * FORM
 */

form.form {
    padding: 0;
}

/* labele */
.form .form-element-name {
    margin-bottom: 6px;
    font-size: 16px;
    font-family: oswald, sans-serif;
    color: #c5d000;
    font-weight: 600;
}

.form .form-required-mark {
    color: #E2001A;
    font-weight: bold;
    font-size: 16px;
}

/* INPUTY */
.form .form-control {
    box-shadow: 0 0 0 transparent;
    /*color: #fff;*/
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    letter-spacing: 0;
    background: transparent;
    font-family: 'oswald', sans-serif;
    border-radius: 23px;
    border-color: rgb(0, 0, 0, 0.1);
    font-weight: 300;
}

.form-control-feedback {
    display: none !important;
}

.form .alert-block .error {
    display: block;
    clear: both;
    margin-top: 0;
    margin-bottom: 0;
    padding: 10px 18px 10px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background: #E2001A !important;
    color: #fff !important;
    font-weight: normal !important;
    font-size: 13px;
}

.form .form-element-radio .alert-block .error,
.form .form-element-checkbox .alert-block .error {
    display: block;
    clear: both;
    margin-top: 5px;
    margin-bottom: 0;
    padding: 0 25px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background: transparent !important;
    color: #E2001A !important;
    font-weight: bold !important;
    font-size: 13px;
}

.has-error .form-control {
    border-color: #E2001A;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.form-group-lg .form-element-radio,
.form-group-lg .form-element-checkbox {
    letter-spacing: 0.05em;
}

.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {
    background: #4a44a9
}

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

.service-box-form .form textarea.form-control:not([rows]) {
    height: 90px;
}

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label > *,
.form .consent-all {
    font-size: 13px;
    line-height: 24px;
    color: #002757;
    font-family: 'oswald', sans-serif;
    font-weight: 300;
}

.form .consent-all {
    margin-bottom: 20px;
    display: block;
}

/* ZAOKRAGLENIA INPUTOW*/
.form .form-group-lg .captcha-image-wrapper {
    border-radius: 23px;
    height: 46px;
    padding-right: 50px;
    background: transparent;
}

.form button.captcha-refresh.btn.btn-default {
    right: 5px;
    border-radius: 0 23px 23px 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    width: 50px;
}

.form i.fa.fa-refresh {
    font-size: 19px;
    color: #fff;
}

@media screen and (min-width: 1140px) {
    button.captcha-refresh.btn.btn-default:hover i.fa.fa-refresh {
        color: #000;
    }
}

/**************** checkbox *******************/

.form .checkboxradio-container {
    margin-top: 0;
    text-align: left;
}

.form .form-element-radio-container .row > *:not(:only-child),
.form .form-element-checkbox-container .row > *:not(:only-child) {
    margin-bottom: 10px;
}

.form .form-group-lg.form-group-lg .icheckbox_minimal-custom,
.form .form-group-lg.form-group-lg .iradio_minimal-custom {
    left: 0;
    top: 0;
    margin-top: 0;
    margin-left: 0;
}

.form-group-lg .icheckbox_minimal-custom,
.form-group-lg .iradio_minimal-custom {
    zoom: 1.55;
}

.form-group-lg .form-element-switcher .icheckbox_minimal-custom,
.form-group-lg .form-element-switcher .iradio_minimal-custom {
    zoom: normal;
}

.form .form-group-lg .checkboxradio-container label {
    padding-top: 3px;
    padding-left: 50px;
    padding-bottom: 6px;
    line-height: 1.2;
}

.form .form-group-lg .form-element-radio .alert-block .error,
.form .form-group-lg .form-element-checkbox .alert-block .error {
    padding-left: 50px;
}


.form-box .row {
    margin-left: -5px;
    margin-right: -5px;
}

.form-box .col-lg-1,
.form-box .col-lg-10,
.form-box .col-lg-11,
.form-box .col-lg-12,
.form-box .col-lg-2,
.form-box .col-lg-3,
.form-box .col-lg-4,
.form-box .col-lg-5,
.form-box .col-lg-6,
.form-box .col-lg-7,
.form-box .col-lg-8,
.form-box .col-lg-9,
.form-box .col-md-1,
.form-box .col-md-10,
.form-box .col-md-11,
.form-box .col-md-12,
.form-box .col-md-2,
.form-box .col-md-3,
.form-box .col-md-4,
.form-box .col-md-5,
.form-box .col-md-6,
.form-box .col-md-7,
.form-box .col-md-8,
.form-box .col-md-9,
.form-box .col-sm-1,
.form-box .col-sm-10,
.form-box .col-sm-11,
.form-box .col-sm-12,
.form-box .col-sm-2,
.form-box .col-sm-3,
.form-box .col-sm-4,
.form-box .col-sm-5,
.form-box .col-sm-6,
.form-box .col-sm-7,
.form-box .col-sm-8,
.form-box .col-sm-9,
.form-box .col-xs-1,
.form-box .col-xs-10,
.form-box .col-xs-11,
.form-box .col-xs-12,
.form-box .col-xs-2,
.form-box .col-xs-3,
.form-box .col-xs-4,
.form-box .col-xs-5,
.form-box .col-xs-6,
.form-box .col-xs-7,
.form-box .col-xs-8,
.form-box .col-xs-9 {
    padding-left: 5px;
    padding-right: 5px;
}

.form .checkboxradio-container .error {
    margin-top: 0;
    font-size: 13px;
}

.form .checkboxradio-container label {
    line-height: 24px;
    font-size: 14px;
    color: #002757;
    margin-bottom: 0;
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 30px;
    font-family: 'oswald', sans-serif;
    font-weight: 300;
}

.form .checkboxradio-container [class^="icheckbox"], .form .radio [class^="icheckbox"] {
    position: absolute;
    margin-left: -26px;
    margin-top: 3px;
}

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

button.btn.btn-primary .fa {
    float: right;
    line-height: 46px;
}

form.form button.btn.btn-secondary {
    text-align: center;
    margin: 0 auto;
    display: block;
    float: none;
    width: auto;
    padding: 0 32px;
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-primary);
    font-weight: 500;
    height: 46px;
}

@media screen and (min-width: 1140px) {
form.form button.btn.btn-secondary:hover {
    background: #fff;
    color: var(--color-secondary);
}
}

.form .before-consent-row {
    margin-bottom: 6px;
    padding-top: 12px;
}

.checkbox {
    margin-bottom: 0;
    margin-top: 12px;
}

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

.form-box {
}

.row.after-consent-row {
    margin-bottom: 10px;
    margin-top: 14px;
}

.row a {
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
}

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

}

.form-element-option-text a {
    font-weight: bold;
}


/**
 * 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;
    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: gray;
    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 {
    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
 */
.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: #f0f;
    }

    .langs-menu:not(.langs-menu--list):not(:hover):not(:focus):not(:focus-within) ul {
        pointer-events: none;
        opacity: 0;
        transform: translateY(-5px);
        -ms-transform: translateY(-5px);
    }

    .langs-menu:focus-within .lang-button .arrow,
    .langs-menu:hover .lang-button .arrow,
    .langs-menu:focus .lang-button .arrow {
        transform: rotateZ(180deg);
        -ms-transform: rotateZ(180deg);
    }
}

.flag-icon {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.langs-menu--list .lang-button,
.langs-menu--list .langs-menu-short {
    display: none;
}

.langs-menu.langs-menu--list ul {
    position: static;
    opacity: 1;
    display: flex;
    align-items: center;
    border: none;
    background: none;
}

.langs-menu.langs-menu--list li {
    margin: 4px 10px;
    border: none;
}

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

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

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

/**
 * ARTICLE
 */
.article {
    overflow: hidden;
    padding-bottom: 9px;
}

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

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

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

/**
 * GALLERY
 */

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

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

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

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

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 20px;
    color: #fff;
    background-color: rgba(0, 39, 87, 0.5);
    transition: opacity 0.3s;
    border-radius: 15px;
}

.gallery-picture-hover > * {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background: url(../images/hover.png) no-repeat center center;
    width: 115px;
    height: 135px;
    margin: 0 auto;
    box-shadow: 0 6px 13px 0 rgba(0, 39, 87, 0.2);
    text-indent: -20000px;
}

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


.offer-box-container {
    padding-top: var(--space-60);
    padding-bottom: var(--space-60);
    background: url(../images/aktualne_bg.png) no-repeat center 15px / 100% auto;
}

.category-box-container + .offer-box-container {
    padding-top: var(--space-60);
    padding-bottom: var(--space-60);
    background: url(../images/bg4.png) no-repeat center 15px / 100% auto;
}

.offer-box-title {
    font-size: var(--font-40);
    font-weight: 500;
    color: var(--color-primary);
    text-transform: uppercase;
    line-height: 1;
    text-align: center
}


.offer-box-header {
    position: relative;
    margin-bottom:  var(--space-60);
}

.header-buttons-right {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -23px;
}

.header-buttons-right * {
    vertical-align: middle;
    display: inline-block;
}

.header-slider-nav {
    position: relative;
    padding-right: 26px;
}


.header-buttons-right .btn-primary {
    padding: 0 30px;
    height: 46px;
    line-height: 42px;
}

.header-slider-nav .prev, .header-slider-nav .next {
    width: 46px;
    height: 46px;
    position: relative;
    color: var(--color-primary);
    z-index: 2;
    border: 2px solid #e5e5e5;
    background: #fff;
    margin-left: 8px;
    border-radius: 50%;
    line-height: 16px;
}


.header-slider-nav .prev:after {
    content: "\f104";
    display: block;
    font: normal normal normal 20px/1 FontAwesome;
    vertical-align: middle;
}

.header-slider-nav .next:after {
    content: "\f105";
    display: block;
    font: normal normal normal 20px/1 FontAwesome;
    vertical-align: middle;
}


@media screen and (min-width: 1140px) {
.header-slider-nav button:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}
}

.offer-box-content {
    margin: -25px;
}

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

.offer-link {
    border: 1px solid #e7e7e7;
    display: block;
    border-radius: 20px;
}

.offer-photo {
    position: relative;
}

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

.label-offer {
    position: absolute;
}

.label-offer {
    position: absolute;
    top: 20px;
    right: -17px;
    width: 80px;
    height: 49px;
    color: #fff;
    text-align: center;
    line-height: 1;
    font-size: 12px;
    text-transform: uppercase;
    padding-bottom: 9px;
    padding-left: 11px;
    padding-top: 0;
}

.label-blue {
    background: url(../images/label_blue.png) no-repeat left center;
}

.label-green {
    background: url(../images/label_green.png) no-repeat left center;
}


.label-price {
    clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
    color: #fff;
    position: absolute;
    bottom: 25px;
    left: 0;
    font-size: var(--font-22);
    font-weight: 300;
    padding: 8px 28px 8px 16px;
}

.label-offer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.offer-content {
    padding: 26px 30px 30px;
}

.offer-title {
    font-size: var(--font-18);
    font-weight: 500;
    color: var(--color-primary);
    text-transform: uppercase;
    line-height: 117%;
    margin-bottom: 13px;
    text-align: center;
    padding: 0 39px;
}


.offer-date {
    font-size: 13px;
    font-weight: 300;
    padding-left: 22px;
    position: relative;
    color: var(--color-primary);
    text-align: center;
}

.category-box-container {
    padding-top:  var(--space-60);
    position: relative;
    padding-bottom: 140px;
}

.category-box-title {
    font-size: var(--font-40);
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 46px;
}

.category-box {
    margin: 0 -140px; display:flex;
}

.category-item {
    padding: 25px; width:33.33%; position:relative;
}


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

.category-item .category-icon {
    width: 110px;
    margin-top: -19px;
    margin-bottom: 4px;
}

.category-item.slick-slide.slick-active.slick-current .category-icon {
    margin-bottom: -20px;
}

.category-icon svg {
    fill: #fff;
}


.mask.cat-mask {
    background: rgba(0, 0, 0, 0.2);
    transition: all 300ms ease-out;
    border-radius: 50%;
    opacity: 0;
}


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

.category-content svg {
    display: block;
    max-width: 100%;
}

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


.category-name {
    text-transform: uppercase;
    text-shadow: 0 3px 12px rgb(21 21 20 / 52%);
    overflow: visible;
    position: relative;
    text-align: center;
    padding: 3px 10px;
    font-size: var(--font-28);
    color: #fff;
    margin-bottom: 5px;
}


.category-text {
    font-size: 12px;
    line-height: 24px;
    font-weight: 300;
    color: #fff;
    padding: 0 50px;
    text-align: center;
    margin-bottom: 17px;
}


.category-box button.slick-arrow {
    width: 46px;
    height: 46px;
    position: absolute;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    margin-left: 8px;
    border-radius: 50%;
    line-height: 16px;
    color: #fff;
    top: 50%;
    margin-top: -23px;
    font-size: 20px;
}


@media screen and (min-width: 1140px) {
    .category-box button:hover {
        background: var(--color-primary);
        border-color: var(--color-primary);
    }
}

.category-item .category-link {
    border: 2px dashed #fff;
    display: block;
    position: relative;
    border-radius: 50%;
    box-shadow: 0 10px 27px 0 rgba(0, 39, 87, 0.46);
    width: 100%;
}

.category-item .category-link {
    transform: scale(.75);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.category-item.slick-slide.slick-active.slick-current .category-link {
    transform: scale(1.3);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.category-item.slick-slide.slick-active.slick-current .category-link {

    border-style: solid;
    border-width: 18px;
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(3, 22, 44, 0.431);

}


.category-item.slick-slide.slick-active.slick-current .category-link.mask.cat-mask {
    opactiy: 1
}


.category-item .category-link .category-content-hidden {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 300ms ease-out;
    margin-top: 0;
    position: absolute;
    bottom: -10000px;
    flex-direction: column;
}


.category-item.slick-slide.slick-active.slick-current .category-link .category-content-hidden {
    opacity: 1;
    position: relative;
    bottom: auto
}


.category-content-hidden .btn.btn-primary {
    color: #fff;
    height: 36px;
    line-height: 32px;
    font-size: 12px;
    padding: 0 30px;
}

.category-link:hover .category-content-hidden .btn.btn-primary {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-primary);
}

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

.category-box .slick-list {
    padding: 50px 50px 88px !important;
}

.category-box button.slick-prev.slick-arrow {
    left: -25px;
}

.category-box button.slick-next.slick-arrow {
    right: -25px;
}

.mask.category-mask {
    background: url(../images/category_mask.png) no-repeat bottom center / 100% auto, url(../images/bg3.png) no-repeat bottom center / 100% auto;
    background-color: rgba(0, 39, 87, 0.7);
    animation: float 3.2s ease-in-out infinite;
}

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

.about-slider {
    background: url(../images/line.png) no-repeat center;
    margin: -80px -40px 6px;
}

.about-item {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    background: #103967;
    border-radius: 50%;
}

.about-icon {
    width: 53%;
    margin: -40px auto -29px;
}

.about-text {
    padding: 0 50px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 128%;
    height: 62px;
}

.about-item-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: absolute;
    justify-content: center;
}

.about-item-content {
}

.about-slide {
    padding: 80px;
}

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

.about-box-home-container {
    padding-top: 70px;
    position: relative;
    padding-bottom: 70px;
}

.about-item:before {
    content: '';
    border-radius: 50%;
    background-color: rgb(197, 208, 0);
    position: absolute;
    width: 17px;
    height: 17px;
    left: -8px;
    top: 50%;
    margin-top: -8px;
}


.about-item:after {
    content: '';
    border-radius: 50%;
    background-color: rgb(197, 208, 0);
    position: absolute;
    width: 17px;
    height: 17px;
    right: -8px;
    top: 50%;
    margin-top: -8px;
}

.mask.about-mask {
    background: rgba(0, 39, 87, 0.6) url(../images/bg5.png) no-repeat bottom center;
}

.about-slider button.slick-arrow {
    width: 46px;
    height: 46px;
    position: absolute;
    z-index: 2;
    border: 2px solid rgb(255, 255, 255);
    background: #fff;
    margin-left: 8px;
    border-radius: 50%;
    line-height: 16px;
    color: var(--color-primary);
    top: 50%;
    margin-top: -23px;
    font-size: 20px;
    transform-style: preserve-3d;
}

.about-slider button.slick-prev.slick-arrow {
    left: -25px;
}

.about-slider button.slick-prev.slick-arrow:before {
    width: 0;
    height: 3px;
    background: url(../images/line.png) no-repeat;
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 19px;
    z-index: 1;
    transform: translateZ(-1px);

}

.drawLine button.slick-prev.slick-arrow:before,
.drawLine button.slick-next.slick-arrow:after{
    animation: drawLine 1s linear forwards;
}

@keyframes drawLine {
    0%{
        width: 0;
    }
    100%{
        width: 172px;
    }
}


.about-slider button.slick-next.slick-arrow:after {
    width: 0;
    height: 3px;
    background: url(../images/line.png) no-repeat;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 19px;
    z-index: 1;
    transform: translateZ(-1px);
}

.about-slider button.slick-next.slick-arrow {
    right: -25px;
}


@media screen and (min-width: 1140px) {
    .about-slider button:hover {
        background: var(--color-primary);
        border-color: var(--color-primary);
        color: #fff;
    }
}


.newsletter-title {
    font-size: var(--font-50);
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 40px;
}

.about-bottom {
    display: flex;
    position: relative;
    padding-bottom: 36px;
}

.newsletter-box {
    width: 50%;
    padding-right: 25%;
}

.know-box {
    width: 50%;
}

.newsletter-text .text.txt {
    color: #fff;
    margin-bottom: 43px;
}

.about-box-home-container .container {
    position: relative;
}

.newsletter {
    width: 100%;
}

.newsletter .form .form-control {
    border-radius: 23px;
    height: 46px;
    background: transparent;
    border: 2px solid #fff;
    padding-left: 33px;
    padding-right: 49px;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}


.newsletter .form .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #fff;
    opacity: 1;
}

.newsletter .form .form-control::-moz-placeholder { /* Firefox 19+ */
    color: #fff;
    opacity: 1;
}

.newsletter .form .form-control:-ms-input-placeholder { /* IE 10+ */
    color: #fff;
    opacity: 1;
}

.newsletter .form .form-control:-moz-placeholder { /* Firefox 18- */
    color: #fff;
    opacity: 1;
}

.form-element.form-element-email {
    position: relative;
}

.newsletter button.btn.btn-primary svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: var(--color-primary);
}

.newsletter button.btn.btn-primary {
    height: 46px;
    position: absolute;
    border: 0 none;
    z-index: 2;
    top: 0;
    right: 0;
    margin-top: 0;
    background: #c6d101;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0 31px;
    border-radius: 23px;
    color: #fff;
}

@media screen and (min-width: 1140px) {
    .newsletter button.btn.btn-primary:hover svg {
        fill: #fff
    }
	
	.newsletter button.btn.btn-primary:hover {
    color: #c6d101;
    background: #fff;
}
}

form#newsletter-form {
    padding: 0;
    position: relative;
}

.know-title {
    font-size: var(--font-50);
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 40px;
}

.know-text .text.txt {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
}

.know-text ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 3em;
    -moz-column-gap: 3em;
    column-gap: 3em;
}

.know-text {
    margin-left: -14px;
}

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

.header-top .social-desc {
    display: none;
}


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

.subpage #main-menu li a:hover {
    color: var(--color-secondary);
}

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

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

.about-box-container {
    padding-top: 44px;
    position: relative;
    background: #03295a;
}

.page-heading-title {
    color: #002757;
    text-align: center;
    text-transform: uppercase;
    font-size: var(--font-40);
    font-weight: 500;
    margin-bottom: 39px;
}

.about-box-container .page-heading-title {
    color: #fff;
}

.slogan1, .slogan2, .slogan3, .slogan4, .slogan5 {
    position: absolute;
    font-style: italic;
    text-transform: uppercase;
}

.about-box {
    padding: 0 13% var(--space-50);
}

.about-box .text.txt {
    color: #fff;
    text-align: center;
}

.text.txt a {
    color: #c5d000;
}

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

.gallery-logo {
    text-align: center;
    padding-right: 82px;
    margin-bottom:  var(--space-60);
}

.gallery-logo img {
    display: block;
    margin: 0 auto;
    max-width: 62%;
}


.slogan1 {
    font-size: var(--font-26);
    color: rgba(255, 255, 255, 0.4);
    font-weight: bold;
    right: 50%;
    margin-right: -605px;
    top: 15%;
}

.slogan2 {
    font-weight: bold;
    font-size: var(--font-35);
    color: rgba(255, 255, 255, 0.6);
    left: 50%;
    margin-left: -916px;
    top: 61%;
}

.slogan3 {
    font-weight: bold;
    font-size: var(--font-65);
    color: rgba(255, 255, 255, 0.6);
    right: 50%;
    margin-right: -861px;
    top: 69%;
}

.slogan4 {
    font-size: var(--font-26);
    color: rgba(255, 255, 255, 0.15);
    font-weight: bold;
    left: 50%;
    margin-left: -811px;
    top: 105%;
}

.slogan5 {
    font-size: var(--font-30);
    color: rgba(0, 39, 87, 0.149);
    font-weight: bold;
    position: absolute;
    right: 50%;
    top: 145%;
    margin-right: -900px;
}

.gallery-box-container {
    padding-bottom: var(--space-60);
    background: url(../images/gallery_bg.jpg) no-repeat top center;
}

.filter-box-container {
    padding-top: 44px;
    padding-bottom: 50px;
}

.filter-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: var(--space-50);
}

.filter-box ul {
    display: flex;
    margin: -6px;
}

.filter-box ul li {
    width: 33.33%;
    padding: 6px;
}

.filter-box ul li a {
    font-size: 15px;
    color: #002757;
    display: block;
    border-style: solid;
    border-width: 2px;
    border-color: rgba(0, 0, 0, 0.1);
    height: 46px;
    text-transform: uppercase;
    line-height: 42px;
    border-radius: 23px;
}

.filter-box ul li.active a {
    background: #c5d000;
    border-color: #c5d000;
}

.filter-box ul li a:hover {
    background: #c5d000;
    border-color: #c5d000;
}


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

.search-icon {
    width: 155px;
    margin-left: -3%;
    margin-right: 1.5%;
    height: 155px;
}

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


.search-box-title {
    text-align: center;
    text-transform: uppercase;
    font-size: var(--font-30);
    font-weight: 500;
    color: #fff;
    margin-right: 10.8%;
}

.search {
    width: 578px;
    max-width: 100%
}

.mainsearch-submit .btn-icon {
    width: 46px;
    height: 46px;
    padding: 8px;
    margin-right: 2px;
}

.search-icon img {
    display: block;
    max-width: 105%;
}

.mainsearch-submit:hover {
    background: #fff;
    color: var(--color-secondary);
}

.mainsearch-submit:hover svg {
    fill: var(--color-secondary)
}

.filter-search {
    background: url(../images/search_bg.jpg) no-repeat center center;
    position: relative;
}

img.bg7 {
    position: absolute;
    right: 50%;
    top: 63px;
    margin-right: -945px;
}

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

.offer-boxes {
    padding-top: var(--space-50);
}

.offer-box-list .offer-item {
    padding: 25px 45px;
    width: 33.33%;
}

.pagination-wrapper {
    max-width: 100%;
}

.pagination-wrapper ul li.next a, .pagination-wrapper ul li.prev a {
    width: 46px;
    height: 46px;
    position: relative;
    color: var(--color-primary);
    z-index: 2;
    border: 2px solid #e5e5e5;
    background: #fff;
    border-radius: 50%;
    line-height: 40px;
    font-size: 20px;
    text-align: center;
}

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

.pagination-wrapper ul li.prev a {
    padding-right: 2px;
}

.pagination-wrapper ul li:nth-last-child(2) a {
    background: #f5f5f5;
    border-color: #f5f5f5;
}

.pagination-wrapper ul li.active a {
    border-color: #b5e1f5;
}

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

.pagination-wrapper ul li > span {
    display: block;
    font-size: 14px;
    line-height: 46px;
    margin-left: 5px;
    margin-right: 5px;
}
.pagination-wrapper ul li a {
    width: 46px;
    height: 46px;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    padding: 0;
    line-height: 42px;
}

.pagination-wrapper ul li.next {
    float: right;

}


.pagination-wrapper ul li.prev{
    float: left;

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

.details-box {
    height: 792px;
}

.details-photo {
    position: relative;
    width: 100%;
    height: 100%;
    /* opacity: 0; */
}

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

.mask.details-mask {
    background: rgb(3, 22, 44, 0.4) url(../images/details_mask.png) no-repeat center bottom / 100% auto;
    animation: float 3.2s ease-in-out infinite;
}

.details-box .container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    max-width: 1670px;
    width: 100%;
    height: 100%;
}

.details-text {
    padding-top:  var(--space-50);
    max-width: 42%;
}

.details-title {
    font-size: var(--font-40);
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 31px;
}

.details-text .text.txt {
    font-size: 16px;
    color: rgb(255, 255, 255);
    line-height: 1.875;
    text-shadow: 0 9px 12px rgba(22, 22, 21, 0.16);
    width: 80%;
    letter-spacing: 0.03em;
    margin-bottom: 42px;
}

.details-price {
    font-weight: 300;
    padding: 5px 44px 5px 15px;
    line-height: 56px;
    font-style: italic;
    clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
    color: #fff;
    font-size: var(--font-30);
    display: inline-block;
}

.details-price strong {
    font-size: var(--font-38);
}

.details-price-box {
    filter: drop-shadow(0px 9px 12px rgba(22, 22, 2, 0.1));
}

.details-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    padding-bottom: 29px;
}

.label-offer.label-blue.label-big {
    background: url(../images/label_blue_big.png) no-repeat left center;
    width: 114px;
    height: 71px;
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    padding-right: 23px;
    line-height: 143%;
    padding-bottom: 14px;
    margin-right: 4.4%;
}

.details-icon {
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
    background: #002757;
    width: 50px;
    height: 50px;
    padding: 2px;
}

.details-icon svg, .details-icon svg * {
    fill: #ffff;
}

.details-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: var(--font-18);
    font-weight: 300;
    color: #002757;
    text-transform: uppercase;
    margin-right: 4.2%;
}


.label-offer.label-blue.label-big > * {
    font-size: var(--font-18);
}

.details-tour-box {
    position: relative;
}

.details-menu-box.affix {
    position: fixed;
    width: 100%;
    z-index: 1;
    top: 117px;
}

.details-menu-box {
    padding-top: 12px;
    padding-bottom: 12px;
    background: #002757;
}

nav.details-menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

nav.details-menu ul li {
    padding: 10px;
}


nav.details-menu ul li a {
    width: 194px;
    height: 46px;
    display: block;
    border-radius: 46px;
    line-height: 42px;
    border-style: solid;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.302);
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-size: 15px;
    font-weight: normal;
}


nav.details-menu ul li a.active {
    border-color: rgba(255, 255, 255, 1);
}

nav.details-menu ul li a:hover {
    border-color: rgba(255, 255, 255, 1);
}

nav.details-menu ul li a.share {
    width: 46px;
    padding: 3px;
}

nav.details-menu ul li a.share svg {
    fill: #fff;
}

nav.details-menu ul li a.pdf {
    width: 46px;
}

nav.details-menu ul li a.pdf svg {
    fill: #fff;
}

.details-tour {
    padding-top: var(--space-50);
    padding-bottom: var(--space-50);
    position: relative;
}

.details-tour-info {
    display: flex;
}

.details-tour-text {
    width: 50%;
    padding-top: 40px;
    padding-right: 10%;
    padding-bottom: 40px;
}

.details-tour-photo {
    width: 50%;
}

.details-tour-title {
    font-size: var(--font-30);
    font-weight: 500;
    margin-bottom: var(--space-50);
}

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

.details-tour-info2 .details-tour-text {
    padding-right: 0;
    padding-left: 10%;
}

.details-tour-info2 .details-tour-text {
    padding-right: 0;
    padding-left: 10%;
}

.details-tour-title-small {
    font-size: var(--font-30);
    color: #fff;
    font-weight: 500;
    margin-bottom: 27px;
}

.tour-day .text.txt {
    color: #fff;
}

.tour-day {
    padding-bottom: 30px;
    padding-top: 20px;
    padding-right: 30px;
}

.mask.details-tour-mask {
    background: rgba(0, 39, 87, 0.6);
}

.scrollbar1 {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.viewport {
    height: 740px;
    overflow: hidden;
    position: relative;
}

.scrollbar1 .overview {
    list-style: none;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    width: 100%;
}

.scrollbar1 .scrollbar {
    background-color: rgba(255, 255, 255, 0.6);
    position: absolute;
    background-position: center 0;
    right: -1px;
    top: 0;
    width: 1px;
}

.scrollbar1 .track {
    height: 100%;
    width: 1px;
    position: relative;
    padding: 0 1px;
}

.scrollbar1 .thumb {
    background: #c5d000;
    height: 20px;
    width: 3px;
    cursor: pointer;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: -1px;
    border-radius: 5px;
}

.scrollbar1 .thumb .end {
}

.scrollbar1 .disable {
    display: none;
}

.noSelect {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.text-box-container {
    padding-top: 44px;
    padding-bottom: var(--space-50);
}

.article-subtitle {
    margin-bottom: 23px;
    font-weight: 500;
    font-size: var(--font-20);
    color: var(--color-primary);
    text-transform: uppercase;
}

.gallery-title {
    font-size: var(--font-30);
    font-weight: 500;
    margin-bottom: var(--space-50);
}

.subpage header {
    border-bottom: 1px solid #e5e5e5;
}

.contact-box-container {
    padding-top: 44px;
    background-position: top center;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    padding-bottom: 284px;
}

.contact-box-container .page-heading-title {
    color: #fff;
}

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

.mask.contact-mask {
    background: rgb(0, 39, 87, 0.7) url(../images/details_mask.png) no-repeat center bottom / 100% auto;
}

.contact-data-box {
    display: flex;
}

.contact-data:first-child {
    width: 27%;
    padding-right: 30px;
}

.contact-data:last-child {
    width: 11%;
    padding-right: 0px;
}

.contact-data {
    width: 31%;
    padding-right: 30px;
}

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

.contact-data-title {
    color: #fff;
    text-transform: uppercase;
    font-size: var(--font-20);
    font-weight: 600;
    margin-bottom: 26px;
}

.contact-data .text.txt {
    text-transform: uppercase;
    color: #fff;
    line-height: 211%;
}

.contact-data .text.txt strong {
    font-weight: 500;
}


.contact-data nav.social-list {
    padding-top: 11px;
}

.contact-data .social {
    display: flex;
    color: #fff;
    text-align: left;
    font-size: 14px;
    font-weight: 300;
    line-height: 124%;
    align-items: center;
}


.contact-data .social-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-secondary);
    background: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 0;
    margin-right: 13px;
}

.contact-form-container .input-group-addon {
    background: #fff;
    color: #c5d000; border-color:rgb(0, 0, 0, 0.1)
}

.input-group .form-control:first-child {
    border-right-color: #fff;
}

.form-box-title {
    text-align: center;
    font-size: var(--font-30);
    font-weight: 500;
    margin-bottom: 46px;
    color: var(--color-primary);
}

.form-box-container {
    margin-top: -95px;
    padding-bottom:  var(--space-60);
    position: relative;
}

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

.form-wrapper {
    padding-top: 50px;
}

.contact-form-container .input-group-addon{
    border-radius: 23px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.contact-form-container .title-wrapper {
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-top: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.contact-form-container .title-wrapper .number {
    margin-right: 14px;
}

.title-wrapper .number {
    background: #c5d000;
    font-size: 18px;
    width: 43px;
    height: 43px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    line-height: 43px;
}

.contact-form-container button.captcha-refresh.btn.btn-default{
    background-color: var(--color-secondary);
}

.modal-title {
    font-size: var(--font-40);
    font-weight: 500;
    color: var(--color-primary);
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
}

.btn-success, .btn-success:active, .btn-success:focus {
    color: #fff!important;
    background-color: #c5d000!important;
    border-color: #c5d000!important;
}

.btn-success:hover {
    color: #c5d000!important;
    background-color: #fff!important;
    border-color: #c5d000!important;
}

.modal-header button.close {
    font-size: 40px;
    margin-top: -34px;
    border: 0 none;
    text-shadow: 0 0 0 transparent;
}

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

.form i.fa.fa-refresh {
    font-size: 19px;
    color: var(--color-secondary);
}

.contact-form-container button.captcha-refresh.btn.btn-default {
    background-color: transparent;
}

.error-actions a.btn.btn-primary.btn-lg {
    color: var(--color-primary);
}

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

.modal-title {
    color: #fff;
}

.modal-header button.close {
    color: #fff;
    opacity: 1;
    margin-top: -22px;
}

.modal-dialog .form button.captcha-refresh.btn.btn-default {
    right: 15px;
}


.modal-header button.close:hover {
  color:#c5d000; opacity:1;
}

.mask.contact-mask {
    background: rgb(0, 39, 87, 0.7) url(../images/contact_mask.png) no-repeat center bottom / 100% auto;
}

.alert-container {
    top: 158px;
    position: absolute;
    z-index: 1000;
    display: block;
    width: auto;
    left: var(--container-padding);
    right: var(--container-padding);
}