/**
 * 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(20px, 2.2vw, 36px);
    --font-32: clamp(19px, 1.7vw, 32px);
    --font-30: clamp(18px, 1.6vw, 30px);
    --font-24: clamp(16px, 1.3vw, 24px);

    --container-padding: 40px;

    --row-gap: 10px;

    /** SPECIFIC **/
    --color-primary: #FF1E32;
    --color-secondary: #050C1F;
    --color-default: #333;
    --color-border-deafult: rgba(0, 0, 0, 0.1);

    --gradient-primary: linear-gradient(270deg,rgba(255, 30, 50, 0.6) 0%, rgba(0, 14, 48, .9) 71%);
    --gradient-secondary: linear-gradient(270deg,rgba(255, 30, 50, 0.9) 0%, rgba(0, 14, 48, .9) 71%);
    --gradient-third: linear-gradient(90deg,rgba(255, 30, 50, 0.6) 0%, rgba(0, 14, 48, .6) 100%);
    --gradient-fourth: linear-gradient(90deg,rgba(255, 30, 50, 0.6) 0%, rgba(0, 35, 124, .6) 100%);

    --font-secondary: 'Orbitron', sans-serif;
}

body {
    color: var(--color-secondary);
    font-family: 'Poppins', sans-serif;
}

/**
 * BASIC
 */

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

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: 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
 */

#page,
#content {
    overflow: hidden;
}

#content {
    padding-top: 100px;
}

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

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

.container--noClear {
    clear: none;
}

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

/**
 * ICONS
 */

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

.icon-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-white,
.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white.active,
.btn-white.active:focus,
.btn-white:hover:focus,
.btn-white:hover:active,
.btn-white:focus:active {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

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

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

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

.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-primary);
    border-color: var(--color-primary);
    color: #fff;
}

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

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

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

.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-white:not([disabled]):hover,
    .btn-white:not([disabled]).active:hover {
        background-color: #fff;
        border-color: var(--color-secondary);
        color: var(--color-secondary);
    }

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

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

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

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

/**
 * BUTTONS
 */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: all .2s linear;
    gap: 15px;
}

.btn-lg{
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 10px var(--space-25);
    min-height: 46px;
}

/**
 * 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!important;
    justify-content: space-between;
    flex-wrap: wrap;
}

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

/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: 14px;
    line-height: 2.1428em;
}

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

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

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

.text ul > li {
    left: 30px;
}

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

.header-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    transition: .3s all;
}

.mainpage header {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.mainpage header .header-bg {
    opacity: 0;
}

.header-bg:before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
}

.mainpage header.sticky .header-bg {
    opacity: 1;
}

.mainpage header.sticky {
    border-color: transparent;
}

.mainpage #content {
    padding-top: 0;
}

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-25);
    min-height: 100px;
    color: #fff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: calc(2 * var(--space-40) + 2px);
}

.header-top {
    background-color: #337ab7;
}

.logo {
    width: 386px;
}

.logo a {
    display: block;
}

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

#main-menu > ul {
    display: flex;
    align-items: center;
    gap: calc(var(--space-40) + 4px);
}

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

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

@media screen and (min-width: 1140px){
    #main-menu > ul > li > a:hover{
        color: var(--color-primary);
    }
}

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

#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;
    border: none;
    background: transparent;
}

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

.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 {
    position: relative;
    color: #fff;
}
.footer-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.footer-bg:before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-secondary);
}
.footer-bg > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-bg-deco {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6.29%;
    min-width: 45px;
}
.footer-bg-deco-1 {
    left: -1px;
    top: -1px;
}
.footer-bg-deco-2 {
    right: -1px;
    top: -1px;
}
.footer-bg-deco img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.footer-top {
    padding-top: 116px;
    padding-bottom: calc(2 * var(--space-50) + 4px);
}
.footer-top-inner {
    display: flex;
    justify-content: space-between;
    gap: var(--space-60);
}
.footer-logo > img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.footer-cols {
    width: 66.6%;
    display: flex;
    justify-content: space-between;
}
.footer-col {
    max-width: 276px;
}
.footer-title {
    font-size: var(--font-24);
    font-weight: 300;
    line-height: 1.25em;
    text-transform: uppercase;
    letter-spacing: 8.713px;
}
.footer-col-content {
    padding-top: calc(var(--space-40) - 6px);
}
@media screen and (min-width: 1140px) {
    .footer-col-content {
        display: block !important;
    }
}
.footer-col-content > .social-list {
    margin-top: calc(var(--space-40) - 6px);
}
.footer-col-content ul > li > a {
    font-size: 14px;
    line-height: 2.1428em;
    color: #fff;
}
@media screen and (min-width: 1140px) {
    .footer-col-content > ul > li > a:hover {
        color: var(--color-primary);
    }
}
.footer-link {
    display: flex;
    align-items: center;
    gap: calc(var(--space-25) - 3px);
    font-size: 14px;
    line-height: 2.1428em;
    transition: .2s all linear;
}
.footer-link + .footer-link {
    margin-top: 10px;
}
.footer-link .icon {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    flex-shrink: 0;
    transition: .2s all linear;
}
@media screen and (min-width: 1140px) {
    .footer-link:hover {
        color: var(--color-primary);
    }
    .footer-link:hover .icon {
        border-color: var(--color-primary);
        background-color: var(--color-primary);
        color: #fff;
    }
}

/* FOOTER BAR */
.footer-bar {
    padding: 16px 0;
    line-height: 26px;
    /*letter-spacing: 0.05em;*/
    font-weight: 400;
    background-color: transparent;
    font-size: 14px;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, .2);
}
.footer-bar-left {
    display: flex;
    align-items: center;
    flex-grow: 1;
    flex-wrap: wrap;
}
.footer-bar-right {
    display: flex;
    align-items: center;
}
.footer-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bar-links a {
    text-transform: uppercase;
}
.footer-bar-links {
    margin-left: -5px;
    font-size: 0;
    margin-right: 8px;
}
.footer-bar-links:has(li) + .copyright:before {
    content: "|";
    color: currentColor;
    margin-right: 10px;
    display: inline-block;
}
.footer-bar-links > li + li:before {
    content: "|";
    color: currentColor;
    margin-right: 16px;
    display: inline-block;
}
.footer-bar-links > li {
    display: inline-block;
    vertical-align: middle;
    margin: 3px 8px;
    font-size: 13px;
    line-height: 2;
    font-weight: 300;
}
.footer-bar-links a:hover {
    text-decoration: underline;
}
.footer-bar-links a {
    color: inherit;
}
.copyright-undicom {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    color: inherit;
}
.copyright-undicom svg {
    max-width: 15px;
    fill: currentColor;
}

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

/* INPUTY */
.form .form-element-name {
    font-size: 15px;
    font-weight: 600;
    line-height: 16px;
}

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

.contact-form-container .form .form-control {
    background-color: #F5F5F5;
    color: #000;
    border-color: transparent;
    border-radius: 0;
}

.contact-form-container .form .form-control::placeholder {
    color: #000;
}

.contact-form-container .form-group {
    margin-bottom: calc(var(--space-25) + 3px);
}

.contact-form-container .row-flex-center {
    margin-top: var(--space-60);
}

/* 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-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: 0px;
    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 {
    right: var(--row-gap);
    color: #e10121;
    border-radius: 0;
    background-color: transparent;
    border-color: transparent;
    border-left-color: #fff;
    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: var(--color-primary);
        color: #fff;
        background-color: var(--color-primary);
    }

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

/*---- 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%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: auto;
    transition: all 0.4s;
    right: 16px;
    color: #000;
    text-align: center;
    font-size: 0;
}

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

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

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

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

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

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

/**
 * MAP POINTS
 */

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

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

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

.breadcrumb > li {
    position: relative;
    display: inline;
    color: var(--color-secondary);
}

.breadcrumb > li > a {
    font-size: 14px;
    line-height: 30px;
}

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

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

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

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

/**
 * PAGINATION
 */
.pagination-wrapper {
    padding: 0;
    max-width: 540px;
    margin-top: calc(2 * var(--space-40));
}
.pagination-wrapper ul li a {
    color: #333;
    transition: color 0.4s;
}
.pagination-wrapper ul li.active a {
    color: var(--color-primary);
    font-weight: 700;
}
.pagination-wrapper ul {
    display: flex;
}
.pagination-wrapper ul li.next,
.pagination-wrapper ul li.prev {
    float: unset;
}
.pagination-wrapper ul li.next {
    margin-left: auto;
}
.pagination-wrapper ul li.prev {
    margin-right: auto;
}
.pagination-wrapper ul li.next a,
.pagination-wrapper ul li.prev a {
    transition: .2s all linear;
    display: flex;
}
@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li a:hover {
        color: var(--color-primary);
    }
    .pagination-wrapper ul li.next a:hover,
    .pagination-wrapper ul li.prev a:hover {
        color: #fff;
    }
}
/**
 * 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);
    }
}


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

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

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

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

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

.animIcon.animIcon--close span:nth-child(2) {
    transform: rotateZ(-45deg);
    -webkit-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%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-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%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-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%;
    -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;
}


/**
 * 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 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid #fff;
    background-color: transparent;
    transition: .2s all linear;
    color: #fff;
}

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

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

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

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

/**
 * GALLERY
 */
.gallery-wrapper {
    margin-bottom: calc(2 * var(--space-40));
}
.gallery {
    clear: both;
}
.gallery-list {
    margin: -8px;
    font-size: 0;
}
.gallery-list-item {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    padding: 8px;
}
.gallery-picture {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
}
.gallery-picture > img {
    display: block;
    max-width: 100%;
}
.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background-color: rgba(0, 14, 48, 0.6);
    transition: opacity 0.3s;
}
.gallery-picture-hover > .btn-arrow {
    pointer-events: none;
}
@media screen and (min-width: 1140px) {
    .gallery-picture:hover .gallery-picture-hover {
        opacity: 1;
    }
}

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

.icon-wrapper,
.icon{
    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;
}

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

#page{
    flex-grow: 1;
}

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

/*
Page-heading + page-title
 */
.page-heading-wrapper {
    margin-bottom: var(--space-50);
}
.page-heading-realization-wrapper {
    margin-bottom: var(--space-40);
}
.page-heading-wrapper + .contact-bannaner-section {
    margin-top: calc(2 * var(--space-50));
}
.page-heading {
    display: flex;
    align-items: flex-start;
    gap: calc(2 * var(--space-50));
}
.offer-page-heading {
    gap: calc(4 * var(--space-60));
}
.page-heading-left {
    flex-shrink: 0;
}
.text-page-heading .page-heading-left {
    max-width: 600px;
}
.pre-page-title {
    font-size: var(--font-24);
    font-weight: 300;
    line-height: 1.25em;
    text-transform: uppercase;
    letter-spacing: 9.095px;
}
.page-title {
    font-size: 64px;
    line-height: 70px;
    font-weight: 500;
    font-family: var(--font-secondary);
    display: flex;
    align-items: flex-start;
    gap: var(--space-40);
}
.pre-page-title + .page-title {
    margin-top: calc(var(--space-25) - 5px);
}
.page-title:before {
    content: '';
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background-image: url("../images/page-title-icon.webp");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 12px;
}


/*
O nas
 */
.about-top-wrapper {
    margin-bottom: var(--space-60);
}
.about-top-container {
    position: relative;
    padding: 0 var(--space-50);
}
.about-top {
    display: flex;
    align-items: flex-start;
}
.about-top-image-wrapper {
    width: 50.5%;
    padding-right: calc(3 * var(--space-50) - 8px);
    flex-shrink: 0;
    display: flex;
}
.about-top-image-deco-wrapper .plus {
    position: absolute;
    z-index: 1;
    width: 38px;
    height: 38px;
    aspect-ratio: 1;
}
.plus .line-1 {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    width: 38px;
    background-color: #000;
}
.plus .line-2 {
    position: absolute;
    top: 0;
    left: 50%;
    height: 38px;
    width: 1px;
    background-color: #000;
}
.plus1,
.plus3 {
    left: 1px;
}
.plus2,
.plus4 {
    right: 1px;
}
.plus1 {
    transform: translateX(-50%) translateY(calc(-50% + 1px));
}
.plus2 {
    transform: translateX(50%) translateY(calc(-50% + 1px));
}
.plus3 {
    transform: translateX(-50%) translateY(-50%);
}
.plus4 {
    transform: translateX(50%) translateY(-50%);
}
.plus img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.about-top-image {
    position: relative;
}
.about-top-image:not(.offer-view-top-image) {
    /* MASKA */
    mask-image: url("../images/about-img-mask.svg");
    mask-repeat: no-repeat;
    mask-size: cover;
    mask-position: center;
    -webkit-mask-image: url("../images/about-img-mask.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    -webkit-mask-position: center;
}
.about-top-image:before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-fourth);
}
.offer-view-top-image:before {
    background: #00237C;
    opacity: .6;
}
.about-top-image a {
    display: block;
}
.about-top-image img {
    display: block;
    max-width: 100%;
}
.about-top-image-lines {
    position: relative;
}
.about-top-image-line-1,
.about-top-image-line-2 {
    content: '';
    position: absolute;
    left: -20px;
    height: 1px;
    background-color: #050C1F;
    width: 46.2%;
    z-index: 1;
}
.about-top-image-line-1 {
    top: 0;
}
.about-top-image-line-2 {
    bottom: 0;
}
.about-top-image-line-3 {
    content: '';
    position: absolute;
    top: -20px;
    height: calc(100% + 40px);
    left: 0;
    width: 1px;
    background-color: #050C1F;
    z-index: 1;
}
.about-top-text > .page-title + .text {
    margin-top: calc(var(--space-25) + 4px);
}
.about-top-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.about-top-text > .btn {
    margin-top: var(--space-40);
    align-self: flex-end;
}
.about-top-image-inner {
    position: relative;
}
.about-top-image-deco {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 22.12%;
}
.about-top-image-line-4 {
    content: '';
    position: absolute;
    left: 0;
    top: -20px;
    background-color: #050C1F;
    width: 1px;
    height: 20px;
}
.about-top-image-deco img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

/*
Banner
 */
.contact-bannaner-section {
    margin-bottom: calc(2 * var(--space-50));
}
.contact-bannaner-inner {
    position: relative;
}
.contact-bannaner-bg {
    position: absolute;
    content: '';
    inset: 0;
    z-index: -1;
}
.contact-bannaner-bg:before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-secondary);
}
.contact-bannaner-bg > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-bannaner-inner {
    padding: calc(4 * var(--space-40) + 2px) calc(4 * var(--space-50) - 5px);
    display: flex;
    align-items: center;
    color: #fff;
    width: 100%;
}
.contact-bananer-img {
    width: 50%;
    flex-shrink: 0;
    padding-right: calc(2 * var(--space-50));
    margin-top: calc(-1 * ((var(--space-60) + 3px) + (4 * var(--space-40) + 2px)));
    margin-bottom: calc(-1  * ((var(--space-60) - 4px) + (4 * var(--space-40) + 2px)));
}
.contact-bananer-img img {
    display: block;
    max-width: 100%;
}

.contact-bannaner-right {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-bannaner-text {
    font-size: var(--font-24);
    font-weight: 300;
    line-height: 1.25em;
    text-transform: uppercase;
    letter-spacing: 2.358px;
}

.contact-bannaner-link {
    display: flex;
    align-items: center;
    gap: calc(var(--space-25) + 5px);
    font-size: var(--font-36);
    font-weight: 500;
    line-height: 1;
    font-family: var(--font-secondary);
    transition: .2s all linear;
}

@media screen and (min-width: 1140px) {
    .contact-bannaner-link:hover {
        color: var(--color-primary);
    }
}
.contact-bannaner-link .icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border: 1px solid var(--color-primary);
    background-color: var(--color-primary);
    color: #fff;
}
.contact-bannaner-link + .contact-bannaner-link {
    margin-top: calc(var(--space-25) - 1px);
}
.contact-bannaner-text + .contact-bannaner-link {
    margin-top: calc(var(--space-40) + 4px);
}
.about-text-wrapper {
    margin-bottom: var(--space-60);
}
.bannaner-bg-deco > img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.bannaner-bg-deco {
    position: absolute;
}
.bannaner-bg-deco-1 {
    top: -1px;
    left: -1px;
    width: 7.2%;
    min-width: 40px;
}
.bannaner-bg-deco-2 {
    top: -1px;
    right: -1px;
    width: 7.2%;
    min-width: 40px;
}
.bannaner-bg-deco-3 {
    bottom: -1px;
    right: -1px;
    width: 7.2%;
    min-width: 40px;
}
.bannaner-bg-deco-4 {
    bottom: -1px;
    left: -1px;
    width: 14.4%;
    min-width: 80px;
}


/*
Oferta
 */
.offer-list-wrapper {
    margin-bottom: calc(var(--space-60) + 10px);
}
.offer-list-wrapper:has(.pagination-wrapper) {
    margin-bottom: calc(2 * var(--space-40));
}
.offer-list {
    margin: calc(-1 * (var(--space-50) + 3px));
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.offer-item-wrapper {
    padding: calc(var(--space-50) + 3px);
    width: 33.33%;
    position: relative;
}
.offer-item {
    position: relative;
    display: flex;
}
.offer-item:before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-third);
    opacity: 1;
    transition: .4s all;
}
.offer-item:after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 35, 124, .6);
    opacity: 0;
    transition: .4s all;
}
.offer-item-content {
    position: absolute;
    padding: var(--space-40) var(--space-40);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(var(--space-25) + 1px);
    justify-content: flex-end;
    inset: 0;
    color: #fff;
    z-index: 1;
}
.btn-arrow {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
    background: transparent;
    transition: .2s all linear;
}
.btn-arrow-white {
    border-color: #fff;
    color: #fff;
}
.offer-item-content .btn-arrow {
    border-color: #fff;
    color: #fff;
    flex-shrink: 0;
}
@media screen and (min-width: 1140px) {
    .offer-item:hover:before {
        opacity: 0;
    }
    .offer-item:hover:after {
        opacity: 1;
    }
    .btn-arrow:hover {
        background: var(--color-primary);
        border-color: var(--color-primary);
        color: #fff;
    }
}
.offer-item-name {
    font-size: max(calc(var(--font-24) - 4px), 20px);
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.82px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.offer-list .offer-item-plus {
    position: absolute;
    width: 52px;
    height: 52px;
    left: 0;
    bottom: 0;
    transform: translateX(-50%) translateY(50%);
    display: none;
}
.offer-list .offer-item-plus .line-1 {
    position: absolute;
    left: 0;
    width: 52px;
    top: 50%;
    height: 1px;
    background-color: #000;
}
.offer-list .offer-item-plus .line-2 {
    position: absolute;
    left: 50%;
    height: 52px;
    top: 0;
    width: 1px;
    background-color: #000;
}
@media screen and (min-width: 901px) {
    .offer-list .offer-item-wrapper:nth-child(3n+2) .offer-item-plus,
    .offer-list .offer-item-wrapper:nth-child(3n+3) .offer-item-plus {
        display: block;
    }
}
@media screen and (min-width: 481px) and (max-width: 900px) {
    .offer-list .offer-item-wrapper:nth-child(even) .offer-item-plus {
        display: block;
    }
}
.text-bottom-wrapper-offer {
    margin-bottom: calc(2 * var(--space-40));
}

.news-view-top {
    display: flex;
    align-items: flex-start;
}

.news-top-img {
    width: 51%;
    padding-right: calc(3 * var(--space-50) - 8px);
    flex-shrink: 0;
}

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

.news-view-page-title {
    font-size: var(--font-40);
    line-height: 1.25em;
}

.news-view-page-title:before {
    margin-top: 5px;
}

/*
Realizacje
 */
.realizations-list-wrapper {
    margin-bottom: calc(2 * var(--space-40));
}
.realizations-list {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}
.realizations-item-wrapper {
    padding: 8px;
    width: 25%;
}
.realizations-item {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.realizations-item-img {
    display: block;
}
.realizations-item-img img {
    display: block;
    max-width: 100%;
}
.realizations-item-content {
    position: absolute;
    inset: 0;
    padding: var(--space-25);
    z-index: 1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 13px;
    opacity: 0;
    pointer-events: none;
    transition: .3s all linear;
}
.realizations-item-content:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: var(--color-secondary);
    opacity: .9;
}
.realizations-item-name-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.realizations-item-name {
    position: absolute;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}
.realizations-item-name-img img {
    display: block;
    max-width: 100%;
}
@media screen and (min-width: 1140px) {
    .realizations-item:hover .realizations-item-content {
        opacity: 1;
        pointer-events: initial;
    }
}
.text-bottom-wrapper {
    margin: calc(var(--space-60) + 5px) 0;
}

/*
Realizacje - podgląd
 */
.realization-view-content-wrapper {
    margin-bottom: var(--space-60);
}
.realization-view-img {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}
.realization-view-img > a {
    display: block;
}
.realization-view-img > a > img {
    display: block;
    max-width: 100%;
}
.realization-view-img + .realization-view-desc {
    margin-top: var(--space-60);
}
.return-btn-wrapper {
    margin: calc(2 * var(--space-40));;
}
.row-flex-center {
    display: flex;
    align-self: center;
    justify-content: center;
}
.realization-img-deco {
    position: absolute;
    width: 8.7%;
    z-index: 1;
}
.realization-img-deco > img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.realization-img-deco-1 {
    top: -1px;
    left: -1px;
}
.realization-img-deco-2 {
    top: -1px;
    right: -2px;
}
.realization-img-deco-3 {
    bottom: -1px;
    left: -1px;
}
.realization-img-deco-4 {
    bottom: -1px;
    right: -1px;
}

/*
Kontakt
 */
.page-heading-contact {
    display: flex;
    gap: 0;
    flex-direction: column;
    align-items: center;
}

.page-heading-contact .pre-page-title {
    text-align: center;
}

.map-wrapper {
    margin-bottom: calc(2 * var(--space-50) - 10px);
}

.map {
    aspect-ratio: 1640 / 558;
    position: relative;
    width: 100%;
    min-height: 300px;
}

.map iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.map-deco {
    position: absolute;
    width: 6%;
    z-index: 1;
    min-width: 45px;
    pointer-events: none;
}

.map-deco-1 {
    top: -1px;
    left: -1px;
}

.map-deco-2 {
    top: -1px;
    right: -1px;
}

.map-deco-3 {
    bottom: -1px;
    left: -1px;
}

.map-deco-4 {
    bottom: -1px;
    right: -1px;
}

.map-deco > img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.contact-teaser {
    font-size: var(--font-24);
    font-weight: 300;
    line-height: 1.25em;
    text-transform: uppercase;
    letter-spacing: 2.358px;
}

.contact-view-bannaner-right {
    display: flex;
    flex-direction: column;
    gap: var(--space-60);
    align-items: stretch;
    max-width: 600px;
    margin-left: auto;
}

.contact-view-bannaner-middle {
    display: flex;
    justify-content: space-between;
    gap: var(--space-50);
    max-width: 600px;
}

.contact-view-bannaner-middle .text {
    max-width: 276px;
}

.contact-view-bannaner-middle > .social-list {
    flex-shrink: 0;
    margin-top: 13px;
}

.contact-view-bannaner-inner {
    padding-top: calc(2 * var(--space-40));
    padding-bottom: calc(2 * var(--space-40));
}

.contact-view-link-bannaner ul {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) - 1px);
}

.contact-view-bannaner-section {
    margin-top: var(--space-50) !important;
}

.contact-form-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-60);
}
.contact-form-heading .pre-page-title {
    text-align: center;
}
.page-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-wrapper {
    margin-bottom: calc(var(--space-60) + 12px);
}

.contact-form-wrapper form.form.contact-form {
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
}


/*
Textówka
 */
.bananer-section {
    padding: calc(2 * var(--space-40) + 3px) 0;
    background-color: rgba(5, 12, 31, .1);
    position: relative;
}
.bannaner-deco {
    position: absolute;
    z-index: -1;
    width: 6%;
    min-width: 45px;
}
.bannaner-deco1 {
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
}
.bannaner-deco2 {
    right: -1px;
    bottom: 0px;
}
.bannaner-deco img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.subpage .bananer-section {
    margin-bottom: calc(2 * var(--space-40));
}
.bananer-section-inner {
    display: flex;
    gap: calc(2 * var(--space-50));
    align-items: center;
}
.bananer-section-left {
    flex-shrink: 0;
}
.bananer-section-logo {
    display: flex;
    gap: calc(var(--space-40) - 5px);
    align-items: center;
}
.bananer-section-image {
    flex-shrink: 0;
}
.bananer-section-image img {
    display: block;
    max-width: 100%;
}
.bananer-section-logo-text {
    display: flex;
    flex-direction: column;
}
.bananer-section-logo-text .line1 {
    font-size: var(--font-24);
    font-weight: 300;
    line-height: 1.25em;
    text-transform: uppercase;
    letter-spacing: 8.4px;
}
.bananer-section-logo-text .line2 {
    font-size: var(--font-36);
    font-weight: 500;
    line-height: 1.25em;
    font-family: var(--font-secondary);
}
.bananer-section-right {
    display: flex;
    gap: calc(3 * var(--space-60) - 3px);
    align-items: flex-start;
}
.bananer-section-right > .btn-primary {
    margin-top: calc(var(--space-25) - 3px);
}
.page-article-wrapper {
    margin-bottom: calc(var(--space-60) + 5px);
}

.offer-view-top-wrapper {
    margin-bottom: var(--space-60);
}

.offer-view-text-wrapper {
    margin-bottom: var(--space-60);
}

/*
Strona główna
 */
.main-realization-section {
    margin-bottom: calc(4 * var(--space-60));
    position: relative;
    padding-top: 100px;
    color: #fff;
}
.main-realization-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.main-realization-bg > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-realization-deco > img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.main-realization-deco {
    position: absolute;
    top: -1px;
    z-index: 0;
    width: 6%;
    min-width: 45px;
}
.main-realization-deco1 {
    left: 0;
}
.main-realization-deco2 {
    right: 0;
}
.main-realization-bg:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg,rgba(255, 30, 50, 0.7) 0%, rgba(0, 14, 48, .9) 71%);
}
.section-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-25);
    margin-bottom: var(--space-60);
}
.section-heading-title-wrapper {
    min-width: 360px;
}
.section-heading-right {
    display: flex;
    align-items: flex-start;
    gap: calc(4 * var(--space-40));
    max-width: 1088px;
}
.section-heading-right .text {
    max-width: 767px;
    font-weight: 300;
    margin-top: -7px;
}
.main-realization-list {
    margin-bottom: calc(-1 * ((2 * var(--space-60)) + 20px));
}

/*
main offer
 */
.main-offer-section {
    position: relative;
    padding-top: 100px;
    margin-bottom: calc(2 * var(--space-60));
}
.main-offer-deco {
    position: absolute;
    top: 0;
    width: 6%;
    min-width: 45px;
}
.main-offer-deco img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.main-offer-deco1 {
    left: -1px;
}
.main-offer-deco2 {
    right: -1px;
}
@media screen and (min-width: 901px) {
    .main-offer-list > .offer-item-wrapper:nth-last-child(1) .offer-item-plus {
        display: none !important;
    }
    .main-offer-list > .offer-item-wrapper:nth-last-child(2) .offer-item-plus {
        display: none !important;
    }
}

@media screen and (min-width: 481px) and (max-width: 900px) {
    .main-offer-list > .offer-item-wrapper:nth-last-child(1) .offer-item-plus {
        display: none !important;
    }
}

/*
about main
 */
.main-about-section {
    position: relative;
    padding-top: 118px;
    margin-bottom: calc(2 * var(--space-50));
}
.main-about-deco {
    position: absolute;
    width: 6.35%;
    top: 0;
    min-width: 45px;
}
.main-about-deco img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.main-about-deco1 {
    left: -8px;
}
.main-about-deco2 {
    right: -8px;
}

/*
Slider
 */
.main-slider-item {
    position: relative;
    color: #fff;
    width: 100%;
    flex-shrink: 0;
    padding: calc(6 * var(--space-50) + 10px) 0;
    height: auto;
    display: flex;
    flex-direction: column;
}
.main-slider-item-content-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.main-slider-item-content-wrapper > .container {
    flex-grow: 1;
}
.main-slider-item-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.main-slider-item-bg:before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
}
.main-slider-item-bg > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-slider-bg-deco {
    position: absolute;
    bottom: -1px;
    left: -8px;
    z-index: 1;
    min-width: 45px;
    width: 6.35%;
}
.main-slider-bg-deco img {
    display: block;
    max-width: 100%;
}
.main-slider-bg-deco-2 {
    position: absolute;
    top: 100px;
    right: -1px;
    z-index: 1;
    min-width: 90px;
    width: 12%;
}
.main-slider-bg-deco-2 img {
    display: block;
    max-width: 100%;
}
.main-slider-item-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: calc(4 * var(--space-60));
    height: 100%;
}
.main-slider-item-content-img {
    position: relative;
    align-self: flex-end;
    margin-bottom: calc(-1 * (6 * var(--space-50)) - 10px);
    flex-shrink: 0;
    width: 33.29%;
    margin-top: calc(2 * var(--space-50));
}
.main-slider-item-content-img-inner {
    /* MASKA */
    mask-image: url("../images/slider-img-mask.svg");
    mask-repeat: no-repeat;
    mask-size: cover;
    mask-position: center;
    -webkit-mask-image: url("../images/slider-img-mask.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    -webkit-mask-position: center;
}
.main-slider-item-content-img-line3,
.main-slider-item-content-img-line4 {
    content: '';
    position: absolute;
    background-color: #fff;
}
.main-slider-item-content-img-line3 {
    left: -20px;
    top: 0;
    height: 1px;
    width: 46.3%;
    z-index: 1;
}
.main-slider-item-content-img-line4 {
    left: 0;
    top: -25px;
    width: 1px;
    height: 82.8%;
    z-index: 1;
}
.main-slider-item-content-img-inner > img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.main-slider-item-content-img-line1,
.main-slider-item-content-img-line2 {
    content: '';
    position: absolute;
    background-color: #fff;
    width: 1px;
}
.main-slider-item-content-img-line1 {
    right: 0;
    top: 0;
    height: 100%;
    z-index: 1;
}
.main-slider-item-content-img-line2 {
    left: 39.1%;
    top: -25px;
    height: 25.5%;
    z-index: 1;
    transform: translateX(-50%);
}
.main-slider-item-content-img-deco {
    position: absolute;
    z-index: 1;
    left: 39.1%;
    bottom: 0;
    width: 22.06%;
}
.main-slider-item-content-img-deco img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.main-slider-item-content-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.main-slider-item-content-text a {
    margin-top: calc(var(--space-25) + 5px);
}
.main-slider-item-content-text .text {
    margin-top: calc(var(--space-25) - 3px);
}
.main-slider-item-content-img-symbols {
    position: absolute;
    z-index: 1;
    top: calc(-1 * 36.63%);
    left: calc(-1 * 21.24%);
    width: 48%;
}
.main-slider-item-content-img-symbols img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.main-slider-section {
    position: relative;
}
.main-slider-pagination-wrapper {
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
    bottom: calc(2 * var(--space-50) + 10px);
}
.main-slider-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 60%;
}
.main-slider-pagination-btn {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 14px;
    transition: .2s all linear;
    flex-shrink: 0;
}
.main-slider-pagination-btn.is-active {
    border-color: #fff;
}
@media screen and (min-width: 1140px) {
    .main-slider-pagination-btn:hover {
        border-color: #fff;
    }
}

.about-top-deco {
    position: absolute;
    top: -118px;
    z-index: 1;
    width: 7.32%;
    right: 5.61%;
}
.about-top-deco img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.bananer-section-main-page .bannaner-deco1 {
    top: unset;
    transform: unset;
    bottom: 0;
    left: -0.5px;
}
.bananer-section-main-page .bannaner-deco {
    width: 6.35%;
}

.page-heading-references > .page-heading-left {
    align-items: center;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.page-heading-references-wrapper {
    margin-bottom: var(--space-60);
}

.files-list-wrapper {
    margin-bottom: calc(2 * var(--space-40));
}

.files-list {
    display: flex;
    flex-wrap: wrap;
    margin: calc(-1 * var(--space-40)) calc(-1 * var(--space-25));
    justify-content: center;
}
.files-item-wrapper {
    width: 20%;
    padding: var(--space-40) var(--space-25);
}

.files-item {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) + 5px);
}

.files-item-img {
    padding: 15px;
    border: 1px solid transparent;
    background-color: #E8E8E8;
    transition: .2s all linear;
}

.files-item-img img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.files-item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 17px;
    align-items: center;
}

.files-item-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5em;
    flex-grow: 1;
}

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

.page-heading-references > .page-heading-left .pre-page-title {
    text-align: center;
}

.files-item-content > .btn {
    padding: 10px calc(var(--space-25) + 5px);
}

.bannaner-bg-deco-5 {
    display: none;
}

.bannaner-bg-deco-6 {
    display: none;
}

.bananer-section-main-page .bannaner-deco {
    width: 6%;
}

/*
Animacje
 */
.sliderLine1 {
    -webkit-animation-name: sliderLine1;
    animation-name: sliderLine1;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
}
@keyframes sliderLine1 {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}
.sliderLine2 {
    -webkit-animation-name: sliderLine2;
    animation-name: sliderLine2;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
}
@keyframes sliderLine2 {
    0% {
        height: 0;
    }
    100% {
        height: 25.5%;
    }
}
.sliderLine3 {
    -webkit-animation-name: sliderLine3;
    animation-name: sliderLine3;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
}
@keyframes sliderLine3 {
    0% {
        width: 0;
    }
    100% {
        width: 46.3%;
    }
}
.sliderLine4 {
    -webkit-animation-name: sliderLine4;
    animation-name: sliderLine4;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
}
@keyframes sliderLine4 {
    0% {
        height: 0;
    }
    100% {
        height: 82.8%;
    }
}

.aboutLine1 {
    -webkit-animation-name: aboutLine1;
    animation-name: aboutLine1;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
}
@keyframes aboutLine1 {
    0% {
        width: 0;
    }
    100% {
        width: 46.2%;
    }
}
.aboutLine2 {
    -webkit-animation-name: aboutLine2;
    animation-name: aboutLine2;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
}
@keyframes aboutLine2 {
    0% {
        width: 0;
    }
    100% {
        width: 46.2%;
    }
}
.aboutLine3 {
    -webkit-animation-name: aboutLine3;
    animation-name: aboutLine3;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
}
@keyframes aboutLine3 {
    0% {
        height: 0;
    }
    100% {
        height: calc(100% + 40px);
    }
}
.aboutLine4 {
    -webkit-animation-name: aboutLine4;
    animation-name: aboutLine4;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
}
@keyframes aboutLine4 {
    0% {
        height: 0;
    }
    100% {
        height: 20px;
    }
}

.plusLine1 {
    -webkit-animation-name: plusLine1;
    animation-name: plusLine1;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
}
@keyframes plusLine1 {
    0% {
        width: 0;
    }
    100% {
        width: 38px;
    }
}
.plusLine2 {
    -webkit-animation-name: plusLine2;
    animation-name: plusLine2;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
}
@keyframes plusLine2 {
    0% {
        height: 0;
    }
    100% {
        height: 38px;
    }
}

.offerPlusLine1 {
    -webkit-animation-name: offerPlusLine1;
    animation-name: offerPlusLine1;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
}
@keyframes offerPlusLine1 {
    0% {
        width: 0;
    }
    100% {
        width: 52px;
    }
}
.offerPlusLine2 {
    -webkit-animation-name: offerPlusLine2;
    animation-name: offerPlusLine2;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
}
@keyframes offerPlusLine2 {
    0% {
        height: 0;
    }
    100% {
        height: 52px;
    }
}
