/******************************************************************************/

/*
 * Form
 */
.form {
    margin: 0 auto;
    max-width: 100rem;
}
form .ibs {
    margin-bottom: 1rem;
}

/******************************************************************************/

/*
 * Input
 */
.input {
    background: #fff;
    border: 1px solid #000;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    clear: both;
    display: inline-block;
    font-size: 2.1rem;
    line-height: 3.1rem;
    max-width: 100%;
    outline: none;
    padding: 1.3rem 1.4rem;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    vertical-align: middle;
    width: 22rem;
}
.input--short {
    text-align: center;
    width: 7rem;
}
.input--long {
    width: 35rem;
}
.input--full {
    max-width: none;
    width: 100%;
}
.input:hover {
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.33);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.33);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.33);
}
.input:focus {
    border-color: #000 !important;
}
.input--invalid {
    border-color: #d47171;
}
.input-input {
    margin-left: -100%;
    opacity: 0;
    position: absolute;
    width: 0;
    z-index: -1;
}
.input-txt {
    display: block;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.input-txt::before {
    content: '\0000a0';
}

/*
 * Input number
 */
.input--number {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    text-align: center;
    width: 5.5rem;
}
.input--number::-webkit-inner-spin-button,
.input--number::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*
 * Textarea
 */
.input--textarea {
    height: 9rem;
    line-height: 1.2em;
    vertical-align: top;
    width: 100%;
}
.input--textarea--medium {
    height: 20rem;
}
.input--textarea--large {
    height: 40rem;
}

/*
 * Select
 */
.input--select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-attachment: scroll;
    background-image: url('../images/select.svg');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 3rem auto;
    min-width: 15rem;
    outline: medium none !important;
    padding: 0.4rem 4.4rem 0.4rem 0.9rem;
    text-overflow: '';
    z-index: 1;
}
select::-ms-expand {
    display: none;
}
.select--full {
    width: 98%;
}

/*
 * Input checkbox, Input radio
 */
.input--checkbox,
.input--radio {
    background: none;
    border-width: 0;
    cursor: pointer;
    display: inline-block;
    height: 2rem;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    top: 0;
    width: 2rem;
}
.input-i {
    background: #fff;
    border: inherit;
    border-width: 1px;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.input-input:checked + .input-i {
    background: #f5f5f5;
    border-color: #000;
}
.input-i::before {
    background: #282828;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    bottom: -50%;
    content: '';
    display: block;
    left: -50%;
    position: absolute;
    right: -50%;
    top: -50%;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.input--checkbox .input-input:checked + .input-i::before {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.input--checkbox .input-i::after {
    background: none;
    border-bottom: 0.2rem solid rgba(255, 255, 255, 1);
    border-right: 0.2rem solid rgba(255, 255, 255, 1);
    bottom: 50%;
    content: '';
    height: 0;
    left: 15%;
    opacity: 0;
    position: absolute;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: left bottom;
    -moz-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    -o-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transition: all 0.2s ease-out 0.1s, height 0.1s ease-in 0s;
    -moz-transition: all 0.2s ease-out 0.1s, height 0.1s ease-in 0s;
    -o-transition: all 0.2s ease-out 0.1s, height 0.1s ease-in 0s;
    transition: all 0.2s ease-out 0.1s, height 0.1s ease-in 0s;
    width: 0;
}
.input--checkbox .input-input:checked + .input-i::after {
    height: 60%;
    opacity: 1;
    -webkit-transition: all 0.2s ease-in 0s, height 0.2s ease-out 0.2s;
    -moz-transition: all 0.2s ease-in 0s, height 0.2s ease-out 0.2s;
    -o-transition: all 0.2s ease-in 0s, height 0.2s ease-out 0.2s;
    transition: all 0.2s ease-in 0s, height 0.2s ease-out 0.2s;
    width: 35%;
}

.input--radio,
.input--radio .input-i,
.input--radio .input-i::before {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.input--radio .input-input:checked + .input-i::before {
    -webkit-transform: scale(0.35);
    -moz-transform: scale(0.35);
    -ms-transform: scale(0.35);
    -o-transform: scale(0.35);
    transform: scale(0.35);
}

/******************************************************************************/

/*
 * Button
 */
.button {
    background: #efefef;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    color: #000;
    cursor: pointer;
    display: inline-block;
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 2.8rem;
    margin: 0;
    max-width: 100%;
    overflow: hidden;
    padding: 2.1rem 2.5rem;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    vertical-align: middle;
    width: 27rem;
    z-index: 3;
}
.button--large {
    font-size: 1.4rem;
    padding: 1.3rem 1.8rem;
}
.button--biger {
    font-size: 1.8rem;
    margin-top: 1.5rem;
    padding: 1.6rem 1rem;
}
.button--full {
    width: 100%;
}
.button:hover,
a:hover .button {
    /*background: #ddd;
    border-color: #888;*/
    color: #000;
    text-decoration: none;
}
.button:active {
    -webkit-box-shadow: inset 0 0 0.3rem rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 0 0 0.3rem rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 0.3rem rgba(0, 0, 0, 0.5);
}
/*
.button::before {
    background: rgba(255,255,255,0.3);
    bottom: 0;
    content: '';
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: inherit;
    -moz-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
    width: 0;
    z-index: -1;
}
.button:hover::before,
a:hover .button::before {
    width: 100%;
}
*/

.button--primary,
.button--primary:hover,
a:hover .button--primary {
    background: #888;
    background: var(--c2);
    background: -webkit-linear-gradient(0deg, var(--c2) 0%, var(--c3) 100%);
    background: -moz-linear-gradient(0deg, var(--c2) 0%, var(--c3) 100%);
    background: -ms-linear-gradient(0deg, var(--c2) 0%, var(--c3) 100%);
    background: -o-linear-gradient(0deg, var(--c2) 0%, var(--c3) 100%);
    background: linear-gradient(90deg, var(--c2) 0%, var(--c3) 100%);
    color: #000;
}

.button--secondary {
    background: #efefef;
    color: #000;
}

.button-small {
    font-size: 75%;
    font-weight: lighter;
}

button:active,
button:focus {
    background-image: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: 0;
}

/*
 * Button Remove
 */
.button--remove {
    border: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: block;
    font-size: 0.000001rem;
    height: 2.8rem;
    margin: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    padding: 0;
    position: relative;
    width: 2.8rem;
}
.button--remove::before,
.button--remove::after {
    background: none;
    border-style: solid;
    border-width: 1px;
    bottom: 0;
    content: '';
    height: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
    width: 50%;
}
.button--remove::before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.button--remove::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*
 * Button Attach
 */
.button--attach,
.button--attach:hover {
    background: #fff;
    border: 0;
    display: block;
    height: 2.2rem;
    margin: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    padding: 0;
    position: relative;
    width: 2.2rem;
}
.button--attach::before {
    background: url('../images/icons/button--attach.svg') no-repeat center;
    background-size: auto 100%;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0.75;
    position: absolute;
    right: 0;
    top: 0;
}
.button--attach:hover::before {
    opacity: 1;
}

/*
 * Button Password
 */
.button--password,
.button--password:hover {
    background: #fff;
    border: 0;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
    width: 5rem;
}
.button--password::before {
    background: url('../images/icons/button--password.svg') no-repeat center;
    background-size: auto 100%;
    content: '\0000a0';
    display: block;
    opacity: 0.75;
}
.button--password:hover::before {
    opacity: 1;
}
.button--password::after {
    border: 1px solid #888;
    bottom: 0;
    content: '';
    display: none;
    height: 100%;
    left: 0;
    margin: auto;
    opacity: 0.75;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 0;
}
.input[type='text'] + .button--password::after {
    display: block;
}

/******************************************************************************/

/*
 * File
 */
.file {
    display: block;
    position: relative;
}
.input--file {
    overflow: hidden;
    position: relative;
}
.input--file .input-txt {
    margin-right: 3rem;
}
.file-button {
    position: absolute !important;
    right: 1rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.file-button.button--attach,
.lbl.-focus .file-button.button--remove {
    display: block;
}
.lbl.-focus .file-button.button--attach,
.file-button.button--remove {
    display: none;
}

/******************************************************************************/

/*
 * Password
 */
.password {
    display: block;
    position: relative;
}
.password-button {
    position: absolute;
    right: 0.1rem;
    top: 0.1rem;
}

/******************************************************************************/

/*
 * LBLs
 */
.lbl {
    display: block;
    line-height: 1.4;
    position: relative;
    text-align: left;

    padding: 0 0 0 22rem;
}
.lbl--s {
    padding-left: 15rem;
}
.lbl-name {
    color: #000;
    display: block;
    float: left;
    font-size: 2.1rem;
    font-weight: bold;
    line-height: 1.5em;
    margin: -0.75em 1rem;
    overflow: hidden;
    padding: 0 0.5rem;
    pointer-events: none;
    position: relative;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translateY(2.9rem);
    -moz-transform: translateY(2.9rem);
    -ms-transform: translateY(2.9rem);
    -o-transform: translateY(2.9rem);
    transform: translateY(2.9rem);
    z-index: 1;

    margin-left: -22rem;
    margin-right: 0;
    padding: 0;
    text-align: right;
    width: 19.5rem;
}
.lbl--s .lbl-name {
    margin-left: -15rem;
    width: 12.5rem;
}
.lbl.-focus .lbl-name,
.no-js .lbl-name {
    /*
    background: #fff;
    font-size: 1.4rem !important;
    -webkit-transform: translateY(0) !important;
    -moz-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    -o-transform: translateY(0) !important;
    transform: translateY(0) !important;
    */
}
.lbl input[type='text'],
.lbl input[type='password'],
.lbl input[type='email'],
.lbl .input--file,
.lbl textarea,
.lbl select {
    clear: both;
    width: 100%;
}
.lbl-aside {
    display: block;
    font-size: 1.4rem;
    line-height: 2rem;
    margin: -2rem auto auto 3.6rem;
    position: relative;
}
.lbl-help {
    display: block;
    font-size: 1.4rem;
    opacity: 0.5;
    padding: 0.5rem 0;
}
.lbl-error {
    display: block;
    font-size: 1.5rem;
    line-height: 1.7rem;
    padding: 0.3rem 0 0;
}
.lbl--invalid,
.lbl--invalid .lbl-name,
.lbl--invalid .lbl-aside,
.lbl--invalid .lbl-help,
.lbl--invalid .lbl-error {
    color: #b72b2b !important;
}
.lbl--invalid .input,
.lbl--invalid .checkbox i {
    border-color: #b72b2b !important;
}
.lbl-title {
    display: block;
    font-size: 0.8em;
    font-weight: bolder;
    opacity: 0.4;
    padding: 0.75em 0 0.1em;
    text-transform: uppercase;
}
.lbl-value {
    display: block;
    padding: 0.1em 0 0.75em;
}

@media only screen and (max-width: 800px) {
    .lbl,
    .lbl--s {
        padding: 0;
    }
    .lbl-name,
    .lbl--s .lbl-name {
        float: none;
        margin: 0;
        text-align: left;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        width: auto;
    }
}

/******************************************************************************/

/* form actions */
.formActions {
    clear: both;
    display: block;
    margin: 1rem 0;
    padding: 0;
}
.formActions--center {
    padding-left: 0;
    text-align: center;
}
.formActions--sides {
    overflow: hidden;
    padding: 15px;
}
.formActions--sides-left {
    float: left;
}
.formActions--sides-right {
    float: right;
}

/******************************************************************************/

/*
 * Loading
 */
.loading {
    position: relative;
    z-index: 999;
}
.loading--full {
    background-color: #fff;
    bottom: 0;
    left: 0;
    filter: alpha(opacity = 80);
    opacity: 0.8;
    position: absolute;
    right: 0;
    top: 0;
}
.loading-text {
    position: absolute;
    text-align: center;
    top: 51%;
    width: 100%;
}
.loading::after {
    -webkit-animation: spin 0.5s cubic-bezier(0.61, 0.28, 0.37, 0.82) infinite;
    -moz-animation: spin 0.5s cubic-bezier(0.61, 0.28, 0.37, 0.82) infinite;
    -o-animation: spin 0.5s cubic-bezier(0.61, 0.28, 0.37, 0.82) infinite;
    animation: spin 0.5s cubic-bezier(0.61, 0.28, 0.37, 0.82) infinite;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #282828;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: '';
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 1;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@-moz-keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@-o-keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/******************************************************************************/

/*
 * Media element
 */
.media {
    display: block;
    margin: 0.8em 0;
    overflow: hidden;
}
.media-image {
    float: left;
    margin-right: 0.8em;
}
.media-content {
    margin: 0;
    overflow: hidden;
}
.media--triple,
.media--double {
    display: inline-block;
    margin: 0.8em 0.4%;
    vertical-align: top;
    width: 48.8%;
}
.media--triple {
    width: 32%;
}

.media2 {
    display: table;
    margin: 0.8em 0;
}
.media2-image,
.media2-content {
    display: table-cell;
    vertical-align: middle;
}
.media2-image {
    padding: 0 0.6em 0 0;
}
.media2-image--after {
    padding: 0 0.6em;
}
.media2--double {
    display: inline-block;
    margin: 0.4em 0.4% 0.8em;
    vertical-align: top;
    width: 48.9%;
}
.media2--inline {
    display: inline-block;
    margin: 0.8em 0.3em;
    vertical-align: middle;
}

/******************************************************************************/

/*
 * Table Grid
 */
.grid {
    display: table;
    width: 100%;
}
.grid--fixed {
    table-layout: fixed;
}
.grid-cell {
    display: table-cell;
    vertical-align: middle;
}
.grid-cell--tabloid {
    width: 1px;
}

/******************************************************************************/

/*
 * Dropdown
 */
.dropdown {
    position: relative;
}
.dropdown-content {
    display: none;
    left: 0;
    position: absolute;
    top: 100%;
    z-index: 500;
}

/******************************************************************************/

/*
 * Hint
 */
.hint {
    color: #999;
    font-size: 0.8em;
    line-height: 1.3em;
}

/******************************************************************************/

/*
 * Container
 */
.container {
    margin: 0 auto;
    max-width: 174rem;
    padding: 0 1rem;
    position: relative;
}

/******************************************************************************/

/*
 * Left
 */
.leftBlock {
    display: table-cell;
    -webkit-flex: 3; /* Safari 6.1+ */
    -moz-flex: 3; /* FF <= 18 */
    -ms-flex: 3; /* IE 10 */
    flex: 3;
    min-width: 200px;
    padding-right: 20px;
    vertical-align: top;
    width: 200px;
    position: relative;
}

/******************************************************************************/

/*
 * Right
 */
.rightBlock {
    display: table-cell;
    min-width: 200px;
    padding-left: 20px;
    vertical-align: top;
    width: 200px;
}

/******************************************************************************/

/*
 * Content
 */
.content {
    display: block;
    vertical-align: top;

    overflow-wrap: break-word;
    word-wrap: break-word;
    /*
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    */
}
.content img {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 100%;
}
.content-noimg img {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    max-width: none;
}
.content .dropdown-content {
    background: #fff;
    border: 1px solid #e6e6e6;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    font-size: 1.4rem;
    min-width: 140px;
    padding: 5px 10px;
}

/******************************************************************************/

.scrollBody {
    /*padding: 5px;*/
    /*border: 1px solid #ccc;*/
    /*background: #f1f1f1;*/
    /*width: 200px;*/
    left: 0;
    top: 0;
    position: relative;
}
.scroll .scrollBody {
    position: fixed;
    top: 0;
    /*background: red;*/
    max-height: 100% !important;
    /*overflow: auto;*/
    overflow: hidden;
}
.scrollbottom {
    position: relative;
}

.scrollbottom .scrollBody {
    /*height: auto !important;*/
    position: absolute !important;
}

/******************************************************************************/

/*
 * Breadcrumbs
 */
.breadcrumbs {
    color: #777;
    font-size: 1.2rem;
    margin: -17px 0 1em;
}
.breadcrumbs a,
.breadcrumbs b,
.breadcrumbs span {
    color: inherit;
    display: inline-block;
    text-decoration: none;
    vertical-align: middle;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}

/******************************************************************************/

/*
 * Swiper + Slider
 */
.swiper-container {
    height: 100%;
    overflow: hidden;
    width: 100%;
}
.swiper-slide {
    background: none;
    cursor: pointer;
    text-align: center;
}
.swiper-button-next,
.swiper-button-prev {
    background: none;
    border: 0;
    color: #888;
    font-size: 3.4rem;
    height: 4.4rem;
    line-height: 4.4rem;
    margin: -2.2rem auto 0;
    opacity: 0.5;
    text-align: center;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    width: 4.4rem;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #888;
    opacity: 1;
}
.swiper-button-prev {
    left: 0;
    right: auto;
}
.swiper-button-next {
    left: auto;
    right: 0;
}
.swiper-button-next .icon,
.swiper-button-prev .icon {
    line-height: 4.4rem;
}
.swiper-pagination {
    display: inline-block;
    opacity: 1;
    position: relative;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    width: auto;
}
.swiper-pagination-bullet {
    background: none;
    height: auto;
    margin: 0 0.6rem;
    min-height: 1.2rem;
    min-width: 1.2rem;
    opacity: 0.5;
    outline: none;
    position: relative;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    vertical-align: middle;
    width: auto;
}
.swiper-pagination-bullet:hover,
.swiper-pagination-bullet-active {
    opacity: 1;
}
.swiper-pagination-bullet::before {
    background: #888;
    border: #888;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: '';
    height: 1.2rem;
    left: 0;
    margin: -0.6rem 0 0;
    position: absolute;
    top: 50%;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    width: 1.2rem;
}
.swiper-pagination-bullet:hover::before,
.swiper-pagination-bullet-active::before {
    background: #888;
    border-color: #888;
}
.swiper-pagination-txt {
    color: #888;
    display: block;
    font-size: 1.4rem;
    font-weight: normal;
    margin: 0 5rem 0 2rem;
    max-width: 16rem;
    text-align: left;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.swiper-pagination-bullet:hover .swiper-pagination-txt,
.swiper-pagination-bullet-active .swiper-pagination-txt {
    color: inherit;
}

.slider {
    overflow: visible;
    position: relative;
    width: 100%;
}
.slider-slides {
    position: relative;
}
.slider-thumbs {
    position: relative;
}
.slider-container {
    left: 0;
    margin: 0 auto;
    max-width: 184rem;
    padding: 0 6rem;
    position: absolute;
    right: 0;
}
.slider-container--1 {
    bottom: 0;
    padding-bottom: 4rem;
    padding-top: 4rem;
    top: 0;
}
.slider-container--2 {
    top: 50%;
}
.slider-container--3 {
    bottom: 1.5rem;
    font-size: 0.000001rem;
    text-align: center;
}

/******************************************************************************/

/*
 * Pagination
 */
.pagination {
    margin: 3em 0;
    text-align: center;
}
.pagination-info {
    color: #ccc;
    padding-bottom: 0;
}
.pagination .table {
    width: 100%;
}
.pagination .td:first-child {
    text-align: left;
}
.pagination .td:last-child {
    text-align: right;
}
.pagination-element {
    background: #ededed;
    color: #000;
    display: inline-block;
    font-size: 1.8rem;
    line-height: 2.2rem;
    margin: 0.3rem;
    min-width: 4.6rem;
    padding: 1.2rem 0.3rem;
    text-decoration: none;
}
.pagination-element--left,
.pagination-element--right {
    background-color: #000;
    color: #fff;
    padding: 1.3rem 3rem;
}
.pagination-element:hover {
    background-color: #ddd;
    color: #444;
    position: relative;
    text-decoration: none;
}
.pagination-element--active,
.pagination-element--active:hover {
    background: #666;
    color: #fff;
    font-weight: bold;
}
.pagination-element--disabled,
.pagination-element--disabled:hover {
    background-color: transparent;
    color: #ccc;
    font-weight: normal;
    pointer-events: none;
}

@media only screen and (max-width: 800px) {
    .pagination .table {
        display: block;
        padding: 6rem 0 0;
        position: relative;
    }
    .pagination .td {
        display: block;
    }
    .pagination .td:first-child {
        left: 0;
        position: absolute;
        top: 0;
        width: 48%;
    }
    .pagination .td:last-child {
        position: absolute;
        right: 0;
        top: 0;
        width: 48%;
    }
}

/******************************************************************************/

/*
 * Items
 */
.item {
    background: none;
    display: inline-block;
    margin: 0;
    padding: 5px 0 20px;
    text-align: center;
    vertical-align: top;
}
.item--2 {
    width: 49.5%;
}
.item--3 {
    width: 32.5%;
}
.item--4 {
    width: 24.5%;
}
.item--5 {
    width: 20%;
}

.item-image {
    display: block;
    height: 140px;
    line-height: 140px;
}
.item-image img {
    vertical-align: middle;
}

.item-name {
    display: block;
    font-weight: normal;
    line-height: 1.2em;
    margin: 0 auto;
    max-width: 70%;
    min-height: 2.4em; /* 2 x line-height */
}

/******************************************************************************/

/*
 * Box
 */
.box {
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    color: #666;
    line-height: 1.4em;
    margin: 0.9em 0;
    padding: 0.7em 1em;
    position: relative;
    text-align: left;
}
.box-close {
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
    color: #666;
    cursor: pointer;
    font-size: 12px;
    height: 16px;
    line-height: 16px;
    position: absolute;
    right: -6px;
    text-align: center;
    top: -6px;
    width: 16px;
}
.box-close:hover {
    font-weight: bold;
    height: 18px;
    line-height: 18px;
    right: -7px;
    top: -7px;
    width: 18px;
}

.box--ok,
.box--ok .box-close {
    background: #f7ffed;
    border-color: #78ca52;
    color: #4dab01;
}
.box--error,
.box--error .box-close {
    background: #fff0f0;
    border-color: #ff9494;
    color: #d92a2a;
}
.box--info,
.box--info .box-close {
    background: #e9f1ff;
    border-color: #81aeff;
    color: #2f5db3;
}
.box--alert,
.box--alert .box-close {
    background: #ffffde;
    border-color: #e1d042;
    color: #a99b27;
}

/******************************************************************************/

/*
 * galeria
 */
.galeria-item {
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 10px;
    max-width: 100%;
}
.galeria-item img {
    max-width: 100%;
}

/******************************************************************************/

/*
 * Socials
 */
.socials {
    font-size: 0.000001px;
    font-weight: normal;
    margin: -0.2rem;
}
.socials-a {
    background: #474747;
    color: #fff;
    display: inline-block;
    font-size: 2rem;
    line-height: 1;
    height: 3rem;
    margin: 0.5rem;
    overflow: hidden;
    padding: 0.5rem 0 0;
    text-align: center;
    text-shadow: 1px 1px 1px #474747, 2px 2px 1px #474747, 3px 3px 1px #474747,
        4px 4px 1px #474747, 5px 5px 1px #474747, 6px 6px 1px #474747,
        7px 7px 1px #474747, 8px 8px 1px #474747, 8px 8px 1px #474747,
        9px 9px 1px #474747, 10px 10px 1px #474747, 11px 11px 1px #474747,
        12px 12px 1px #474747, 13px 13px 1px #474747, 14px 14px 1px #474747,
        15px 15px 1px #474747, 16px 16px 1px #474747, 17px 17px 1px #474747;
    vertical-align: middle;
    width: 3rem;
    will-change: transform;
}
.socials-a:hover {
    background: #888;
    color: #fff;
    text-decoration: none;
    text-shadow: none;
}
.socials-a--facebook:hover {
    background: #3b5998;
}
.socials-a--google:hover {
    background: #de5246;
}
.socials-a--instagram:hover {
    background: #3f729b;
}
.socials-a--linkedin:hover {
    background: #0e76a8;
}
.socials-a--pinterest:hover {
    background: #c8232c;
}
.socials-a--skype:hover {
    background: #00aff0;
}
.socials-a--twitter:hover {
    background: #00acee;
}
.socials-a--youtube:hover {
    background: #c4302b;
}

/******************************************************************************/

/*
 * Logo
 */
.logo {
    display: block;
    font-size: 1.4rem;
    margin: 0;
    max-width: 100%;
    padding: 0;
}
.logo-a {
    color: #000;
    display: block;
}
.logo-img {
    display: block;
    margin: auto;
    width: 100%;
}

/******************************************************************************/

/*
 * Header
 */
.header {
    background: #fff;
    left: 0;
    padding: 0;
    position: relative;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 15;
}

.header-1 {
    background: #fff;
    -webkit-box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
    left: 0;
    min-height: 26.2rem;
    padding: 0;
    position: relative;
    right: 0;
    text-align: left;
    top: 0;
}
.body .header-1 {
    min-height: 28.8rem;
}

.header-logo {
    display: inline-block;
    margin: 1.5rem 0;
    padding: 0;
    position: relative;
    vertical-align: middle;
    width: 23.3rem;
    z-index: 5;
}
.body .header-logo {
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 5.9rem;
    width: 17rem;
}

.header-name {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: normal;
    line-height: 1.4;
    margin: 0 0 0 3.5rem;
    padding: 0;
    position: relative;
    vertical-align: middle;
    z-index: 3;
}
.body .header-name {
    font-size: 1.6rem;
    left: 1rem;
    margin: 0;
    position: absolute;
    right: 55rem;
    top: 3rem;
}
.body .header-name br {
    display: none;
}

.header-pl {
    position: absolute;
    right: 1rem;
    top: 8.9rem;
    width: 9.4rem;
    z-index: 3;
}
.body .header-pl {
    top: 1.5rem;
    width: 4.7rem;
}

@media only screen and (max-width: 1200px) {
    .body .header-1 {
        min-height: 22.5rem;
        min-height: 18rem;
    }

    .body .header-logo {
        top: 5rem;
        width: 17rem;
    }

    .body .header-name {
        display: none;
    }

    .body .header-pl {
        top: 10rem;
        width: 4.7rem;
    }
}

@media only screen and (max-width: 800px) {
    .header-1 {
        min-height: 22.5rem;
        min-height: 18rem;
    }

    .header-logo {
        left: 1rem;
        margin: 0;
        position: absolute;
        top: 5rem;
        width: 17rem;
    }

    .header-name {
        display: none;
    }

    .header-pl {
        top: 10rem;
        width: 4.7rem;
    }
}

/******************************************************************************/

/*
 * Header bar
 */
.bar {
    background: #ddd;
    font-size: 0.9em;
    width: 100%;
}
.bar li {
    display: inline-block;
}
.bar li a {
    display: block;
    padding: 2px 10px;
}
.bar li:first-child a {
    padding-left: 0;
}
.bar li:last-child a {
    padding-right: 0;
}

/******************************************************************************/

/*
 * Nav
 */
.nav {
    background: #fff;
    border: 0;
    clear: both;
    left: 0;
    margin: 0;
    padding: 0;
    position: relative;
    right: 0;
    top: 0;
}

.nav-1 {
    margin: 7.8rem 0 0;
    padding: 0;
    position: relative;
    text-align: center;
}
.nav-1 .nav-ul {
    display: block;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.00001rem;
}
.nav-1 .nav-li {
    display: inline-block;
    margin: 0.2rem 0;
    vertical-align: middle;
    width: 50%;
}
.nav-1 .nav-li:nth-child(odd) {
    order: 1;
}
.nav-1 .nav-li:nth-child(even) {
    order: 2;
}
.nav-1 .nav-a {
    background: #f5f5f5;
    color: #000;
    display: block;
    font-size: 2rem;
    font-weight: 500;
    height: 100%;
    min-height: 6.2rem;
    padding: 1.7rem 1rem;
    text-align: center;
    text-decoration: none;
}
.nav-1 .nav-a:hover {
    color: #000;
}
.nav-1 .-colors1 .nav-a:hover,
.nav-1 .-colors1 .nav-a.-active {
    background: var(--colors1-c2);
    background: -webkit-linear-gradient(
        0deg,
        var(--colors1-c2) 0%,
        var(--colors1-c3) 100%
    );
    background: -moz-linear-gradient(
        0deg,
        var(--colors1-c2) 0%,
        var(--colors1-c3) 100%
    );
    background: -ms-linear-gradient(
        0deg,
        var(--colors1-c2) 0%,
        var(--colors1-c3) 100%
    );
    background: -o-linear-gradient(
        0deg,
        var(--colors1-c2) 0%,
        var(--colors1-c3) 100%
    );
    background: linear-gradient(
        90deg,
        var(--colors1-c2) 0%,
        var(--colors1-c3) 100%
    );
}
.nav-1 .-colors2 .nav-a:hover,
.nav-1 .-colors2 .nav-a.-active {
    background: var(--colors2-c2);
    background: -webkit-linear-gradient(
        0deg,
        var(--colors2-c2) 0%,
        var(--colors2-c3) 100%
    );
    background: -moz-linear-gradient(
        0deg,
        var(--colors2-c2) 0%,
        var(--colors2-c3) 100%
    );
    background: -ms-linear-gradient(
        0deg,
        var(--colors2-c2) 0%,
        var(--colors2-c3) 100%
    );
    background: -o-linear-gradient(
        0deg,
        var(--colors2-c2) 0%,
        var(--colors2-c3) 100%
    );
    background: linear-gradient(
        90deg,
        var(--colors2-c2) 0%,
        var(--colors2-c3) 100%
    );
}
.nav-1 .-colors3 .nav-a:hover,
.nav-1 .-colors3 .nav-a.-active {
    background: var(--colors3-c2);
    background: -webkit-linear-gradient(
        0deg,
        var(--colors3-c2) 0%,
        var(--colors3-c3) 100%
    );
    background: -moz-linear-gradient(
        0deg,
        var(--colors3-c2) 0%,
        var(--colors3-c3) 100%
    );
    background: -ms-linear-gradient(
        0deg,
        var(--colors3-c2) 0%,
        var(--colors3-c3) 100%
    );
    background: -o-linear-gradient(
        0deg,
        var(--colors3-c2) 0%,
        var(--colors3-c3) 100%
    );
    background: linear-gradient(
        90deg,
        var(--colors3-c2) 0%,
        var(--colors3-c3) 100%
    );
}
.nav-1 .-colors4 .nav-a:hover,
.nav-1 .-colors4 .nav-a.-active {
    background: var(--colors4-c2);
    background: -webkit-linear-gradient(
        0deg,
        var(--colors4-c2) 0%,
        var(--colors4-c3) 100%
    );
    background: -moz-linear-gradient(
        0deg,
        var(--colors4-c2) 0%,
        var(--colors4-c3) 100%
    );
    background: -ms-linear-gradient(
        0deg,
        var(--colors4-c2) 0%,
        var(--colors4-c3) 100%
    );
    background: -o-linear-gradient(
        0deg,
        var(--colors4-c2) 0%,
        var(--colors4-c3) 100%
    );
    background: linear-gradient(
        90deg,
        var(--colors4-c2) 0%,
        var(--colors4-c3) 100%
    );
}

.nav-2 {
    position: relative;
    text-align: center;
}
.nav-2 .nav-ul {
    display: table;
    height: 7.8rem;
    width: 100%;
}
.nav-2 .nav-li {
    display: table-cell;
    padding: 0 1rem;
    position: relative;
    vertical-align: middle;
}
.nav-2 .nav-a {
    color: #000;
    font-size: 2.5rem;
    font-weight: 600;
    text-decoration: none;
}
.nav-2 .nav-a:hover {
    color: #000;
}
.nav-2 .nav-ulul {
    background: #fff;
    -webkit-box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
    left: -99%;
    margin: -1rem auto auto;
    opacity: 0;
    padding: 0;
    pointer-events: none;
    position: absolute;
    right: -99%;
    text-align: left;
    top: 7.8rem;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    visibility: hidden;
    width: 29rem;
}
.nav-2 .nav-li:hover .nav-ulul {
    margin-top: 0;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}
.nav-2 .nav-li:first-child .nav-ulul {
    left: 0;
    right: auto;
}
.nav-2 .nav-li:last-child .nav-ulul {
    left: auto;
    right: 0;
}
.nav-2 .nav-lili {
    display: block;
    padding: 0;
}
.nav-2 .nav-aa {
    color: #000;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0.5rem 1.5rem;
    text-decoration: none;
}

/* Mobile */

.c-hamburger {
    display: none;
}
.c-hamburger-bg {
    display: none;
}

@media only screen and (max-width: 1200px) {
    .nofon {
        display: none;
    }

    .c-hamburger {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: #fff;
        border: 1px solid #000;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        cursor: pointer;
        display: block;
        font-size: 0;
        height: 5.4rem;
        left: 1rem;
        margin: 0;
        overflow: hidden;
        padding: 0;
        position: fixed;
        /*right: 0;*/
        text-indent: -9999px;
        top: 10rem;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        width: 5.4rem;
        will-change: transform;
        z-index: 1010;
    }
    .c-hamburger.-active {
        background: #fff;
        -webkit-transform: translateX(30rem);
        -moz-transform: translateX(30rem);
        -ms-transform: translateX(30rem);
        -o-transform: translateX(30rem);
        transform: translateX(30rem);
    }
    .c-hamburger:focus {
        outline: none;
    }
    .c-hamburger span {
        background: #000;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
        display: block;
        height: 4px;
        left: 20%;
        margin: -2px auto auto;
        position: absolute;
        right: 20%;
        top: 50%;
        /*transition: background 0s 0.5s;*/
        -webkit-transition-duration: 0.5s, 0.5s;
        -moz-transition-duration: 0.5s, 0.5s;
        -o-transition-duration: 0.5s, 0.5s;
        transition-duration: 0.5s, 0.5s;
        will-change: background;
    }
    .c-hamburger.-active span {
        background: rgba(255, 255, 255, 0);
    }
    .c-hamburger span::before,
    .c-hamburger span::after {
        background: #000;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
        content: '';
        display: block;
        height: 4px;
        left: 0;
        position: absolute;
        /*transition-delay: 0.5s, 0s;*/
        -webkit-transition-duration: 0.5s, 0.5s;
        -moz-transition-duration: 0.5s, 0.5s;
        -o-transition-duration: 0.5s, 0.5s;
        transition-duration: 0.5s, 0.5s;
        width: 100%;
        will-change: transform;
    }
    .c-hamburger.-active span::before,
    .c-hamburger.-active span::after {
        background: #fff;
    }
    .c-hamburger span::before {
        -webkit-transform: translateY(-200%);
        -moz-transform: translateY(-200%);
        -ms-transform: translateY(-200%);
        -o-transform: translateY(-200%);
        transform: translateY(-200%);
        -webkit-transition-property: top, transform;
        -moz-transition-property: top, transform;
        -o-transition-property: top, transform;
        transition-property: top, transform;
    }
    .c-hamburger.-active span::before {
        /*top: 0;*/
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .c-hamburger span::after {
        -webkit-transform: translateY(200%);
        -moz-transform: translateY(200%);
        -ms-transform: translateY(200%);
        -o-transform: translateY(200%);
        transform: translateY(200%);
        -webkit-transition-property: bottom, transform;
        -moz-transition-property: bottom, transform;
        -o-transition-property: bottom, transform;
        transition-property: bottom, transform;
    }
    .c-hamburger.-active span::after {
        /*bottom: 0;*/
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .c-hamburger-bg {
        background: rgba(0, 0, 0, 0.3);
        display: block;
        height: 120%;
        left: 0;
        opacity: 0;
        position: fixed;
        right: 0;
        top: 0;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        visibility: hidden;
        will-change: opacity;
        z-index: 1000;
    }
    .c-hamburger.-active + .c-hamburger-bg {
        opacity: 1;
        visibility: visible;
    }

    .nav {
        background: #fff;
        bottom: 0;
        -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
        clear: both;
        display: block;
        float: none;
        height: 100%;
        left: 0;
        margin-left: 0;
        margin-top: 0;
        max-width: 100%;
        padding: 0;
        position: fixed;
        top: 0;
        -webkit-transform: translateX(-33rem);
        -moz-transform: translateX(-33rem);
        -ms-transform: translateX(-33rem);
        -o-transform: translateX(-33rem);
        transform: translateX(-33rem);
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        visibility: hidden;
        width: 33rem;
        will-change: transform;
        z-index: 1005;
    }
    .nav.-active {
        overflow-y: auto;
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px);
        visibility: visible;
    }

    .nav-1 {
        margin: 0;
        padding: 0;
    }
    .nav-1 .nav-ul {
        display: block;
        height: auto;
        width: auto;
    }
    .nav-1 .nav-li {
        display: block;
        padding: 0;
        order: initial;
        width: 100%;
    }

    .nav-2 {
        position: relative;
        padding: 3rem 0;
    }
    .nav-2 .nav-ul {
        display: block;
        height: auto;
        width: auto;
    }
    .nav-2 .nav-li {
        display: block;
        margin: 0;
        padding: 1.5rem 0;
        position: relative;
    }
    .nav-2 .nav-li--nodes::after {
        border: 1rem solid #000;
        border-left-color: rgba(255, 255, 255, 0);
        border-top-color: rgba(255, 255, 255, 0);
        content: '';
        height: 0;
        position: absolute;
        right: 2rem;
        top: 2rem;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
        width: 0;
    }
    .nav-2 .nav-li--nodes.-active::after {
        -webkit-transform: rotate(225deg);
        -moz-transform: rotate(225deg);
        -ms-transform: rotate(225deg);
        -o-transform: rotate(225deg);
        transform: rotate(225deg);
        top: 3.5rem;
    }
    .nav-2 .nav-a {
        display: block;
        margin: 0.5rem 7rem 0.5rem 2.5rem;
        text-align: left;
    }
    .nav-2 .nav-a::after {
        display: none;
    }

    .nav-2 .nav-ulul,
    .nav-2 .nav-li:hover .nav-ulul {
        background: #fff;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        display: block;
        height: auto;
        left: 0;
        margin: 0;
        max-height: none;
        max-width: 100%;
        opacity: 0;
        padding: 1rem 0;
        pointer-events: none;
        right: 0;
        top: auto;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        visibility: hidden;
        width: auto;
        z-index: 1;
    }
    .nav-2 .nav-li--nodes.-active .nav-ulul {
        opacity: 1;
        pointer-events: auto;
        position: relative;
        visibility: visible;
    }
    .nav-2 .nav-lili {
        display: block;
        height: auto;
        padding: 0.5rem 0;
        width: auto;
    }
    .nav-2 .nav-aa {
        margin: 0.5rem 2rem 0.5rem 5rem;
        padding: 0;
        text-align: left;
    }
    .nav-2 .nav-aa:hover {
        background: none;
    }
    .nav-2 .nav-aa::before {
        display: none;
    }
}

/******************************************************************************/

/*
* Datetime
*/
.datetime {
    color: #969696;
    display: block;
    font-size: 1.8rem;
    margin: 1em 0;
}

/******************************************************************************/

/*
 * Path
 */
.path {
    color: #969696;
    font-size: 1.4rem;
    font-weight: normal;
    margin: 0 0 1em;
    position: relative;
    text-align: center;
}
.path-a,
.path-txt {
    color: inherit;
    display: inline-block;
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
    padding: 0;
    position: relative;
    text-decoration: none;
    text-transform: inherit;
}
.path-a:hover {
    color: inherit;
    text-decoration: none;
}
.path-a::after {
    border-bottom: 1px solid #969696;
    bottom: -0.1rem;
    content: '';
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 0;
}
.path-a:hover::after {
    width: 4rem;
}

/******************************************************************************/

/*
 * Image
 */
.image {
    display: block;
    overflow: hidden;
    padding: 100% 0 0;
    position: relative;
}
.image-img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    object-fit: cover;
    right: 0;
    top: 0;
}

/******************************************************************************/

/*
 * Options
 */
.options {
    margin: 1.5rem 0;
}
.options-div {
    margin: 1rem 0;
    max-width: 50%;
}
.options-div.left {
    text-align: left;
}
.options-div.right {
    text-align: right;
}
.options-label {
    border-bottom: 1px solid #aaa;
    display: inline-block;
    margin: 0.5rem 0;
}
.left .options-label {
    margin-right: 1rem;
}
.right .options-label {
    margin-left: 1rem;
}
.options-span {
    color: #aaa;
    display: inline-block;
    font-size: 1.8rem;
    margin: 0;
    min-width: 15rem;
    text-align: left;
    vertical-align: middle;
}
.options .input {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    color: #000;
    font-size: 1.8rem;
    line-height: 3.5rem;
    min-width: 0;
    padding: 0.5rem 4.5rem 0.4rem 1rem;
    width: auto;
}
.options .input:hover {
    -webkit-box-shadow: 0px 10px 5px -5px rgba(0, 0, 0, 0.33);
    -moz-box-shadow: 0px 10px 5px -5px rgba(0, 0, 0, 0.33);
    box-shadow: 0px 10px 5px -5px rgba(0, 0, 0, 0.33);
}

@media only screen and (max-width: 800px) {
    .options-span {
        min-width: 0;
    }
}
@media only screen and (max-width: 480px) {
    .options-div {
        max-width: none;
    }
    .options-div.left,
    .options-div.right {
        float: none;
        text-align: right;
    }
    .left .options-label,
    .right .options-label {
        margin-left: 0;
        margin-right: 0;
    }
}

/******************************************************************************/

/*
 * Categories
 */
.categories {
    display: block;
}
.categories a {
    display: block;
    font-size: 1.4rem;
    padding: 2px 10px;
    text-decoration: none;
}
.categories ul {
    border-left: 1px solid #eee;
    display: none;
    margin-left: 15px;
    padding: 0 0 5px 5px;
}
.categories ul a {
    font-size: 1.3rem;
}
.categories .open > a {
    font-weight: bold;
}
.categories .-active > a {
    background-color: #eee;
    font-weight: bold;
}

/******************************************************************************/

/*
 * Main
 */
.main {
    clear: both;
    display: block;
    min-height: 50rem;
    min-height: calc(100vh - 44rem);
    /*overflow: hidden;*/
    padding: 0 0 3rem;
    position: relative;
    width: 100%;
}

/******************************************************************************/

.bg {
    background: no-repeat center;
    background-size: cover;
}
.-colors1 .bg {
    background-image: url('../images/colors1-bg.jpg');
}
.-colors2 .bg {
    background-image: url('../images/colors2-bg.jpg');
}
.-colors3 .bg {
    background-image: url('../images/colors3-bg.jpg');
}
.-colors4 .bg {
    background-image: url('../images/colors4-bg.jpg');
}

/******************************************************************************/

/*
 * Section
 */
.section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2rem 0;
    position: relative;
}

.section-h {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.4;
    margin: 0.5em 0;
    padding: 0 0 0.8em;
    position: relative;
    text-align: center;
}
.section-h::after {
    border-bottom: 0.2rem solid #888;
    border-bottom-color: var(--c2);
    bottom: 0;
    content: '';
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 12.5rem;
}

.section-more {
    margin: 4rem 0;
    text-align: center;
}

.section .con {
    margin: 0 auto;
}

/******************************************************************************/

/*
 * Banners
 */
.section--banners {
    overflow: hidden;
    padding: 0;
    position: relative;
}

.banners {
}
.banners-item {
    background: #fff no-repeat center;
    background-size: cover;
    cursor: auto;
    height: auto;
    overflow: hidden;
    position: relative;
}
.banners-img {
    display: block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}
.banners-table {
    display: table;
    height: 100%;
    margin: 0;
    table-layout: fixed;
    width: 25%;
}
.banners-td {
    display: table-cell;
    padding: 0;
    text-align: left;
    vertical-align: middle;
}
.banners-title {
    font-size: 4rem;
    font-weight: bold;
    margin: 0 0 0.3em;
}
.banners-txt {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0 1em;
}
.banners-a {
}
.banners-a:hover {
    text-decoration: none;
}
.banners-a:first-child {
    bottom: 0;
    font-size: 0.000001px;
    left: 0;
    margin: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.banners-a .button {
}
.banners-a:first-child .button {
    display: none;
}

.slider--banners {
    height: auto;
    margin: 0 auto;
    position: relative;
}
.slider--banners .slider-container--1 {
    padding-bottom: 4rem;
    padding-top: 4rem;
    position: relative;
}
.slider--banners .slider-container--3 {
    bottom: 1.5rem;
    text-align: left;
}

.slider--banners .swiper-button-next,
.slider--banners .swiper-button-prev {
    color: #888;
}
.slider--banners .swiper-pagination-bullet::before {
    background: #888;
    border-color: #888;
}

/*
@media only screen and (orientation: portrait) {
    .banners-img {
        bottom: 0;
        height: 100%;
        left: -99%;
        right: -99%;
        top: 0;
        width: auto;
    }
}
*/
@supports (object-fit: cover) {
    .banners-img {
        max-width: 72.14%;
        object-fit: cover;
    }
}

@media only screen and (max-width: 1200px) {
    .slider-container {
        padding: 0 1rem;
    }

    .slider--banners .slider-container--1 {
        padding-bottom: 2rem;
        padding-top: 2rem;
    }
    .slider--banners .slider-container--2,
    .slider--banners .slider-container--3 {
        display: none;
    }
}

@media only screen and (max-width: 800px) {
    .banners-item {
        height: auto;
        padding: 45rem 0 0;
        position: relative;
    }
    .banners-img {
        height: 45rem;
        left: -999%;
        margin: 0 auto;
        max-height: none;
        max-width: none;
        position: absolute;
        right: -999%;
        top: 0;
        width: auto;
    }
    .banners-table {
        width: 100%;
    }
    .banners-td {
        vertical-align: bottom;
    }
}

/******************************************************************************/

/*
* Header and Path
*/
.section--hap {
    padding: 2rem 0;
}
.section--hap .path {
    margin: 0;
}
.section--hap .section-h {
}
.section--hap + .section {
    padding-top: 0;
}

.locations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem -1rem;
    text-align: center;
}
.locations-item {
    margin: 1rem 0;
    position: relative;
}
.locations-grp {
    display: block;
    margin: 0 auto;
    max-width: 41.5rem;
    min-height: 100%;
    position: relative;
    text-align: center;
}
.locations-grp::before {
    border: 1px solid #000;
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 5.7rem;
    z-index: -1;
}
.locations-icon {
    background: #fff;
    color: #888;
    color: var(--c2);
    display: block;
    font-size: 7.6rem;
    margin: 0 auto;
    width: 7.6rem;
}
.locations-name {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.4;
    margin: 0.5em 5%;
    padding: 0;
    position: relative;
}
.locations-txt {
    margin: 1em 5%;
}

.contact-form {
    margin: 1em auto;
    max-width: 114rem;
}

/******************************************************************************/

/*
 * Rootes
 */
.section--rootes {
}
.rootes {
    display: flex;
    flex-wrap: wrap;
}
.rootes-a {
    background: #eee;
    color: #000;
    display: block;
    margin: 0 auto;
    max-width: 41.5rem;
    min-height: 100%;
    padding-bottom: 6.5rem;
    position: relative;
    text-align: left;
}
.-colors1 .rootes-a {
    background: var(--colors1-c2);
    background: -webkit-linear-gradient(
        0deg,
        var(--colors1-c2) 0%,
        var(--colors1-c3) 100%
    );
    background: -moz-linear-gradient(
        0deg,
        var(--colors1-c2) 0%,
        var(--colors1-c3) 100%
    );
    background: -ms-linear-gradient(
        0deg,
        var(--colors1-c2) 0%,
        var(--colors1-c3) 100%
    );
    background: -o-linear-gradient(
        0deg,
        var(--colors1-c2) 0%,
        var(--colors1-c3) 100%
    );
    background: linear-gradient(
        90deg,
        var(--colors1-c2) 0%,
        var(--colors1-c3) 100%
    );
}
.-colors2 .rootes-a {
    background: var(--colors2-c2);
    background: -webkit-linear-gradient(
        0deg,
        var(--colors2-c2) 0%,
        var(--colors2-c3) 100%
    );
    background: -moz-linear-gradient(
        0deg,
        var(--colors2-c2) 0%,
        var(--colors2-c3) 100%
    );
    background: -ms-linear-gradient(
        0deg,
        var(--colors2-c2) 0%,
        var(--colors2-c3) 100%
    );
    background: -o-linear-gradient(
        0deg,
        var(--colors2-c2) 0%,
        var(--colors2-c3) 100%
    );
    background: linear-gradient(
        90deg,
        var(--colors2-c2) 0%,
        var(--colors2-c3) 100%
    );
}
.-colors3 .rootes-a {
    background: var(--colors3-c2);
    background: -webkit-linear-gradient(
        0deg,
        var(--colors3-c2) 0%,
        var(--colors3-c3) 100%
    );
    background: -moz-linear-gradient(
        0deg,
        var(--colors3-c2) 0%,
        var(--colors3-c3) 100%
    );
    background: -ms-linear-gradient(
        0deg,
        var(--colors3-c2) 0%,
        var(--colors3-c3) 100%
    );
    background: -o-linear-gradient(
        0deg,
        var(--colors3-c2) 0%,
        var(--colors3-c3) 100%
    );
    background: linear-gradient(
        90deg,
        var(--colors3-c2) 0%,
        var(--colors3-c3) 100%
    );
}
.-colors4 .rootes-a {
    background: var(--colors4-c2);
    background: -webkit-linear-gradient(
        0deg,
        var(--colors4-c2) 0%,
        var(--colors4-c3) 100%
    );
    background: -moz-linear-gradient(
        0deg,
        var(--colors4-c2) 0%,
        var(--colors4-c3) 100%
    );
    background: -ms-linear-gradient(
        0deg,
        var(--colors4-c2) 0%,
        var(--colors4-c3) 100%
    );
    background: -o-linear-gradient(
        0deg,
        var(--colors4-c2) 0%,
        var(--colors4-c3) 100%
    );
    background: linear-gradient(
        90deg,
        var(--colors4-c2) 0%,
        var(--colors4-c3) 100%
    );
}
.rootes-a:hover {
    color: #000;
    text-decoration: none;
}
.rootes-image {
    padding: 103.13% 0 0;
}
.rootes-img {
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    will-change: transform;
}
.rootes-a:hover .rootes-img {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
}
.rootes-name {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.4;
    margin: 2rem 6%;
    padding: 0;
    position: relative;
}
.rootes-more {
    bottom: 2rem;
    font-size: 2.1rem;
    font-weight: 500;
    left: 6%;
    position: absolute;
    right: 6%;
}

@media only screen and (max-width: 1200px) {
    .rootes-name {
        font-size: 2rem;
    }
}
@media only screen and (max-width: 1000px) {
    .rootes-item {
        width: 50%;
    }
}
@media only screen and (max-width: 480px) {
    .rootes-item {
        width: 100%;
    }
}

/******************************************************************************/

/*
 * Nodes
 */
.nodes {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem -1rem;
    position: relative;
}
.nodes-item {
    position: relative;
}
.nodes-a {
    background: #fff;
    color: #000;
    display: block;
    margin: 0 auto;
    max-width: 41.5rem;
    min-height: 100%;
    padding-bottom: 6.5rem;
    position: relative;
    text-align: left;
}
.nodes-a:hover {
    background: #888;
    background: var(--c2);
    background: -webkit-linear-gradient(0deg, var(--c2) 0%, var(--c3) 100%);
    background: -moz-linear-gradient(0deg, var(--c2) 0%, var(--c3) 100%);
    background: -ms-linear-gradient(0deg, var(--c2) 0%, var(--c3) 100%);
    background: -o-linear-gradient(0deg, var(--c2) 0%, var(--c3) 100%);
    background: linear-gradient(90deg, var(--c2) 0%, var(--c3) 100%);
    color: #000;
    text-decoration: none;
}
.nodes-a::before {
    bottom: 0;
    content: '';
    border: 1px solid #888;
    border-color: var(--c2);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.nodes-a:hover::before {
    border-color: rgba(255, 255, 255, 0);
}
.nodes-image {
    border-bottom: 1px solid #888;
    border-bottom-color: var(--c2);
    padding: 93.73% 0 0;
}
.nodes-a:hover .nodes-image {
    border-bottom-color: rgba(255, 255, 255, 0);
}
.nodes-img {
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    will-change: transform;
}
.nodes-a:hover .nodes-img {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
}
.nodes-name {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.4;
    margin: 2rem 6%;
    padding: 0;
    position: relative;
}
.nodes-more {
    bottom: 2rem;
    color: #888;
    color: var(--c2);
    font-size: 2.1rem;
    font-weight: 500;
    left: 6%;
    position: absolute;
    right: 6%;
}
.nodes-a:hover .nodes-more {
    color: #000;
}
.nodes-icon {
    bottom: 2rem;
    font-size: 3.5rem;
    opacity: 0;
    position: absolute;
    right: 6%;
}
.nodes-a:hover .nodes-icon {
    opacity: 1;
}

/******************************************************************************/

/*
 * News
 */
.news {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem -1rem;
    position: relative;
}
.news-item {
    position: relative;
}
.news-a {
    background: #fff;
    -webkit-box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
    color: #000;
    display: block;
    margin: 0 auto;
    max-width: 41.5rem;
    min-height: 100%;
    padding-bottom: 10rem;
    position: relative;
    text-align: center;
}
.news-a:hover {
    color: #000;
    text-decoration: none;
}
.news-image {
    padding: 69.16% 0 0;
}
.news-datetime {
    margin: 1em 0 0.5em;
}
.news-name {
    font-size: 2.1rem;
    font-weight: bold;
    line-height: 1.4;
    margin: 0.5em 6%;
    padding: 0;
    position: relative;
}
.news-txt {
    font-size: 1.8rem;
    margin: 1em 6%;
}
.news-button {
    bottom: 3rem;
    left: 6%;
    margin: 0 auto;
    position: absolute;
    right: 6%;
}

/******************************************************************************/

.section--gallery {
    padding: 0;
    position: relative;
}
.container .section--galery {
    padding: 2rem 0;
}
.gallery {
    margin: 0;
    position: relative;
}
.container .gallery {
    margin: 1.5rem -1rem;
}
.gallery-item {
    padding: 0;
}
.container .gallery-item {
    padding: 1rem;
}
.gallery-a {
    max-width: 32rem;
}
.container .gallery-a {
    max-width: 27rem;
}
.gallery-a:hover {
    text-decoration: none;
}
.gallery-image {
    padding: 69.69% 0 0;
}
@supports (object-fit: cover) {
    .gallery-img {
        height: 100%;
        object-fit: cover;
        width: 100%;
    }
}

/******************************************************************************/

/*
 * Downloads
 */
.downloads {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem -1rem;
    text-align: center;
}
.downloads-item {
    position: relative;
}
.downloads-a {
    color: #000;
    display: block;
    margin: 0 auto;
    max-width: 35rem;
    min-height: 100%;
    padding-bottom: 8rem;
    position: relative;
    text-align: center;
}
.downloads-a:hover {
    color: #000;
    text-decoration: none;
}
.downloads-a::before {
    border: 1px solid #000;
    bottom: 3.5rem;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 2.5rem;
    z-index: -1;
}
.downloads-icon {
    background: #fff;
    color: #888;
    color: var(--c2);
    display: block;
    font-size: 5.1rem;
    margin: 0 auto;
    width: 8rem;
}
.downloads-name {
    font-size: 2.1rem;
    font-weight: bold;
    line-height: 1.4;
    margin: 0.7em 5%;
    padding: 0;
    position: relative;
}
.downloads-button {
    bottom: 0;
    left: 5%;
    margin: 0 auto;
    position: absolute;
    right: 5%;
    width: 17.6rem;
}

/******************************************************************************/

/*
 * Welcome
*/
.section--welcome .con {
    margin: 0 auto;
    max-width: 143rem;
    text-align: center;
}
.section--welcome .con h1:first-child {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.4;
    margin: 1em 0 0.5em;
    padding: 0 0 0.8em;
    position: relative;
    text-align: center;
}
.section--welcome .con h1:first-child::after {
    border-bottom: 0.2rem solid #888;
    border-bottom-color: var(--c2);
    bottom: 0;
    content: '';
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 12.5rem;
}
.section--welcome .section-more {
    margin-bottom: 0;
}

/******************************************************************************/

/*
 * Contact
 */
.section--contact .con {
    text-align: center;
}
.contactIco {
    padding-left: 40px;
    position: relative;
}
.contactIco .icon {
    font-size: 3rem;
    left: 0;
    position: absolute;
    top: 0;
}

/******************************************************************************/

.map {
    height: 450px;
    margin: 3rem 0;
    position: relative;
    width: 100%;
}
.map iframe {
    height: 100%;
    width: 100%;
}

/******************************************************************************/

.fluidTabs {
    overflow: hidden;
    padding-top: 42px;
}
.fluidTabs .fluidTabs-tabs {
    /*overflow: hidden;*/
    display: table;
    width: 100%;
    margin: 0;
    /*min-height: 43px;*/
    padding: 0;
    table-layout: fixed;
    -webkit-box-shadow: inset 0px -31px 22px -30px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: inset 0px -31px 22px -30px rgba(0, 0, 0, 0.12);
    box-shadow: inset 0px -31px 22px -30px rgba(0, 0, 0, 0.12);
}
.fluidTabs .fluidTabs-tabs li {
    background: none;
    color: #282828;
    cursor: pointer;
    display: table-cell;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0 1px;
    position: relative;
    text-align: center;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    vertical-align: middle;
}

.fluidTabs .fluidTabs-tabs li.-active {
    /*color: #e7184d;*/
    /*background: #fff;*/
}
.fluidTabs .fluidTabs-tabs li::before {
    -webkit-box-shadow: 0px 0px 30px -6px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0px 0px 30px -6px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 30px -6px rgba(0, 0, 0, 0);
    border-top: 4px solid #e7184d;
    background: #fff;
    content: '';
    display: block;
    height: 100%;
    left: 100%;
    z-index: 1;
    position: absolute;
    right: 0;
    top: 0px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.fluidTabs .fluidTabs-tabs li.-active::before {
    -webkit-box-shadow: 0px 0px 30px -4px rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 0px 0px 30px -4px rgba(0, 0, 0, 0.14);
    box-shadow: 0px 0px 30px -4px rgba(0, 0, 0, 0.14);
}
.fluidTabs .fluidTabs-tabs li.-active ~ li::before {
    left: 0;
    right: 100%;
}
.fluidTabs .fluidTabs-tabs li.-active::before {
    z-index: 2;
    left: 0 !important;
    right: 0 !important;
}
.fluidTabs .fluidTabs-tabs li a {
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 15px 5px;
    color: #282828;
    border-top: none;
    position: relative;
    z-index: 3;
    display: block;
}
.fluidTabs .fluidTabs-tabs li a:hover {
    text-decoration: none;
}

.fluidTabs .fluidTabs-tabs li:hover a,
.fluidTabs .fluidTabs-tabs li.-active a {
    color: #e7184d;
}

.fluidTabs .fluidTabs-tab-box {
    margin-bottom: -30px;
    overflow: hidden;
    /*-ms-overflow-x: scroll;
            overflow-x: scroll;*/
    padding-bottom: 50px;
    position: relative;
    white-space: nowrap;
    width: 100%;
    z-index: 9;
}
.fluidTabs .fluidTabs-tab-div {
    background: #fff none repeat scroll 0 0;
    display: inline-block;
    max-height: 0px;
    overflow: visible;
    padding: 10px;
    -webkit-transition: all 0.8s ease 0s;
    -moz-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
    vertical-align: top;
    white-space: normal;
    width: 100%;
}
.fluidTabs .fluidTabs-tab-div.-active {
    max-height: 1500px;
    filter: alpha(opacity = 100);
    opacity: 1;
}

/******************************************************************************/

/*
 * Footer
 */
.footer {
    background: #fff;
    -webkit-box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 0.5rem 0;
    position: relative;
    right: 0;
    text-align: center;
    z-index: 11;
}

.bips {
    margin: 1rem -1rem;
    min-height: 9rem;
}
.bips-item {
    margin: 2rem 0;
    text-align: center;
    vertical-align: middle;
}
.bips-a {
    color: #000;
    display: inline-block;
    padding: 0 0 0 6.8rem;
    position: relative;
    text-align: left;
}
.bips-a:hover {
    text-decoration: none;
}
.bips-img {
    left: 0;
    margin: -2.9rem 0 auto;
    position: absolute;
    top: 50%;
    width: 5.3rem;
}
.bips-name {
    font-size: 1.6rem;
    font-weight: normal;
    margin: 0;
    padding: 0;
}
@media only screen and (max-width: 800px) {
    .bips-item {
        width: 50%;
    }
}
@media only screen and (max-width: 480px) {
    .bips-item {
        width: 100%;
    }
}

.cr {
    clear: both;
    color: #9b9b9b;
    font-size: 1.4rem;
    font-weight: normal;
    margin: 2rem 0 0;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
}

.copyrights {
    display: block;
    float: right;
    margin: 0.5rem 0;
    padding: 0 0 0 5rem;
    position: relative;
    text-align: left;
    width: 50%;
}
.copyrights-span {
    display: inline-block;
}

.realization {
    display: block;
    float: left;
    margin: 0.5rem 0;
    min-width: 45%;
    padding: 0 5rem 0 0;
    position: relative;
    text-align: right;
    width: 50%;
}
.realization::after {
    border-left: 1px solid #9b9b9b;
    bottom: 0;
    content: '';
    height: 1rem;
    margin: auto 0;
    position: absolute;
    right: 0;
    top: 0;
}

.redhand {
    color: inherit;
    display: inline-block;
    position: relative;
}
.redhand:hover {
    color: #ff001d;
    text-decoration: none;
}
.redhand:after {
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA6UlEQVR4AZXPQUcFURiH8UPEEK0iUlzO6q6ibatWcVd3dYn5AK2ib9BqaBsx24j5BhEREcN8gLZtY4hZDcO/ZzGHVzpnmsXPOYv3fXid3GHKMQocwMFjHy74vbCHO5zDoYFwjwxfaFKBawgdPB4hfGAJAfGARw/hHTk0WsUCCzR4xREKaHSLAcJDLLA0Q584RQuht38Iw18n5CbyjQpKyGACsBHzxtzYQCyS0mHHBqxL6B/ObGAba2xwghqakNtACc20DoEtvKGFZtiEgLXAFZ7QQwllCMTs4gIFniGjQmYCkzxqvGAFF/wAE9ukCYLfD9EAAAAASUVORK5CYII=')
        no-repeat center;
    background-size: contain;
    bottom: 10%;
    content: '';
    display: block;
    height: 1.6rem;
    left: 50%;
    margin-left: -0.6rem;
    opacity: 0;
    position: absolute;
    -webkit-transform: rotate(-95deg);
    -moz-transform: rotate(-95deg);
    -ms-transform: rotate(-95deg);
    -o-transform: rotate(-95deg);
    transform: rotate(-95deg);
    -webkit-transform-origin: 0.8rem 1rem;
    -moz-transform-origin: 0.8rem 1rem;
    -ms-transform-origin: 0.8rem 1rem;
    -o-transform-origin: 0.8rem 1rem;
    transform-origin: 0.8rem 1rem;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    width: 1.6rem;
}
.redhand:hover:after {
    bottom: 100%;
    margin-left: -0.8rem;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

/******************************************************************************/

/*
 * Modyfikatory
 */

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.alignLeft {
    text-align: left;
}
.alignRight {
    text-align: right;
}
.alignCenter {
    text-align: center;
}

.right {
    float: right;
}
.left {
    float: left;
}

.pullLeft {
    float: left;
    margin: 0.7em 0.7em 0.7em 0;
}
.pullRight {
    float: right;
    margin: 0.7em 0 0.7em 0.7em;
}
.pullRight:first-child,
.pullLeft:first-child {
    margin-top: 0;
}

.pullCenter {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: auto;
}

.movie {
    display: block;
    padding: 56.25% 0 0;
    position: relative;
    width: 100%;
}
.movie > iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

/* read more link */
.more {
    font-size: 0.9em;
    font-weight: bold;
    padding-left: 5px;
}

/* multiline indent */
.rr {
    display: inline-block;
    vertical-align: top;
}

/* invisible link */
.il {
    color: inherit;
    text-decoration: inherit;
}
.il:hover {
    color: inherit;
    text-decoration: underline;
}

.mt30 {
    margin-top: 30px;
}
.pt0 {
    padding-top: 0;
}
.mt0 {
    margin-top: 0;
}
.mb0 {
    margin-bottom: 0;
}
.mb20 {
    margin-bottom: 20px;
}
.mb60 {
    margin-bottom: 60px;
}

.block {
    display: block;
}
.hide {
    display: none;
}

.ninja {
    border: 0 !important;
    height: 1px;
    left: -1px;
    margin: 0 !important;
    opacity: 0;
    overflow: hidden;
    padding: 0 !important;
    position: absolute !important;
    text-indent: 1px;
    top: -1px;
    width: 1px;
}

.relative {
    position: relative;
}

.clearfix::before,
.clearfix::after {
    content: '';
    display: table;
}

.clearfix::after {
    clear: both;
}

.clear {
    clear: both;
}

.pointer {
    cursor: pointer;
}

/****************************************************************************/

@media only screen and (max-width: 1600px) {
    html {
        font-size: 9px;
    }
}

/****************************************************************************/

@media only screen and (max-width: 1400px) {
    html {
        font-size: 8px;
    }
}

/****************************************************************************/

@media only screen and (max-width: 800px) {
    .content,
    .leftBlock,
    .rightBlock {
        display: block;
        min-width: auto;
        padding: 0;
        width: auto;
    }
}

/******************************************************************************/

@media only screen and (max-width: 480px) {
    .span {
        float: none;
        margin-left: 0 !important;
        width: auto;
    }
    .label--invalid .tooltip-bottom {
        margin-bottom: 50px;
    }
    .media--double,
    .media2--double {
        display: block;
        margin: 0.8em 0;
        width: auto;
    }
}

@media only screen and (max-width: 600px) {
    .fill {
        margin-left: 0;
        width: 100%;
    }
    .fill + .fill {
        margin-top: 20px;
    }
}

/******************************************************************************/

/*
 * HR
 */
.hr {
    border: 0 solid #ddd;
    display: block;
    margin: 2rem 0;
    padding: 0;
    position: relative;
}
.hr::before {
    border: inherit;
    border-top-width: 1px;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
}

.hr--txt {
    overflow: hidden;
    text-align: center;
}
.hr--txt::before {
    display: none;
}
.hr-txt {
    border: inherit;
    position: relative;
}
.hr-txt::before,
.hr-txt::after {
    border: inherit;
    border-top-width: 1px;
    content: '';
    margin: 0 2rem;
    position: absolute;
    top: 50%;
    width: 555%;
}
.hr-txt::before {
    right: 100%;
}
.hr-txt::after {
    left: 100%;
}

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

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

/******************************************************************************/

/*
 * Border, Border Before & Border After
 */
.border,
.borderBefore::before,
.borderAfter::after {
    border: 1px solid #ddd;
}
.borderBefore::before,
.borderAfter::after {
    bottom: 0;
    content: '';
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
}

/******************************************************************************/

/*
 * Progress Bar
 */
.progressBar {
    margin: 2rem 0;
    position: relative;
    text-align: center;
}
.progressBar-desc {
    color: #c4c4c4;
    margin: 0 0 1rem;
}
.progressBar-progress {
    color: #000;
}
.progressBar-stroke {
    background: #ddd;
    height: 0.4rem;
    overflow: hidden;
    position: relative;
}
.progressBar-fill {
    background: #000;
    bottom: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

/******************************************************************************/

/*
 * Popup Info
 */
.popupInfo {
    background: #fff;
    -webkit-box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.15);
    color: #000;
    display: inline-block;
    font-size: 2.1rem;
    font-weight: normal;
    opacity: 0;
    padding: 2rem;
    position: fixed;
    right: 2.5rem;
    top: -25%;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 99999;
}
.popupInfo--visible {
    opacity: 1;
    top: 2.5rem;
}

/******************************************************************************/

/*
 * User Box
 */
.userBox {
    margin: 0 auto;
    max-width: 80rem;
    padding: 1.5rem;
    position: relative;
}
.userBox-h {
    font-size: 2.2rem;
    font-weight: bold;
    margin: 1rem 0 2rem;
    padding: 0;
    text-align: center;
}
.userBox-or {
    color: #888;
    font-size: 1.8rem;
    margin: 1rem 0;
}
.userBox-txt {
    font-size: 2.2rem;
    margin: 2rem 0 1rem;
    text-align: center;
}
.userBox-ico {
    color: #888;
    display: block;
    margin: 1rem 0;
    min-height: 4rem;
    padding: 1rem 0 1rem 7rem;
}
.userBox-ico--1 {
    background: url('../images/icons/userbox-ico--1.svg') no-repeat 0 center;
    background-size: 4.9rem auto;
}
.userBox-ico--2 {
    background: url('../images/icons/userbox-ico--2.svg') no-repeat 1.3rem
        center;
    background-size: 3.2rem auto;
}
.userBox-ico--3 {
    background: url('../images/icons/userbox-ico--3.svg') no-repeat 1.2rem
        center;
    background-size: 3.3rem auto;
}
.userBox-ico--4 {
    background: url('../images/icons/userbox-ico--4.svg') no-repeat 1.4rem
        center;
    background-size: 3rem;
}
.userBox .formActions {
    margin: 1rem 0;
    padding: 0;
}
.userBox .formActions-a {
    display: inline-block;
    font-size: 1.8rem;
    margin: 1rem 0 0;
}

/******************************************************************************/

.dataprocessing {
    display: block;
    line-height: 1.2;
    text-align: left;
}
/*.dataprocessing .dp-law { display: block; margin: 0 0 5px; opacity: 0.8; }
.dataprocessing .dp-lbl { display: inline-block; }
.dataprocessing .dp-inf { display: block; }
.dataprocessing .dp-dsc { display: block; }*/
.mfp-bg {
    z-index: 21042;
}
.whiteBackground .mfp-content {
    min-height: 0;
}
.mfp-wrap {
    z-index: 21043;
}
.mfp-content ul {
    margin: 0 0 0 25px;
    padding: 0;
}
.mfp-content ul > li {
    list-style: disc;
    margin: 0;
    padding: 1px 0;
}
.mfp-content ol {
    margin: 0 0 0 25px;
    padding: 0;
}
.mfp-content ol > li {
    list-style: decimal;
    margin: 0;
    padding: 1px 0;
}

/****************************************************************************/

@keyframes autofill {
    0% {
    }
    100% {
    }
}
input:-webkit-autofill {
    animation-name: autofill;
}

/****************************************************************************/

/*
.nav-1 .-colors1 .nav-a:hover,
.nav-1 .-colors1 .nav-a.-active,
.-colors1 .button--primary,
.-colors1 .button--primary:hover,
.-colors1 a:hover .button--primary,
.-colors1 .rootes-a {
    background: #f9ac68;
    background: -webkit-linear-gradient(0deg, #f9ac68 0%, #fed778 100%);
    background: -moz-linear-gradient(0deg, #f9ac68 0%, #fed778 100%);
    background: -ms-linear-gradient(0deg, #f9ac68 0%, #fed778 100%);
    background: -o-linear-gradient(0deg, #f9ac68 0%, #fed778 100%);
    background: linear-gradient(90deg, #f9ac68 0%, #fed778 100%);
}
.-colors1 .section-h::after {
    border-color: #f9ac68;
}

.nav-1 .-colors2 .nav-a:hover,
.nav-1 .-colors2 .nav-a.-active,
.-colors2 .button--primary,
.-colors2 .button--primary:hover,
.-colors2 a:hover .button--primary,
.-colors2 .rootes-a {
    background: #1cc0e6;
    background: -webkit-linear-gradient(0deg, #1cc0e6 0%, #17e5e5 100%);
    background: -moz-linear-gradient(0deg, #1cc0e6 0%, #17e5e5 100%);
    background: -ms-linear-gradient(0deg, #1cc0e6 0%, #17e5e5 100%);
    background: -o-linear-gradient(0deg, #1cc0e6 0%, #17e5e5 100%);
    background: linear-gradient(90deg, #1cc0e6 0%, #17e5e5 100%);
}
.-colors2 .section-h::after {
    border-color: #1cc0e6;
}

.nav-1 .-colors3 .nav-a:hover,
.nav-1 .-colors3 .nav-a.-active,
.-colors3 .button--primary,
.-colors3 .button--primary:hover,
.-colors3 a:hover .button--primary,
.-colors3 .rootes-a {
    background: #bca696;
    background: -webkit-linear-gradient(0deg, #bca696 0%, #e1cbb5 100%);
    background: -moz-linear-gradient(0deg, #bca696 0%, #e1cbb5 100%);
    background: -ms-linear-gradient(0deg, #bca696 0%, #e1cbb5 100%);
    background: -o-linear-gradient(0deg, #bca696 0%, #e1cbb5 100%);
    background: linear-gradient(90deg, #bca696 0%, #e1cbb5 100%);
}
.-colors3 .section-h::after {
    border-color: #bca696;
}

.nav-1 .-colors4 .nav-a:hover,
.nav-1 .-colors4 .nav-a.-active,
.-colors4 .button--primary,
.-colors4 .button--primary:hover,
.-colors4 a:hover .button--primary,
.-colors4 .rootes-a {
    background: #cee34e;
    background: -webkit-linear-gradient(0deg, #cee34e 0%, #f4ff86 100%);
    background: -moz-linear-gradient(0deg, #cee34e 0%, #f4ff86 100%);
    background: -ms-linear-gradient(0deg, #cee34e 0%, #f4ff86 100%);
    background: -o-linear-gradient(0deg, #cee34e 0%, #f4ff86 100%);
    background: linear-gradient(90deg, #cee34e 0%, #f4ff86 100%);
}
.-colors4 .section-h::after {
    border-color: #cee34e;
}
*/

/****************************************************************************/

/* 
 * WCAG
 */
.wcagnav {
    display: block;
    height: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 0;
}
.wcagnav-a {
    background: #fff;
    border: 0.3rem solid #000;
    color: #000;
    font-size: 2rem;
    font-weight: bold;
    left: -80rem;
    padding: 2rem 1rem;
    position: fixed;
    text-align: center;
    top: 0;
    width: 25rem;
    z-index: 10000;
}
.wcagnav-a:active,
.wcagnav-a:focus,
.wcagnav-a:hover {
    left: 0;
}

.wcagoptions {
    padding: 0;
    position: absolute;
    right: 0.7rem;
    text-align: center;
    top: 2.2rem;
    z-index: 15;
}
.body .wcagoptions {
    right: 10rem;
}
.wcagoptions-icon {
    display: inline-block;
    font-size: 3.2rem;
    line-height: 1;
    margin: 0 1rem;
    vertical-align: middle;
}
.wcagoptions-span {
    display: none;
    font-size: 1.6rem;
    font-weight: normal;
    margin: 0 1rem 0 0;
    vertical-align: middle;
}
.wcagoptions-br {
    display: none;
}
.wcagoptions-a {
    color: #000;
    display: inline-block;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    margin: 0 0.5rem;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
}
.wcagoptions-a:hover {
    color: #000;
    text-decoration: none;
    text-shadow: 0.1rem 0 0 #000;
}
.wcagoptions-a--fs0 {
    font-size: 1.8rem;
}
.wcagoptions-a--fs1 {
    font-size: 2.8rem;
}
.wcagoptions-a--fs2 {
    font-size: 3.8rem;
    margin-right: 7rem;
}
.wcagoptions-a--c0,
.wcagoptions-a--c1,
.wcagoptions-a--c2,
.wcagoptions-a--c3 {
    border: 2px solid #000;
    height: 2.9rem;
    line-height: 2.5rem;
    margin-left: 0.3rem;
    margin-right: 0.3rem;
    width: 2.9rem;
}
.wcagoptions-a--c0 {
    background: #fff !important;
    color: #000 !important;
}
.wcagoptions-a--c0:hover {
    text-shadow: 0.1rem 0 0 #000 !important;
}
.wcagoptions-a--c1 {
    background: #000 !important;
    color: #fff !important;
}
.wcagoptions-a--c1:hover {
    text-shadow: 0.1rem 0 0 #fff !important;
}
.wcagoptions-a--c2 {
    background: #ff0 !important;
    color: #000 !important;
}
.wcagoptions-a--c2:hover {
    text-shadow: 0.1rem 0 0 #000 !important;
}
.wcagoptions-a--c3 {
    background: #000 !important;
    color: #ff0 !important;
}
.wcagoptions-a--c3:hover {
    text-shadow: 0.1rem 0 0 #ff0 !important;
}

@media only screen and (max-width: 1200px) {
    .wcagoptions {
        top: 0.5rem;
    }
    .body .wcagoptions {
        right: 0.7rem;
    }
    .wcagoptions-icon {
        margin: 0 0.5rem;
    }
    .wcagoptions-a--fs2 {
        margin-right: 0.5rem;
    }
}

/* font size */
.wcag--fontsize1 {
    font-size: 11px;
}
.wcag--fontsize2 {
    font-size: 12px;
}
@media only screen and (max-width: 1600px) {
    .wcag--fontsize1 {
        font-size: 10px;
    }
    .wcag--fontsize2 {
        font-size: 11px;
    }
}
@media only screen and (max-width: 1400px) {
    .wcag--fontsize1 {
        font-size: 9px;
    }
    .wcag--fontsize2 {
        font-size: 10px;
    }
}

/* colors */
.wcag--color1 {
    --colors-background: #000;
    --colors-content: #fff;
}
.wcag--color2 {
    --colors-background: #ff0;
    --colors-content: #000;
}
.wcag--color3 {
    --colors-background: #000;
    --colors-content: #ff0;
}

.wcag--color,
.wcag--color .wcagnav-a,
.wcag--color body,
.wcag--color button,
.wcag--color .button,
.wcag--color a:hover .button,
.wcag--color .header,
.wcag--color .header-1,
.wcag--color .nav,
.wcag--color .nav-1 .nav-a,
.wcag--color .nav-1 .nav-a:hover,
.wcag--color .nav-2 .nav-ulul,
.wcag--color .bg,
.wcag--color .banners-item,
.wcag--color .rootes-a,
.wcag--color .nodes-a,
.wcag--color .news-a,
.wcag--color .footer {
    background: var(--colors-background);
}
.wcag--color,
.wcag--color .wcagnav-a,
.wcag--color .-c0,
.wcag--color .-c1,
.wcag--color .-c2,
.wcag--color .-c3,
.wcag--color a,
.wcag--color .a,
.wcag--color a:hover,
.wcag--color .a:hover,
.wcag--color button,
.wcag--color .button,
.wcag--color button:hover,
.wcag--color .button:hover,
.wcag--color a:hover .button,
.wcag--color .nav-1 .nav-a,
.wcag--color .nav-2 .nav-a,
.wcag--color .nav-2 .nav-aa,
.wcag--color .datetime,
.wcag--color .path,
.wcag--color .slider--banners .swiper-button-next,
.wcag--color .slider--banners .swiper-button-prev,
.wcag--color .nodes-more,
.wcag--color .nodes-a:hover .nodes-more,
.wcag--color .cr {
    color: var(--colors-content);
}
.wcag--color a:hover,
.wcag--color button:hover,
.wcag--color .button:hover,
.wcag--color a:hover .button {
    text-decoration: underline;
}
.wcag--color a:focus {
    outline: 0.4rem dotted var(--colors-content) !important;
}
.wcag--color .wcagnav-a,
.wcag--color .section-h::after,
.wcag--color .nodes-a::before,
.wcag--color .section--welcome .con h1:first-child::after {
    border-color: var(--colors-content);
}
.wcag--color .path-a::after {
    display: none;
}

/****************************************************************************/

.no-js * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

/******************************************************************************/

::-moz-selection {
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.2),
        -1px -1px 0px rgba(0, 0, 0, 0.2);
    color: #fff;
    background: #282828;
}

::selection {
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.2),
        -1px -1px 0px rgba(0, 0, 0, 0.2);
    color: #fff;
    background: #282828;
}

* {
    /*-webkit-backface-visibility:  hidden;*/
    -webkit-tap-highlight-color: transparent;
}
