*, *::after, *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, button, input, textarea {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: top;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, main, time, section {
    display: block;
}

ol, ul {
    list-style: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button, input, textarea, select {
    display: inline-block;
    -webkit-appearance: none;
    outline: none;
    color: inherit;
    overflow: visible;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
}

button, input[type='button'], input[type='submit'] {
    cursor: pointer;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/*
* @bugfix input text-overflow padding ignore
* @affected lt IE11
*/

.lt-ie11 input {
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-bottom-left-radius: 1px !important;
}

a, a[href^="tel:"], a[href^="callto:"] {
    font: inherit;
    color: inherit;
    text-decoration: none;
}

a:focus, a[href^="tel:"]:focus, a[href^="callto:"]:focus {
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
}

a, button, input {
    transition: .3s all ease;
}

.main-wrapper {
    overflow: hidden;
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    min-width: 300px;
    max-width: 480px;
    width: auto;
}

@media (min-width: 768px) {
    .container {
        max-width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

@media (min-width: 1800px) {
    .container.container-large {
        max-width: 1800px;
    }
}

.container.container-fluid {
    max-width: none;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

[class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

.row:before, .row:after {
    content: none;
}

.row-no-gutter {
    margin-left: 0;
    margin-right: 0;
}

.row-no-gutter>[class*='col'] {
    padding-left: 0;
    padding-right: 0;
}

.row {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row>[class*='col'] {
    -ms-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

.flex {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-reverse {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flex-center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.flex-left {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.flex-right {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

.flex-justify {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.flex-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    -webkit-box-pack: distribute;
    justify-content: space-around;
}

.flex-top {
    -webkit-align-items: flex-start;
    -webkit-box-align: flex-start;
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
}

.flex-middle {
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.flex-bottom {
    -webkit-align-items: flex-end;
    -webkit-box-align: flex-end;
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
}

.flex-item-top {
    -webkit-align-self: flex-start;
    -ms-grid-row-align: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.flex-item-middle {
    -webkit-align-self: center;
    -ms-grid-row-align: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.flex-item-bottom {
    -webkit-align-self: flex-end;
    -ms-grid-row-align: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

@media (min-width: 480px) {
    *+[class*='col-xs-'] {
        margin-top: 0;
    }
    .flex-xs {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .flex-xs-reverse {
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
    .flex-xs-center {
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
    }
    .flex-xs-left {
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
    .flex-xs-right {
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
    }
    .flex-xs-justify {
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .flex-xs-around {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        -webkit-box-pack: distribute;
        justify-content: space-around;
    }
    .flex-xs-top {
        -webkit-align-items: flex-start;
        -webkit-box-align: flex-start;
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start;
    }
    .flex-xs-middle {
        -webkit-align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
    }
    .flex-xs-bottom {
        -webkit-align-items: flex-end;
        -webkit-box-align: flex-end;
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end;
    }
    .flex-item-xs-top {
        -webkit-align-self: flex-start;
        -ms-grid-row-align: flex-start;
        -ms-flex-item-align: start;
        align-self: flex-start;
    }
    .flex-item-xs-middle {
        -webkit-align-self: center;
        -ms-grid-row-align: center;
        -ms-flex-item-align: center;
        align-self: center;
    }
    .flex-item-xs-bottom {
        -webkit-align-self: flex-end;
        -ms-grid-row-align: flex-end;
        -ms-flex-item-align: end;
        align-self: flex-end;
    }
    .row>.col-xs-offset-0 {
        margin-left: 0;
    }
    .row>.col-xs-1 {
        -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%;
    }
    .row>.col-xs-offset-1 {
        margin-left: 8.33333%;
    }
    .row>.col-xs-order-1 {
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    .row>.col-xs-2 {
        -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%;
    }
    .row>.col-xs-offset-2 {
        margin-left: 16.66667%;
    }
    .row>.col-xs-order-2 {
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .row>.col-xs-3 {
        -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .row>.col-xs-offset-3 {
        margin-left: 25%;
    }
    .row>.col-xs-order-3 {
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
    }
    .row>.col-xs-4 {
        -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .row>.col-xs-offset-4 {
        margin-left: 33.33333%;
    }
    .row>.col-xs-order-4 {
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4;
    }
    .row>.col-xs-5 {
        -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%;
    }
    .row>.col-xs-offset-5 {
        margin-left: 41.66667%;
    }
    .row>.col-xs-order-5 {
        -webkit-order: 5;
        -ms-flex-order: 5;
        order: 5;
    }
    .row>.col-xs-6 {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .row>.col-xs-offset-6 {
        margin-left: 50%;
    }
    .row>.col-xs-order-6 {
        -webkit-order: 6;
        -ms-flex-order: 6;
        order: 6;
    }
    .row>.col-xs-7 {
        -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%;
    }
    .row>.col-xs-offset-7 {
        margin-left: 58.33333%;
    }
    .row>.col-xs-order-7 {
        -webkit-order: 7;
        -ms-flex-order: 7;
        order: 7;
    }
    .row>.col-xs-8 {
        -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .row>.col-xs-offset-8 {
        margin-left: 66.66667%;
    }
    .row>.col-xs-order-8 {
        -webkit-order: 8;
        -ms-flex-order: 8;
        order: 8;
    }
    .row>.col-xs-9 {
        -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .row>.col-xs-offset-9 {
        margin-left: 75%;
    }
    .row>.col-xs-order-9 {
        -webkit-order: 9;
        -ms-flex-order: 9;
        order: 9;
    }
    .row>.col-xs-10 {
        -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%;
    }
    .row>.col-xs-offset-10 {
        margin-left: 83.33333%;
    }
    .row>.col-xs-order-10 {
        -webkit-order: 10;
        -ms-flex-order: 10;
        order: 10;
    }
    .row>.col-xs-11 {
        -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%;
    }
    .row>.col-xs-offset-11 {
        margin-left: 91.66667%;
    }
    .row>.col-xs-order-11 {
        -webkit-order: 11;
        -ms-flex-order: 11;
        order: 11;
    }
    .row>.col-xs-12 {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
    .row>.col-xs-offset-12 {
        margin-left: 100%;
    }
    .row>.col-xs-order-12 {
        -webkit-order: 12;
        -ms-flex-order: 12;
        order: 12;
    }
}

@media (min-width: 768px) {
    *+[class*='col-sm-'] {
        margin-top: 0;
    }
    .flex-sm {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .flex-sm-reverse {
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
    .flex-sm-center {
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
    }
    .flex-sm-left {
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
    .flex-sm-right {
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
    }
    .flex-sm-justify {
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .flex-sm-around {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        -webkit-box-pack: distribute;
        justify-content: space-around;
    }
    .flex-sm-top {
        -webkit-align-items: flex-start;
        -webkit-box-align: flex-start;
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start;
    }
    .flex-sm-middle {
        -webkit-align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
    }
    .flex-sm-bottom {
        -webkit-align-items: flex-end;
        -webkit-box-align: flex-end;
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end;
    }
    .flex-item-sm-top {
        -webkit-align-self: flex-start;
        -ms-grid-row-align: flex-start;
        -ms-flex-item-align: start;
        align-self: flex-start;
    }
    .flex-item-sm-middle {
        -webkit-align-self: center;
        -ms-grid-row-align: center;
        -ms-flex-item-align: center;
        align-self: center;
    }
    .flex-item-sm-bottom {
        -webkit-align-self: flex-end;
        -ms-grid-row-align: flex-end;
        -ms-flex-item-align: end;
        align-self: flex-end;
    }
    .row>.col-sm-offset-0 {
        margin-left: 0;
    }
    .row>.col-sm-1 {
        -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%;
    }
    .row>.col-sm-offset-1 {
        margin-left: 8.33333%;
    }
    .row>.col-sm-order-1 {
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    .row>.col-sm-2 {
        -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%;
    }
    .row>.col-sm-offset-2 {
        margin-left: 16.66667%;
    }
    .row>.col-sm-order-2 {
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .row>.col-sm-3 {
        -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .row>.col-sm-offset-3 {
        margin-left: 25%;
    }
    .row>.col-sm-order-3 {
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
    }
    .row>.col-sm-4 {
        -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .row>.col-sm-offset-4 {
        margin-left: 33.33333%;
    }
    .row>.col-sm-order-4 {
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4;
    }
    .row>.col-sm-5 {
        -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%;
    }
    .row>.col-sm-offset-5 {
        margin-left: 41.66667%;
    }
    .row>.col-sm-order-5 {
        -webkit-order: 5;
        -ms-flex-order: 5;
        order: 5;
    }
    .row>.col-sm-6 {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .row>.col-sm-offset-6 {
        margin-left: 50%;
    }
    .row>.col-sm-order-6 {
        -webkit-order: 6;
        -ms-flex-order: 6;
        order: 6;
    }
    .row>.col-sm-7 {
        -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%;
    }
    .row>.col-sm-offset-7 {
        margin-left: 58.33333%;
    }
    .row>.col-sm-order-7 {
        -webkit-order: 7;
        -ms-flex-order: 7;
        order: 7;
    }
    .row>.col-sm-8 {
        -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .row>.col-sm-offset-8 {
        margin-left: 66.66667%;
    }
    .row>.col-sm-order-8 {
        -webkit-order: 8;
        -ms-flex-order: 8;
        order: 8;
    }
    .row>.col-sm-9 {
        -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .row>.col-sm-offset-9 {
        margin-left: 75%;
    }
    .row>.col-sm-order-9 {
        -webkit-order: 9;
        -ms-flex-order: 9;
        order: 9;
    }
    .row>.col-sm-10 {
        -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%;
    }
    .row>.col-sm-offset-10 {
        margin-left: 83.33333%;
    }
    .row>.col-sm-order-10 {
        -webkit-order: 10;
        -ms-flex-order: 10;
        order: 10;
    }
    .row>.col-sm-11 {
        -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%;
    }
    .row>.col-sm-offset-11 {
        margin-left: 91.66667%;
    }
    .row>.col-sm-order-11 {
        -webkit-order: 11;
        -ms-flex-order: 11;
        order: 11;
    }
    .row>.col-sm-12 {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
    .row>.col-sm-offset-12 {
        margin-left: 100%;
    }
    .row>.col-sm-order-12 {
        -webkit-order: 12;
        -ms-flex-order: 12;
        order: 12;
    }
}

@media (min-width: 992px) {
    *+[class*='col-md-'] {
        margin-top: 0;
    }
    .flex-md {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .flex-md-reverse {
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
    .flex-md-center {
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
    }
    .flex-md-left {
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
    .flex-md-right {
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
    }
    .flex-md-justify {
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .flex-md-around {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        -webkit-box-pack: distribute;
        justify-content: space-around;
    }
    .flex-md-top {
        -webkit-align-items: flex-start;
        -webkit-box-align: flex-start;
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start;
    }
    .flex-md-middle {
        -webkit-align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
    }
    .flex-md-bottom {
        -webkit-align-items: flex-end;
        -webkit-box-align: flex-end;
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end;
    }
    .flex-item-md-top {
        -webkit-align-self: flex-start;
        -ms-grid-row-align: flex-start;
        -ms-flex-item-align: start;
        align-self: flex-start;
    }
    .flex-item-md-middle {
        -webkit-align-self: center;
        -ms-grid-row-align: center;
        -ms-flex-item-align: center;
        align-self: center;
    }
    .flex-item-md-bottom {
        -webkit-align-self: flex-end;
        -ms-grid-row-align: flex-end;
        -ms-flex-item-align: end;
        align-self: flex-end;
    }
    .row>.col-md-offset-0 {
        margin-left: 0;
    }
    .row>.col-md-1 {
        -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%;
    }
    .row>.col-md-offset-1 {
        margin-left: 8.33333%;
    }
    .row>.col-md-order-1 {
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    .row>.col-md-2 {
        -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%;
    }
    .row>.col-md-offset-2 {
        margin-left: 16.66667%;
    }
    .row>.col-md-order-2 {
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .row>.col-md-3 {
        -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .row>.col-md-offset-3 {
        margin-left: 25%;
    }
    .row>.col-md-order-3 {
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
    }
    .row>.col-md-4 {
        -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .row>.col-md-offset-4 {
        margin-left: 33.33333%;
    }
    .row>.col-md-order-4 {
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4;
    }
    .row>.col-md-5 {
        -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%;
    }
    .row>.col-md-offset-5 {
        margin-left: 41.66667%;
    }
    .row>.col-md-order-5 {
        -webkit-order: 5;
        -ms-flex-order: 5;
        order: 5;
    }
    .row>.col-md-6 {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .row>.col-md-offset-6 {
        margin-left: 50%;
    }
    .row>.col-md-order-6 {
        -webkit-order: 6;
        -ms-flex-order: 6;
        order: 6;
    }
    .row>.col-md-7 {
        -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%;
    }
    .row>.col-md-offset-7 {
        margin-left: 58.33333%;
    }
    .row>.col-md-order-7 {
        -webkit-order: 7;
        -ms-flex-order: 7;
        order: 7;
    }
    .row>.col-md-8 {
        -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .row>.col-md-offset-8 {
        margin-left: 66.66667%;
    }
    .row>.col-md-order-8 {
        -webkit-order: 8;
        -ms-flex-order: 8;
        order: 8;
    }
    .row>.col-md-9 {
        -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .row>.col-md-offset-9 {
        margin-left: 75%;
    }
    .row>.col-md-order-9 {
        -webkit-order: 9;
        -ms-flex-order: 9;
        order: 9;
    }
    .row>.col-md-10 {
        -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%;
    }
    .row>.col-md-offset-10 {
        margin-left: 83.33333%;
    }
    .row>.col-md-order-10 {
        -webkit-order: 10;
        -ms-flex-order: 10;
        order: 10;
    }
    .row>.col-md-11 {
        -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%;
    }
    .row>.col-md-offset-11 {
        margin-left: 91.66667%;
    }
    .row>.col-md-order-11 {
        -webkit-order: 11;
        -ms-flex-order: 11;
        order: 11;
    }
    .row>.col-md-12 {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
    .row>.col-md-offset-12 {
        margin-left: 100%;
    }
    .row>.col-md-order-12 {
        -webkit-order: 12;
        -ms-flex-order: 12;
        order: 12;
    }
}

@media (min-width: 1200px) {
    *+[class*='col-lg-'] {
        margin-top: 0;
    }
    .flex-lg {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .flex-lg-reverse {
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
    .flex-lg-center {
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
    }
    .flex-lg-left {
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
    .flex-lg-right {
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
    }
    .flex-lg-justify {
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .flex-lg-around {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        -webkit-box-pack: distribute;
        justify-content: space-around;
    }
    .flex-lg-top {
        -webkit-align-items: flex-start;
        -webkit-box-align: flex-start;
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start;
    }
    .flex-lg-middle {
        -webkit-align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
    }
    .flex-lg-bottom {
        -webkit-align-items: flex-end;
        -webkit-box-align: flex-end;
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end;
    }
    .flex-item-lg-top {
        -webkit-align-self: flex-start;
        -ms-grid-row-align: flex-start;
        -ms-flex-item-align: start;
        align-self: flex-start;
    }
    .flex-item-lg-middle {
        -webkit-align-self: center;
        -ms-grid-row-align: center;
        -ms-flex-item-align: center;
        align-self: center;
    }
    .flex-item-lg-bottom {
        -webkit-align-self: flex-end;
        -ms-grid-row-align: flex-end;
        -ms-flex-item-align: end;
        align-self: flex-end;
    }
    .row>.col-lg-offset-0 {
        margin-left: 0;
    }
    .row>.col-lg-1 {
        -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%;
    }
    .row>.col-lg-offset-1 {
        margin-left: 8.33333%;
    }
    .row>.col-lg-order-1 {
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    .row>.col-lg-2 {
        -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%;
    }
    .row>.col-lg-offset-2 {
        margin-left: 16.66667%;
    }
    .row>.col-lg-order-2 {
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .row>.col-lg-3 {
        -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .row>.col-lg-offset-3 {
        margin-left: 25%;
    }
    .row>.col-lg-order-3 {
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
    }
    .row>.col-lg-4 {
        -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .row>.col-lg-offset-4 {
        margin-left: 33.33333%;
    }
    .row>.col-lg-order-4 {
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4;
    }
    .row>.col-lg-5 {
        -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%;
    }
    .row>.col-lg-offset-5 {
        margin-left: 41.66667%;
    }
    .row>.col-lg-order-5 {
        -webkit-order: 5;
        -ms-flex-order: 5;
        order: 5;
    }
    .row>.col-lg-6 {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .row>.col-lg-offset-6 {
        margin-left: 50%;
    }
    .row>.col-lg-order-6 {
        -webkit-order: 6;
        -ms-flex-order: 6;
        order: 6;
    }
    .row>.col-lg-7 {
        -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%;
    }
    .row>.col-lg-offset-7 {
        margin-left: 58.33333%;
    }
    .row>.col-lg-order-7 {
        -webkit-order: 7;
        -ms-flex-order: 7;
        order: 7;
    }
    .row>.col-lg-8 {
        -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .row>.col-lg-offset-8 {
        margin-left: 66.66667%;
    }
    .row>.col-lg-order-8 {
        -webkit-order: 8;
        -ms-flex-order: 8;
        order: 8;
    }
    .row>.col-lg-9 {
        -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .row>.col-lg-offset-9 {
        margin-left: 75%;
    }
    .row>.col-lg-order-9 {
        -webkit-order: 9;
        -ms-flex-order: 9;
        order: 9;
    }
    .row>.col-lg-10 {
        -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%;
    }
    .row>.col-lg-offset-10 {
        margin-left: 83.33333%;
    }
    .row>.col-lg-order-10 {
        -webkit-order: 10;
        -ms-flex-order: 10;
        order: 10;
    }
    .row>.col-lg-11 {
        -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%;
    }
    .row>.col-lg-offset-11 {
        margin-left: 91.66667%;
    }
    .row>.col-lg-order-11 {
        -webkit-order: 11;
        -ms-flex-order: 11;
        order: 11;
    }
    .row>.col-lg-12 {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
    .row>.col-lg-offset-12 {
        margin-left: 100%;
    }
    .row>.col-lg-order-12 {
        -webkit-order: 12;
        -ms-flex-order: 12;
        order: 12;
    }
}

@media (min-width: 1800px) {
    *+[class*='col-xl-'] {
        margin-top: 0;
    }
    .flex-xl {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .flex-xl-reverse {
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
    .flex-xl-center {
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
    }
    .flex-xl-left {
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
    .flex-xl-right {
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
    }
    .flex-xl-justify {
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .flex-xl-around {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        -webkit-box-pack: distribute;
        justify-content: space-around;
    }
    .flex-xl-top {
        -webkit-align-items: flex-start;
        -webkit-box-align: flex-start;
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start;
    }
    .flex-xl-middle {
        -webkit-align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
    }
    .flex-xl-bottom {
        -webkit-align-items: flex-end;
        -webkit-box-align: flex-end;
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end;
    }
    .flex-item-xl-top {
        -webkit-align-self: flex-start;
        -ms-grid-row-align: flex-start;
        -ms-flex-item-align: start;
        align-self: flex-start;
    }
    .flex-item-xl-middle {
        -webkit-align-self: center;
        -ms-grid-row-align: center;
        -ms-flex-item-align: center;
        align-self: center;
    }
    .flex-item-xl-bottom {
        -webkit-align-self: flex-end;
        -ms-grid-row-align: flex-end;
        -ms-flex-item-align: end;
        align-self: flex-end;
    }
    .row>.col-xl-offset-0 {
        margin-left: 0;
    }
    .row>.col-xl-1 {
        -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%;
    }
    .row>.col-xl-offset-1 {
        margin-left: 8.33333%;
    }
    .row>.col-xl-order-1 {
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    .row>.col-xl-2 {
        -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%;
    }
    .row>.col-xl-offset-2 {
        margin-left: 16.66667%;
    }
    .row>.col-xl-order-2 {
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .row>.col-xl-3 {
        -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .row>.col-xl-offset-3 {
        margin-left: 25%;
    }
    .row>.col-xl-order-3 {
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
    }
    .row>.col-xl-4 {
        -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .row>.col-xl-offset-4 {
        margin-left: 33.33333%;
    }
    .row>.col-xl-order-4 {
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4;
    }
    .row>.col-xl-5 {
        -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%;
    }
    .row>.col-xl-offset-5 {
        margin-left: 41.66667%;
    }
    .row>.col-xl-order-5 {
        -webkit-order: 5;
        -ms-flex-order: 5;
        order: 5;
    }
    .row>.col-xl-6 {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .row>.col-xl-offset-6 {
        margin-left: 50%;
    }
    .row>.col-xl-order-6 {
        -webkit-order: 6;
        -ms-flex-order: 6;
        order: 6;
    }
    .row>.col-xl-7 {
        -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%;
    }
    .row>.col-xl-offset-7 {
        margin-left: 58.33333%;
    }
    .row>.col-xl-order-7 {
        -webkit-order: 7;
        -ms-flex-order: 7;
        order: 7;
    }
    .row>.col-xl-8 {
        -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .row>.col-xl-offset-8 {
        margin-left: 66.66667%;
    }
    .row>.col-xl-order-8 {
        -webkit-order: 8;
        -ms-flex-order: 8;
        order: 8;
    }
    .row>.col-xl-9 {
        -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .row>.col-xl-offset-9 {
        margin-left: 75%;
    }
    .row>.col-xl-order-9 {
        -webkit-order: 9;
        -ms-flex-order: 9;
        order: 9;
    }
    .row>.col-xl-10 {
        -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%;
    }
    .row>.col-xl-offset-10 {
        margin-left: 83.33333%;
    }
    .row>.col-xl-order-10 {
        -webkit-order: 10;
        -ms-flex-order: 10;
        order: 10;
    }
    .row>.col-xl-11 {
        -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%;
    }
    .row>.col-xl-offset-11 {
        margin-left: 91.66667%;
    }
    .row>.col-xl-order-11 {
        -webkit-order: 11;
        -ms-flex-order: 11;
        order: 11;
    }
    .row>.col-xl-12 {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
    .row>.col-xl-offset-12 {
        margin-left: 100%;
    }
    .row>.col-xl-order-12 {
        -webkit-order: 12;
        -ms-flex-order: 12;
        order: 12;
    }
}


/*
* Global styles
// ================================= */

body {
    text-align: center;
    font-family: "InterstatePlRegular", sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.02em;
    line-height: 24px;
    color: #222;
    background: #fff;
}

body::-webkit-scrollbar-track {
    box-shadow: none;
    border-radius: 10px;
    background-color: #F5F5F5;
}

body::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: none;
    background-color: #555;
}

body .default-font {
    font-family: "Roboto Slab", sans-serif;
}

body .second-font {
    font-family: "Poppins", sans-serif;
}

.lb, .rb {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 50px;
    background: #ffffff;
    display: none;
    z-index: 999;
}

.lb {
    left: 0;
}

.rb {
    right: 0;
}

.bb {
    position: fixed;
    right: 0;
    left: 0;
    height: 50px;
    width: 100vw;
    background: #ffffff;
    bottom: 0;
    display: none;
    z-index: 999;
}

@media (min-width: 992px) {
    .lb, .rb, .bb {
        display: block;
    }
}

.bg-gray {
    background-color: #efefef
}

hr {
    height: 1px;
    width: 100%;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    background: #000;
}

.link {
    text-decoration: underline;
    display: inline-block;
}

a:hover {
    color: #2A66C3;
    text-decoration: none;
}

a:focus {
    color: #2A66C3;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    vertical-align: baseline;
    display: block;
    color: #063b82;
    font-weight: 400;
    padding: 20px 0;
    font-family: "InterstatePlRegular", sans-serif;
}

h1 a:focus, h1 a:hover, h2 a:focus, h2 a:hover, h3 a:focus, h3 a:hover, h4 a:focus, h4 a:hover, h5 a:focus, h5 a:hover, h6 a:focus, h6 a:hover, .h1 a:focus, .h1 a:hover, .h2 a:focus, .h2 a:hover, .h3 a:focus, .h3 a:hover, .h4 a:focus, .h4 a:hover, .h5 a:focus, .h5 a:hover, .h6 a:focus, .h6 a:hover {
    color: #2A66C3;
    text-decoration: none;
}

html body h1, .h1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
}

@media (min-width: 768px) {
    html body h1, .h1 {
        font-size: 67px;
    }
}

.h1-p {
    font-size: 16px;
    font-weight: lighter;
    color: #222;
}

h2, .h2 {
    font-size: 35px;
    line-height: 1.2;
    font-weight: 600;
}

@media (min-width: 768px) {
    h2, .h2 {
        font-size: 50px;
    }
}

h3, .h3 {
    font-size: 25px;
    line-height: 1.4;
    font-weight: 300;
}

h3:before {
    position: absolute;
    margin: 15px 0 0 -14px;
    vertical-align: middle;
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #063b82;
    content: "";
    border-radius: 3px;
}

h3:after {
    position: absolute;
    margin: 15px 0 0 8px;
    vertical-align: middle;
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #063b82;
    content: "";
    border-radius: 3px;
}

@media (min-width: 768px) {
    h2, h3, .h3, .h2 {
        font-size: 28px;
    }
}

h4, .h4 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.4;
}

@media (min-width: 768px) {
    h4, .h4 {
        font-size: 24px;
    }
    #aplikacja div[class*="col"] > span:first-child {
        font-size: 50px !important;
    }
}

@media (max-width: 768px) {
    #aplikacja div[class*="col"] > span:first-child {
        font-size: 35px !important;
    }
}

h5, .h5 {
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
}

@media (min-width: 768px) {
    h5, .h5 {
        font-size: 20px;
    }
}

h5:before {
    position: absolute;
    margin: 10px 0 0 -14px;
    vertical-align: middle;
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #063b82;
    content: "";
    border-radius: 3px;
}

h5:after {
    position: absolute;
    margin: 10px 0 0 8px;
    vertical-align: middle;
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #063b82;
    content: "";
    border-radius: 3px;
}

h6, .h6 {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 300;
}

p {
    font-family: "InterstatePlLight", sans-serif;
}

@media (min-width: 768px) {
    h6, .h6 {
        font-size: 18px;
    }
}

#page-preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #063b82;
    z-index: 3000;
}

.contpre {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@keyframes clockwise {
    to {
        transform: rotate(360deg) translatez(0);
    }
}

.two {
    height: 50px;
    width: 50px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.75) rgba(255, 255, 255, 0.75) rgba(255, 255, 255, 0.25) rgba(255, 255, 255, 0.25);
    border-radius: 100%;
    animation: clockwise .5s linear infinite;
}

.text-center {
    text-align: center;
}

.text-middle {
    vertical-align: middle;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

@media (min-width: 480px) {
    .text-xs-center {
        text-align: center;
    }
    .text-xs-right {
        text-align: right;
    }
    .text-xs-justify {
        text-align: justify;
    }
    .text-xs-left {
        text-align: left;
    }
}

@media (min-width: 768px) {
    .text-sm-center {
        text-align: center;
    }
    .text-sm-right {
        text-align: right;
    }
    .text-sm-justify {
        text-align: justify;
    }
    .text-sm-left {
        text-align: left;
    }
}

@media (min-width: 992px) {
    .text-md-center {
        text-align: center;
    }
    .text-md-right {
        text-align: right;
    }
    .text-md-justify {
        text-align: justify;
    }
    .text-md-left {
        text-align: left;
    }
}

@media (min-width: 1200px) {
    .text-lg-center {
        text-align: center;
    }
    .text-lg-right {
        text-align: right;
    }
    .text-lg-justify {
        text-align: justify;
    }
    .text-lg-left {
        text-align: left;
    }
}

.nav {
    display: none;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 1500;
}

@media (min-width: 992px) {
    .nav {
        position: absolute;
        top: 0;
    }
}

.nav-outside {
    position: relative;
    display: block;
}

@media (min-width: 992px) {
    .nav-outside {
        display: none;
    }
}

.nav-outside.show .nav-inside {
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

.nav-inside {
    padding-top: 20px;
    padding-left: 0;
    width: 220px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    overflow-y: scroll;
    -webkit-transform: translateX(+100%);
    transform: translateX(+100%);
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    will-change: transform;
    z-index: 500;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    background: #ffffff;
}

@media (min-width: 768px) {
    .nav-inside {
        overflow: auto;
    }
}

@media (min-width: 992px) {
    .nav-inside {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        position: relative;
        padding: 0 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        background: #fff;
        overflow: visible;
        box-shadow: none;
    }
}

.nav-inside::-webkit-scrollbar {
    width: 0px;
}

.nav-logotype {
    display: block;
    max-width: 130px;
    position: relative;
    top: 0;
    left: 20px;
}

@media (min-width: 992px) {
    .nav-logotype {
        margin: 0;
    }
}

.nav-links {
    margin-top: 20px;
    text-align: left;
}

@media (min-width: 992px) {
    .nav-links {
        margin-top: 0;
    }
}

.nav-links li {
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 992px) {
    .nav-links li {
        display: inline-block;
        border-bottom: none;
    }
}

.nav-links li.active a {
    color: #00bcf2;
}

.nav-links li.active a:before, .nav-links li a:hover::before {
    display: none;
}

@media (min-width: 992px) {
    .nav-links li.active a {
        background: transparent;
    }
}

.nav-links li.active a:after {
    opacity: 1;
    bottom: 0;
}

@media (min-width: 992px) {
    .nav-links li:last-child {
        margin-right: 20px;
    }
    .nav-links li.active a:before, .nav-links li a:hover::before {
        display: inline-block;
        background: #00bcf2;
    }
}

.nav-links li+li {
    margin-top: 5px;
}

@media (min-width: 992px) {
    .nav-links li+li {
        margin-top: 0;
        margin-left: 40px;
    }
}

@media (min-width: 1800px) {
    .nav-links li+li {
        margin-left: 40px;
    }
}

.nav-links a {
    position: relative;
    padding: 10px 20px;
    display: block;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    color: #063b82;
    font-family: "InterstatePlRegular";
}

@media (min-width: 992px) {
    .nav-links a {
        padding: 15px 0px 11px;
    }
}

.nav-links a:before {
    position: absolute;
    margin: 8px 0 0 -15px;
    vertical-align: middle;
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #ffffff;
    content: "";
    border-radius: 3px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.nav-links a:focus {
    color: #333;
}

.nav-links a:hover {
    color: #00bcf2;
}

@media (min-width: 992px) {
    .nav-links a:hover {
        background: transparent;
    }
}

.nav-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: #00bcf2;
    z-index: 1000;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

@media (min-width: 992px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span, .nav-toggle span:after, .nav-toggle span:before {
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    top: 0;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    backface-visibility: hidden;
    border-radius: 5px;
}

.nav-toggle span:after, .nav-toggle span:before {
    content: "";
    position: absolute;
    right: 0;
    top: -8px;
}

.nav-toggle span:after {
    top: 8px;
}

.nav-toggle:hover {
    cursor: pointer;
}

.nav-toggle.active {
    background: transparent;
    box-shadow: none;
}

.nav-toggle.active span {
    background-color: transparent;
}

.nav-toggle.active span:before {
    -webkit-transform: rotate(45deg) translate(4px, 5px);
    transform: rotate(45deg) translate(4px, 5px);
    background-color: #00bcf2;
}

.nav-toggle.active span:after {
    -webkit-transform: rotate(-45deg) translate(6px, -7px);
    transform: rotate(-45deg) translate(6px, -7px);
    background-color: #00bcf2;
}

.nav.nav-fixed {
    background: #333;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

#border-nav {
    position: fixed;
    top: 50%;
    width: 50px;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

#border-nav li {
    text-align: center;
}

#border-nav a {
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#border-nav a i {
    font-size: 23px;
    padding: 10px 0;
    color: #063b82;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

#border-nav a:hover i {
    color: #00bcf2;
}

.overflow-hid {
    overflow: hidden !important;
}

.toTopButton {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    font-size: 26px;
    line-height: 36px;
    text-align: center;
    color: #FFF;
    background: #063b82;
    border-radius: 50%;
    overflow: hidden;
    text-decoration: none;
    visibility: hidden;
    z-index: 1200;
    transition: 0.4s all cubic-bezier(0.41, 0.22, 0.18, 1.71);
    transform: scale(0.5);
    opacity: 0;
}

.toTopButton:before {
    font-family: FontAwesome;
    content: '\f106';
}

.toTopButton:hover, .toTopButton:focus {
    color: #FFF;
    background: #255bae;
    text-decoration: none;
}

.toTopButton--active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

@media (min-width: 768px) {
    .toTopButton {
        right: 20px;
        bottom: 20px;
    }
}

.center-right-flex {
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: end;
    -webkit-box-align: center;
    display: box;
    box-pack: center;
    box-align: center;
}

.main-header {
    position: relative;
}

.container-fluid .text {
    background: #063b82;
    height: calc(50vh);
    z-index: 100;
}

.container-fluid .text h1 {
    color: #ffffff;
    text-align: center;
    line-height: .9;
    font-size: 100px;
    margin: 0 auto;
}

.container-fluid .text span {
    color: #2be9ff;
    padding-left: 0px;
    font-family: "InterstatePlBold", sans-serif;
}

@media (min-width: 992px) {
    .container-fluid .text {
        background: #063b82;
        height: calc(100vh - 100px);
        z-index: 100;
    }
    .container-fluid .text h1 {
        color: #ffffff;
        text-align: left;
        line-height: .9;
        font-size: 180px;
        margin-right: -27px;
        margin-top: -80;
    }
    .container-fluid .text span {
        color: #2be9ff;
        padding-left: 40px;
        font-family: "InterstatePlBold", sans-serif;
    }
}

.container-fluid .image {
    background: #2D2D2D;
    height: calc(100vh - 100px);
}

.full-width {
    width: 100%;
    height: 100%;
    background-image: url('../gfx/gallery/zlote_tarasy.jpg');
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-position: bottom;
}

.full-width img {
    width: 100%;
}

.no-padding {
    padding: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

#scrolldown {
    bottom: 80px;
    height: 100px;
    margin-left: -50px;
    position: absolute;
    left: 50%;
    text-align: center;
    width: 100px;
    z-index: 101;
}

#scrolldown p {
    animation-duration: 2s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    animation-name: scroll;
    color: #00BDF2;
}

#scrolldown span {
    color: #00BDF2;
}

.mouse {
    border: 2px solid #00BDF2;
    border-radius: 18px;
    display: block;
    height: 60px;
    left: 50%;
    margin: 10px 0 0 -18px;
    position: absolute;
    width: 36px;
}

.mouse span {
    display: block;
    font-size: 1.5em;
    margin: 6px auto;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@media (min-width: 992px) {
    .page-header {
        padding: 70px 0 0 0;
        height: 80vh;
    }
}

.page-header .container {
    width: 100%;
}

#app-header a, #app-header a:focus, #app-header a:hover {
    text-decoration: none;
    background-color: transparent;
}

#app-header .navbar {
    border: none;
    border-radius: 0;
    margin-bottom: 0;
}

#app-header .navbar-toplinks {
    min-height: 34px;
    background-color: #333;
    font-size: 14px;
    line-height: 24px;
    display: none;
}

@media (min-width: 992px) {
    #app-header .navbar-toplinks {
        display: block;
    }
}

#app-header .navbar-toplinks a {
    color: #fff;
    font-size: 14px;
    padding: 5px 0;
    line-height: 24px;
}

#app-header .navbar-toplinks a:focus, #app-header .navbar-toplinks a:hover, #app-header .hoverable:hover {
    color: #999;
}

#app-header .navbar-toplinks .navbar-segments li {
    padding-right: 30px;
}

#app-header .navbar-branding, .citi-blue #app-header .navbar-branding, .citi-business #app-header .navbar-branding {
    background-repeat: repeat;
    background-size: contain;
    background-color: #00bdf2;
    background-image: -webkit-linear-gradient(270deg, #00bdf2 0, #00b3f0 18%, #0066b3 77%, #004985 100%);
    background-image: linear-gradient(180deg, #00bdf2 0, #00b3f0 18%, #0066b3 77%, #004985 100%);
    border-bottom: 1px solid #004985;
}

.citi-priority #app-header .navbar-branding {
    background-color: #0e2a48;
    background-image: none;
    border-bottom: 1px solid #666;
}

.citi-gold-priority #app-header .navbar-branding {
    background-color: #564639;
    background-image: none;
    border-bottom: 1px solid #333;
}



#app-header .citi-logo {
    display: inline-block;
    cursor: pointer;
    margin: 17px 0px;
}

@media (min-width: 992px) {
    #app-header .citi-logo {
        margin: 17px 50px;
    }
}

#app-header .citi-logo img {
    height: 31px;
}

#app-header .navbar-branding .segment-name, .citi-blue #app-header .navbar-branding .segment-name, .citi-business #app-header .navbar-branding .segment-name {
    display: none;
}

.citi-gold #app-header .navbar-branding .segment-name, .citi-gold-priority #app-header .navbar-branding .segment-name, .citi-priority #app-header .navbar-branding .segment-name {
    display: inline-block;
    height: 33px;
    background-position: 0 6px;
    background-size: auto 24px;
    margin-left: 41px;
}

#app-header .navbar-branding .segment-name:before {
    display: inline-block;
    vertical-align: bottom;
    height: 20px;
    content: "";
    border-left: 1px solid rgba(225, 225, 225, 0.3);
    margin: 8px 0 0 -20px;
}

#app-header .loginout-wrapper li {
    float: right;
    line-height: 24px;
    padding-top: 15px;
}



#app-header .loginout-wrapper #cc-years-20 {
    display: none;
}

@media only screen and (min-width: 991px) {
    #app-header .loginout-wrapper #cc-years-20 {
        margin-right: 80px;
        display: block;
    }
}

#app-header .loginout-wrapper .menu-login {
    padding: 20px 0;
    margin-left: 20px;
}

#app-header .loginout-wrapper a {
    color: #fff;
}

#app-header .loginout-wrapper li a:focus, #app-header .loginout-wrapper li a:hover {
    color: #999;
}

#google-container {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #e7eaf0;
}

@media only screen and (min-width: 768px) {
    #google-container {
        height: 400px;
        margin: 0 50px;
    }
}

@media only screen and (min-width: 1170px) {
    #google-container {
        height: 600px;
        margin: 0 50px;
    }
}

#google-map {
    position: relative;
}

#google-map address {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 1em 1em;
    background-color: rgba(211, 104, 104, 0.9);
    color: white;
    font-size: 13px;
    font-size: 0.8125rem;
}

@media only screen and (min-width: 768px) {
    #google-map address {
        font-size: 15px;
        font-size: 0.9375rem;
        text-align: center;
    }
}

.feature-single {
    padding-top: 20px;
}

@media (min-width: 992px) {
    .feature-single {
        padding-top: 40px;
    }
    #download {
        margin-top: -260px;
    }
}

@media (max-width: 1199px) {
    #download {
        margin-top: -120px;
    }
}

#download {
    position: relative;
    z-index: 1;
}

#download .container {
    padding: 60px 0;
}

#download .container img {
    width: 240px;
    padding: 20px;
}

#download-section {
    background: #063b82;
}

#download-section h5 {
    color: #ffffff;
}

#download-section h5::after, #download-section h5::before {
    background: #ffffff;
}

footer {
    margin: 15px 0;
}

footer p {
    font-size: 12px;
    text-align: center;
    font-family: "InterstatePlRegular", sans-serif;
    letter-spacing: 0;
    color: #063b82;
    margin: 0 5px;
}

@media (min-width: 992px) {
    footer p {
        text-align: left;
        margin: 0 35px;
    }
}

footer hr {
    background: #063b82;
    margin-top: 10px;
    margin-bottom: 10px;
}

footer ul li {
    display: block;
}

footer ul li:last-child {
    border-right: none
}

footer ul li a {
    font-size: 12px;
    text-align: right;
    font-family: "InterstatePlRegular", sans-serif;
    letter-spacing: 0;
    color: #063b82;
    padding: 0 15px;
}

footer ul li:last-child a {
    border-right: none;
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 992px) {
    footer ul {
        float: right;
        margin-right: 35px;
    }
    footer ul li {
        display: inline;
        border-right: 1px solid #063b82;
    }
    footer ul li:last-child {
        border-right: none
    }
    footer ul li a {
        font-size: 12px;
        text-align: right;
        font-family: "InterstatePlRegular", sans-serif;
        letter-spacing: 0;
        color: #063b82;
        padding: 0 15px;
    }
    footer ul li:last-child a {
        border-right: none;
        padding-left: 15px;
        padding-right: 0;
    }
}

.slideform {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 996;
    top: 0;
    padding: 10px;
    left: -500px;
    background-color: rgba(255, 255, 255, 0.88);
    overflow-x: hidden;
    transition: 0.5s;
    display: table;
}

@media (min-width: 992px) {
    .slideform {
        width: 500px;
        padding: 50px 20px 50px 50px;
    }
}

.slideform.opened {
    left: 0px;
}

.sidenav a:hover, .offcanvas a:focus {
    color: #f1f1f1;
}

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

@media (min-width: 992px) {
    #film {
        margin-top: 70px;
    }
    #film .media-wrapper {
        margin: 0 auto;
        max-width: 70%;
    }
}

.form-horizontal {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.slideform-close {
    top: 52px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: #00bcf2;
}

form {
    color: #063b82;
}

form legend {
    color: #063b82;
    font-family: "InterstatePlBold", sans-serif;
    font-size: 25px;
    padding-bottom: 30px;
}

form .form-group input {
    border: 0;
    outline: 0;
    background: transparent;
    border-bottom: 2px solid #063b82;
    border-radius: 0;
    outline: none;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

form .checkbox label, .radio label, .radio label a {
    font-size: 12px;
    text-align: left;
}

form .form-group button {
    background-color: #ffa202;
    border: none;
    text-transform: uppercase;
    padding: 15px 25px;
    border-radius: 34px;
    font-size: 16px;
    height: 50px;
    width: 250px
}

.radio {
    padding-left: 40px;
}

.radio label {
    display: inline-block;
    position: relative;
}

.radio label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-top: 2px;
    margin-left: -10px;
    border: 1px solid #063b82;
    border-radius: 50%;
    -webkit-transition: border 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out;
    transition: border 0.15s ease-in-out;
}

.radio label::after {
    display: inline-block;
    position: absolute;
    content: " ";
    width: 11px;
    height: 11px;
    left: 3px;
    top: 3px;
    margin-left: -20px;
    border-radius: 50%;
    background-color: #555555;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}

.radio input[type="radio"] {
    opacity: 0;
}

.radio input[type="radio"]:focus+label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.radio input[type="radio"]:checked+label::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

#slide-content p {
    background: #f8f8f8;
}

#slider .carousel-indicators {
    bottom: 40px;
    z-index: 90;
    display: none;
}

#slider .carousel-indicators li {
    width: 12px;
    height: 12px;
    background-color: #063b82;
    margin: 5px;
    border: 1px solid #063b82;
}

#slider .carousel-indicators li.active {
    width: 12px;
    height: 12px;
    background-color: #2be9ff;
    border: 1px solid #2be9ff;
}

#slider .slide-desc {
    bottom: 20px;
    right: 0;
    text-align: right;
    z-index: 80;
    cursor: pointer;
}

#slider .slide-desc h2 {
    color: #2be9ff;
    font-size: 70px;
    text-align: center;
    padding: 10px 0;
}

#slider .slide-desc h2 span {
    color: #063b82;
}

#slider .desc-div {
    text-align: left;
    padding: 0px 20px 20px 20px;
}

#slider .desc-div p {
    font-family: "InterstatePlBold", sans-serif;
}

@media (max-width: 1150px) {
    #slider .slide-desc {
        bottom: 0 !important;
    }
}

@media (min-width: 992px) {
    #slide-content p {
        background: #f8f8f8;
    }
    #slider .carousel-indicators {
        bottom: 40px;
        z-index: 90;
    }
    #slider .carousel-indicators li {
        width: 12px;
        height: 12px;
        background-color: #063b82;
        margin: 5px;
    }
    #slider .carousel-indicators li.active {
        width: 12px;
        height: 12px;
        background-color: #2be9ff;
    }
    #slider .slide-desc {
        position: absolute;
        bottom: 20px;
        right: 0;
        margin-right: -50px;
        text-align: right;
        z-index: 80;
    }
    #slider .slide-desc h2 {
        color: #2be9ff;
        font-size: 54px;
        text-align: left;
    }
    #slider .slide-desc h2 span {
        color: #063b82;
    }
    #slider .desc-div {
        background: #f2f2f2;
        max-width: 550px;
        text-align: left;
        padding: 30px 30px 60px 30px;
    }
    #slider .desc-div p {
        font-family: "InterstatePlBold", sans-serif;
    }
}

#download-section h5 {
    display: inline-block;
    padding: 15px;
}

#download-section a img {
    max-height: 40px;
    margin: 10px;
}

#aplikacja .container-fluid{
    padding-right: 50px;
    padding-left: 50px;
}

#aplikacja div[class*="col"] > span:first-child{
    color: #00BDF2;
    font-size: 60px;
}

.carousel-inner .item{
    cursor: pointer;
}

#slider > .row:first-child{
    min-width: 1100px !important;
}

@media screen and (max-width: 768px) {
    #slider > .row:first-child{
        min-width: 320px !important;
    }
}

.container .row:first-child + .row{
    padding-left: 20px;
    padding-right: 20px;
}
