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

    --font-70: clamp(30px, 3.9vw, 70px);
    --font-60: clamp(25px, 3.2vw, 60px);
    --font-48: clamp(24px, 2.5vw, 48px);
    --font-40: clamp(22px, 2.1vw, 40px);
    --font-36: clamp(18px, 2.2vw, 36px);
    --font-30: clamp(18px, 1.6vw, 30px);
    --font-24: clamp(16px, 1.3vw, 24px); 

    --container-padding: 40px;

    --row-gap: 15px;

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: "Amatic SC", sans-serif;

    /** SPECIFIC **/
    --color-primary: #00B4D8;
    --color-secondary: #FFA500;
    --color-default: #1B2A41;
    --color-tertiary: #FF4C59;
    --color-border-deafult: #ccc;
}

body {
    color: var(--color-default);
    font-family: var(--font-primary);
}

/**
 * BASIC
 */

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

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: inherit;
    transition: all .2s linear;
}

a:hover, a:focus {
    color: inherit;
}

/**
 * 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
 */
body{
    overflow-x: hidden;
}
#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-sm {
    max-width: 1440px;
}

.container--noClear {
    clear: none;
}

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

/**
 * ICONS
 */

.icon-mask.icon-mask {
    -webkit-mask-size: contain;
    -mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: currentColor;
}

.icon-facebook {
    -webkit-mask-image: url('../images/icons/social/facebook.svg');
    mask-image: url('../images/icons/social/facebook.svg');
}

.icon-instagram {
    -webkit-mask-image: url('../images/icons/social/instagram.svg');
    mask-image: url('../images/icons/social/instagram.svg');
}

.icon-linkedin {
    -webkit-mask-image: url('../images/icons/social/linkedin.svg');
    mask-image: url('../images/icons/social/linkedin.svg');
}

.icon-twitter,
.icon-x {
    -webkit-mask-image: url('../images/icons/social/twitter.svg');
    mask-image: url('../images/icons/social/twitter.svg');
}

.icon-youtube {
    -webkit-mask-image: url('../images/icons/social/youtube.svg');
    mask-image: url('../images/icons/social/youtube.svg');
}

.icon-pinterest {
    -webkit-mask-image: url('../images/icons/social/pinterest.svg');
    mask-image: url('../images/icons/social/pinterest.svg');
}

.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.disabled.focus,*/
/*.btn-primary.disabled:focus,*/
/*.btn-primary.disabled:hover,*/
/*.btn-primary[disabled].focus,*/
/*.btn-primary[disabled]:focus,*/
/*.btn-primary[disabled]:hover,*/
/*fieldset[disabled] .btn-primary.focus,*/
/*fieldset[disabled] .btn-primary:focus,*/
/*fieldset[disabled] .btn-primary:hover {*/
/*    background-color: var(--color-primary);*/
/*    border-color: var(--color-primary);*/
/*}*/


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

/*.btn-primary[disabled],*/
/*.btn-primary[disabled]:hover {*/
/*    opacity: 0.6;*/
/*    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.6;*/
/*    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.disabled.focus,*/
/*.btn-default.disabled:focus,*/
/*.btn-default.disabled:hover,*/
/*.btn-default[disabled].focus,*/
/*.btn-default[disabled]:focus,*/
/*.btn-default[disabled]:hover,*/
/*fieldset[disabled] .btn-default.focus,*/
/*fieldset[disabled] .btn-default:focus,*/
/*fieldset[disabled] .btn-default:hover {*/
/*    background-color: var(--color-default);*/
/*    border-color: var(--color-default);*/
/*}*/


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

/*.btn-default[disabled],*/
/*.btn-default[disabled]:hover {*/
/*    opacity: 0.6;*/
/*    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 {
    position: relative;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all .2s linear;
    color: #fff !important;
    background-color: transparent !important;
    border: none !important;
}

.btn > * {
    position: relative;
    z-index: 3;
}

.btn::before,
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transition: all .2s linear;
}

.btn::before {
    z-index: 1;
}

.btn::after {
    z-index: 2;
    opacity: 0;
}

@media screen and (min-width: 1140px) {
    .btn:active::after,
    .btn:focus::after,
    .btn:hover::after {
        opacity: 1;
    }

    .btn:active::before,
    .btn:focus::before,
    .btn:hover::before {
        opacity: 0;
    }
}

.btn.active::after {
    opacity: 1;
}

.btn.active::before {
    opacity: 0;
}

.btn.btn-primary::before {
    background-image: url("../images/btn-primary-bg.webp");
}

.btn.btn-primary::after {
    background-image: url("../images/btn-default-bg.webp");
}

.btn.btn-secondary::before {
    background-image: url("../images/btn-secondary-bg.webp");
}

.btn.btn-secondary::after {
    background-image: url("../images/btn-default-bg.webp");
}

.btn.btn-default::before {
    background-image: url("../images/btn-default-bg.webp");
}

.btn.btn-default::after {
    background-image: url("../images/btn-primary-bg.webp");
}

.btn.btn-white {
    color: var(--color-default) !important;
}

@media screen and (min-width: 1140px) {
    .btn.btn-white:hover {
        color: #fff !important;
    }
}

.btn.btn-white::before {
    background-image: url("../images/btn-white-bg.webp");
}

.btn.btn-white::after {
    background-image: url("../images/btn-default-bg.webp");
}

.btn-lg {
    min-height: 46px;
    padding: 10px calc(var(--space-25) + 5px);
    font-size: 14px;
    text-transform: uppercase;
}
 .btn-xxl{
    min-height: 78px;
    padding: 10px var(--space-50);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    min-width: 340px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-25);
}
.btn-xl {
    min-height: 65px;
    padding: 10px var(--space-40);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    gap: var(--space-25);
}

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

.panel {
    box-shadow: none;
}

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

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

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

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

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

/**
 * TEXT
 */
.text a:hover{
    text-decoration: underline;
}
.text a{
    color: var(--color-primary);
}

.text {
    overflow: visible;
    font-size: 14px;
    line-height: 2.1428em;
    color: var(--color-default);
}

/** 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: "•";
    position: relative;
    display: inline-block;
    width: 10px;
    left: -10px;
    margin-left: -10px;
    line-height: 1em;
    font-family: sans-serif;
    font-weight: 900;
    font-size: 18px;
}

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

/**
 * HEADER
 */

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#content {
    padding-top: 141px;
}

.logo {
    display: block;
}

.logo a {
    display: flex;
    align-items: center;
    gap: calc(var(--space-40) + 4px);
}

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

#main-menu ul {
    display: flex;
    align-items: center;
    gap: var(--space-60);
}

#main-menu li {
    position: relative;
    display: inline-block;
    font-size: 1rem;
}

#main-menu li > a {
    font-size: 14px;
    transition: -webkit-text-stroke 300ms;
    text-transform: uppercase;
    -webkit-text-stroke: 1px transparent;
}


@media screen and (min-width: 1140px) {
    #main-menu li > a:hover {
        -webkit-text-stroke-color: #000;
    }
}

#main-menu li.active > a {
    -webkit-text-stroke: 1px transparent;
}

#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 {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-primary);
    color: #fff;
    background: var(--color-primary);
    border-radius: 50%;
    position: relative;
}

.main-menu-button span:nth-child(1) {
    bottom: 16px;
}

.main-menu-button span:nth-child(3) {
    top: 16px;
}

.main-menu-button.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 0;
    bottom: 0;

}

.main-menu-button.active span:nth-child(2) {
    transform: rotate(45deg);
    opacity: 0;
}

.main-menu-button.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 0;
    top: 0;
}

.main-menu-button span {
    background-color: currentColor;
    width: 22px;
    height: 2px;
    display: block;
    transition: all 300ms;
    position: absolute;
    inset: 0;
    margin: auto;
}
.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;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-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 {
}

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

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

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

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

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

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

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

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

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

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    font-weight: 400 !important;
    font-size: 14px !important;
}

.contact-form.form .before-consent-row,
.contact-form.form .after-consent-row,
.contact-form.form .consent-row label,
.contact-form.form .consent-all {
    color: #fff;
}

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

.form button.captcha-refresh:before,
.form button.captcha-refresh:after {
    display: none;
}

.form button.captcha-refresh {
    right: var(--row-gap);
    color: var(--color-primary) !important;
    background-color: transparent !important;
    border-color: #fff !important;
    border-left: 1px solid rgba(0,0,0,0.1) !important;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
}

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

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

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

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


/**
 * 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;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-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);
}

/**
 * PAGINATION
 */

.pagination-wrapper ul li a {
    color: #333;
    transition: color 0.4s;
}

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

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

/**
 * ANIMATABLE ICON
 */

.loader-spin {
    margin: 0 10px;
    font-size: 3px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    animation: mulShdSpin 1.3s infinite linear;
    transform: translateZ(0);
}

.btn .loader-spin {
    margin: 0 14px;
}

@keyframes mulShdSpin {
    0%,
    100% {
        box-shadow: 0 -3em 0 0.2em,
        2em -2em 0 0em, 3em 0 0 -1em,
        2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 -1em, -3em 0 0 -1em,
        -2em -2em 0 0;
    }
    12.5% {
        box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em,
        3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 -1em, -3em 0 0 -1em,
        -2em -2em 0 -1em;
    }
    25% {
        box-shadow: 0 -3em 0 -0.5em,
        2em -2em 0 0, 3em 0 0 0.2em,
        2em 2em 0 0, 0 3em 0 -1em,
        -2em 2em 0 -1em, -3em 0 0 -1em,
        -2em -2em 0 -1em;
    }
    37.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
        3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em,
        -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    50% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
        3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em,
        -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    62.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
        3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0,
        -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
    }
    75% {
        box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em,
        3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
    }
    87.5% {
        box-shadow: 0em -3em 0 0, 2em -2em 0 -1em,
        3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
    }
}


.loader2 {
    width: 48px;
    height: 48px;
    border: 5px solid #e5e5e5;
    border-bottom-color: var(--color-primary);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotationLoader2 1s linear infinite;
}

@keyframes rotationLoader2 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/**
 * 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%;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-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;
}


/**
 * 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);
        -webkit-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);
        -webkit-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 {
    padding-bottom: 30px;
}

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

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

@media screen and (min-width: 1140px) {
    .page-list-aside .ui-widget.ui-widget-content {
        -webkit-transform: scaleY(33.3333%);
        -moz-transform: scaleY(33.3333%);
        -ms-transform: scaleY(33.3333%);
        -o-transform: scaleY(33.3333%);
        transform: scaleY(33.3333%);
    }

    .page-list-aside .ui-widget.ui-widget-content:hover,
    .page-list-aside .ui-widget.ui-widget-content:focus,
    .page-list-aside .ui-widget.ui-widget-content:focus-within {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .ui-slider .ui-slider-handle {
        opacity: 0;
        transition: opacity 0.2s;
    }

    .ui-widget.ui-widget-content:hover .ui-slider-handle,
    .ui-widget.ui-widget-content:focus .ui-slider-handle,
    .ui-widget.ui-widget-content:focus-within .ui-slider-handle {
        opacity: 1;
    }
}

.ui-slider .ui-slider-range {
    border-radius: 0;
    background-color: var(--color-primary);
}

.ui-slider .ui-slider-handle {
    border-radius: 0;
    border: none;
    height: 13px;
    width: 13px;
    background-color: var(--color-primary);
}

.ui-slider-horizontal .ui-slider-handle {
    top: -2px;
    left: -7px;
}

.form-range .row + .row {
    margin-top: 15px;
}

.valueFrom .input-label,
.valueFrom .price-suffix,
.valueTo .input-label,
.valueTo .price-suffix {
    display: none;
}

.valueFrom .from,
.valueTo .to {
    height: 36px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Tenor Sans', sans-serif;
    color: var(--color-primary);
}

.valueTo:before {
    content: '-';
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 33px;
    line-height: 36px;
}

.form-range {
    background-color: transparent;
    border: none;
}

.ui-widget.ui-widget-content {
    border-radius: 0;
}

.form-range {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.form-range .range-row {
    width: 100%;
}

.form-range .col {
    width: 45%;
    margin-top: 10px;
}

#container-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#page {
    flex-grow: 1;
}

#container-page > footer {
    margin-top: auto;
    width: 100%;
}

.icon-wrapper,
.icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper img,
.icon-wrapper svg,
.icon img,
.icon svg {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.icon *[fill]:not([fill="none"]) {
    fill: currentColor;
}

.icon *[stroke]:not([stroke="none"]) {
    stroke: currentColor;
}

header.sticky .header-top{
    max-height: 0;
    padding: 0;
}
.header-top a .text{
    transition: color 300ms;
}
.header-top a:hover .text{
    color: var(--color-primary);
}
.header-top {
    transition: max-height 300ms, padding 300ms;
    max-height: 60px;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-25);
    padding: 10px 0;
    border-bottom: 1px solid rgba(27, 42, 65, 0.2);
}

.header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-40);
    padding: 16px 0;
}

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

.header-top-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-default);
    font-size: 14px;
    line-height: 1.1;
}

.header-top-link .icon {
    width: 18px;
    color: var(--color-primary);
}

.header-top-link + .header-top-link {
    margin-left: var(--space-50);
    padding-left: var(--space-50);
    border-left: 1px solid rgba(27, 42, 65, 0.2);
}

@media screen and (min-width: 1140px) {
    .header-top-link:hover {
        color: var(--color-primary);
    }
}

.social-list {
    display: flex;
    align-items: center;
    gap: var(--space-25);
}

.social-list-label {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--color-default);
}

.social-list ul {
    display: flex;
    gap: var(--space-25);
}

.social-list ul li .social {
    width: 20px;
    height: 20px;
    color: var(--color-default);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.arrows {
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.btn-arrow {
    width: 46px;
    height: 46px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background-color: transparent;
    transition: all .2s linear;
    pointer-events: initial;
    padding: 0;
}

@media screen and (min-width: 1140px) {
    .btn-arrow:hover {
        color: #fff !important;
        border-color: var(--color-primary) !important;
        background-color: var(--color-primary) !important;
    }
}

.main-slider-arrows .btn-arrow {
    color: #fff;
    border-color: #fff;
}

.main-slider-section {
    position: relative;
}

.main-slider-arrows-wrapper .btn{
    pointer-events: auto;
}
.main-slider-arrows-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 2;
    pointer-events: none;
    transform: translateY(-50%);
}

.main-slider-arrows {
    justify-content: space-between;
}

.main-slider-item {
    width: 100%;
}

.main-slider-bg {
    width: 100%;
    display: block;
    position: absolute;
    inset: 0;
}
.main-slider-section .swiper-slide{
    height: unset;
}

.main-slider-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-slider-item-content {
    height: 100%;
    position: static;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.main-slider-item-content-inner {
    position: relative;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: var(--space-40) calc(var(--space-60) + 10px);
}

.main-slider-item-content-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.main-slider-item-content-bg img {
    display: block;
    width: 100%;
    height: 100%;
}

.main-slider-item-content-inner .text {
    color: #fff;
    font-size: calc(var(--font-30) - 2px);
}

.main-slider-item-name {
    font-size: calc(2 * var(--font-48));
    font-weight: 700;
    font-family: var(--font-secondary);
    line-height: 1em;
}

.newsletter-box-section {
    position: relative;
    margin: var(--space-60) 0;
    padding: calc(var(--space-60) + 15px) 0 var(--space-60) 0;
}

.newsletter-section-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.newsletter-section-bg img {
    display: block;
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.newsletter-section-inner {
    display: grid;
    grid-template-columns: 29vw 2fr 1fr;
    gap: var(--space-40);
    align-items: center;
}

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

.section-header:has(.section-header-right) {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr auto 1fr;
}

.section-header:has(.section-header-right):before {
    content: '';
}

.section-header-right {
    display: flex;
    justify-content: flex-end;
}

.newsletter-section-inner .text {
    font-size: var(--font-36);
    color: #fff;
    font-weight: 300;
    line-height: 1.3888em;
}

.newsletter-section-image .newsletter-mask{
    position: absolute;
    left: 0;
    bottom: -13px;
    max-width: 100%;
}
.newsletter-section-image {
    align-self: end;
    position: relative;
    margin-bottom: -3vw;
    margin-left: -4.25vw;
    margin-top: -8vw;
}

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

#newsletter-form {
    display: flex;
    justify-content: center;
}

#newsletter-form .btn {
    flex-grow: 1;
    justify-content: center;
    gap: var(--space-60);
}

.logotypes-border {
    border-top: 5px solid var(--color-primary);
}

.logotypes-section-inner {
    padding: calc(var(--space-60) + 10px) 0;
    width: calc(100% + (2 * var(--space-25)));
    margin: 0 calc(-1 * var(--space-25));
}

.logotype-item {
    width: 12.5%;
    height: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--space-25);
}

.logotype-item-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logotype-item-inner img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(1);
    transition: all .2s linear;
}

@media screen and (min-width: 1140px) {
    .logotype-item-inner[href]:hover img {
        filter: grayscale(0);
    }
}

.row-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrows:has(.swiper-button-lock + .swiper-button-lock) {
    display: none;
}

.main-offer-section {
    margin: var(--space-50) 0 calc(var(--space-60) + 10px) 0;
}

.mt-70 {
    margin-top: calc(var(--space-60) + 10px);
}

.main-offer-section .offer-list {
    padding-bottom: 0;
}

.main-icons-section {
    margin: var(--space-50) 0;
}

.icons-inner {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + (2 * var(--space-50)));
    margin: calc(-1 * var(--space-25)) calc(-1 * var(--space-50));
}

.icons-item {
    width: 16.6666%;
    padding: var(--space-25) var(--space-50);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icons-item .icon-wrapper {
    position: relative;
    z-index: 2;
    width: 146px;
    height: 146px;
    margin-bottom: calc(var(--space-25) - 5px);
}

.icons-item .icon-wrapper:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url("../images/icons/icons-item-bg.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.icons-item:nth-of-type(3) .icon-wrapper:before,
.icons-item:nth-of-type(4) .icon-wrapper:before {
    transform: rotate(-120deg);
}

.icons-item:nth-of-type(5) .icon-wrapper:before,
.icons-item:nth-of-type(6) .icon-wrapper:before {
    transform: rotate(-180deg);
}

.icons-item-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2em;
    color: var(--color-default);
}

.icons-item .text {
    margin-top: 15px;
}

body:not(.mainpage) .logotypes-border {
    display: none;
}
footer.no-margin .newsletter-box-section{
    margin-top: 0;

}
footer .newsletter-box-section {
    margin-bottom: 0;
}

.main-about-section {
    margin: calc(2 * var(--space-40)) 0;
}

.main-about-inner {
    display: flex;
}

.main-about-left {
    width: 50%;
    padding-right: calc(3 * var(--space-50));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-40);
}


.text h2 {
    font-size: var(--font-24);
    font-weight: 700;
}

.main-about-right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-about-right img {
    -webkit-mask-image: url(../images/news-mask.webp);
    mask-image: url(../images/news-mask.webp);
    -webkit-mask-position: center;
    mask-size: 100% 100%;
    max-width: 100%;
    display: block;
}

.main-faq-section {
    margin: calc(2 * var(--space-40)) 0;
}

.main-faq-section .section-header {
    padding-top: var(--space-40);
    border-top: 5px solid var(--color-primary);
}

.main-faq-inner {
    display: flex;
    justify-content: center;
    width: calc(100% + (2 * var(--space-60)));
    margin: 0 calc(-1 * var(--space-60));
}

.main-faq-column {
    width: 50%;
    padding: 0 var(--space-60);
}

.main-faq-column .toggle-top {
    padding: calc(var(--space-25) - 5px);
}

.main-faq-column .toggle-top:before {
    inset: 0 calc((var(--space-25) - 5px) * -1);
}

.main-faq-column .toggle-bottom {
    padding: calc(var(--space-25) - 5px);
}

.main-download-section {
    position: relative;
    padding: calc(2 * var(--space-50)) 0;
    aspect-ratio: 1920 / 850;
    -webkit-mask-image: url("../images/main-download-bg.webp");
    -webkit-mask-size: 100% 100%;
    background-color: #F9F9F9;
}

.main-download-section .section-header {
    margin-bottom: calc(4 * var(--space-40));
}

.main-download-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-50);
    flex-wrap: wrap;
}

.main-download-inner .text {
    max-width: 620px;
    font-size: var(--font-36);
    font-weight: 300;
    line-height: 1.3888em;
}

.main-download-inner > .btn{
    margin-top: var(--space-50);
}

.main-download-section-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.main-download-section-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.main-download-section-bg2 {
    position: absolute;
    inset: 0;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.main-download-section-bg2 img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin-left: 14%;
    margin-bottom: calc(-1 * var(--space-40));
}

.about-top-section {
    margin-bottom: var(--space-60);
}

.about-top-item {
    display: flex;
    align-items: center;
    gap: calc(2 * var(--space-40));
}

.about-top-item-content {
    padding: var(--space-40) 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-40);
}

.about-top-item-image {
    width: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-top-item-image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    -webkit-mask-image: url(../images/news-mask.webp);
    mask-image: url(../images/news-mask.webp);
    -webkit-mask-position: center;
    mask-size: 100% 100%;
}

.about-top-item:nth-of-type(even) {
    flex-direction: row-reverse;
}

.about-top-item-content .text {
    text-align: justify;
}

.about-top-item-content .text h2 {
    text-align: center;
}

.subpage .main-icons-section .section-header {
    padding-top: var(--space-60);
    border-top: 5px solid var(--color-primary);
}

.about-text-section {
    margin: var(--space-25) 0 var(--space-60) 0;
}

.about-image-banner {
    -webkit-mask-image: url(../images/main-download-bg.webp);
    -webkit-mask-size: 100% 100%;
    background-color: #F9F9F9;
    padding: calc(2 * var(--space-50)) 0 calc(3 * var(--space-50)) 0;
}

.about-image-banner-inner {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image-banner-image {
    display: block;
}

.about-image-banner-image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    -webkit-mask-image: url("../images/about-banner-mask.webp");
    -webkit-mask-size: 100% 100%;
}

.about-image-banner-title {
    position: absolute;
    z-index: 1;
    font-family: var(--font-secondary);
    font-weight: 700;
}

.about-image-banner-title-1 {
    top: 3%;
    left: 0;
    font-size: calc(var(--font-60) + 4px);
    text-align: right;
    max-width: 456px;
    color: var(--color-primary);
}

.about-image-banner-title-2 {
    top: 40%;
    left: 10%;
    font-size: calc(2 * (var(--font-60) + 4px));
    color: var(--color-secondary);
}

.about-image-banner-title-4 {
    top: 5%;
    left: 55%;
}

.about-image-banner-title-5 {
    font-size: calc(2 * (var(--font-60) + 3px));
    top: 37%;
    left: 52%;
    color: var(--color-tertiary);
}

.about-image-banner-title-6 {
    bottom: -10%;
    right: 0;
    font-size: calc(var(--font-60) + 4px);
    text-align: left;
    max-width: 456px;
    color: var(--color-primary);
}

.about-top-item-files {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.about-file-item {
    width: 100%;
    padding: 12px 12px 12px 22px;
    display: flex;
    align-items: center;
    gap: var(--space-25);
    background-image: url("../images/file-border.webp");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.about-file-item-name {
    flex-grow: 1;
    font-size: 14px;
    font-weight: 700;
}

.about-file-item .btn {
    flex-shrink: 0;
    padding: 10px var(--space-25);
    gap: 10px;
    min-width: 184px;
    justify-content: center;
}

.about-file-item .btn .icon{
    width: 26px;
    height: 20px;
}

.form .before-consent-row .text, .form .after-consent-row .text, .form .consent-row .text label, .form .consent-all{
    color: #fff;
    font-size: 14px;
}
.newsletter-modal-form.form .before-consent-row .text, .newsletter-modal-form.form .after-consent-row .text,
.newsletter-modal-form.form .consent-row .text label, .newsletter-modal-form.form .consent-all{
    color: var(--color-default);
}

.error-template .btn:before, .error-template .btn:after{
    z-index: -1;
}
.error-template h2{
    font-size: var(--font-40);
    color: var(--color-primary);
}

.contact-page .page-header{
    position: relative;
    z-index: 23;
}