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

/*
 * 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: 2rem;
    line-height: 3.6rem;
    max-width: 100%;
    outline: none;
    padding: 0.4rem 1.9rem;
    -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: #333 !important;
}
.input:disabled,
.input[disabled],
.input[readonly] {
    opacity: 0.5;
    pointer-events: none;
}
.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/icons/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 1.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: 2.4rem;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    top: 0;
    width: 2.4rem;
}
.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: #eee;
    border: 1px solid #888;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    color: #000;
    cursor: pointer;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 2.4rem;
    margin: 0;
    max-width: 100%;
    opacity: 1;
    overflow: hidden;
    padding: 1rem 2rem;
    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: 26rem;
    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: #fff;
    border-color: #888;
    color: #000;
    text-decoration: none;
}
.button:active {
    background: #e1e1e1;
    border-color: #666;
    -webkit-box-shadow: inset 0 0 0.3rem rgba(0, 0, 0, 0.8);
    -moz-box-shadow: inset 0 0 0.3rem rgba(0, 0, 0, 0.8);
    box-shadow: inset 0 0 0.3rem rgba(0, 0, 0, 0.8);
}

.button--primary {
    background: #000;
    border-color: #000;
    color: #fff;
    font-size: 1.6rem;
    font-weight: normal;
    z-index: 3;
}
.button--primary:hover,
a:hover .button--primary {
    background: #B01100;
    border-color: #B01100;
    color: #fff;
}

.button--secondary {
    background: #f5f5f5;
    border-color: #f5f5f5;
    color: #000;
    font-size: 1.6rem;
    font-weight: normal;
    z-index: 3;
}
.button--secondary:hover,
a:hover .button--secondary {
    background: #000;
    border-color: #000;
    color: #fff;
}

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

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

/*
 * Button Remove
 */
.button--remove {
    background: none;
    border: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: block;
    font-size: 0.000001rem;
    height: 3.2rem;
    margin: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    padding: 0;
    position: relative;
    width: 3.2rem;
}

/*
.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--remove::before {
    background: url('../images/icons/remove.svg') no-repeat center;
    background-size: contain;
    bottom: 5%;
    content: '';
    left: 5%;
    position: absolute;
    right: 5%;
    top: 5%;
}

/*
 * 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 {
    bottom: 0.1rem;
    padding: 0;
    position: absolute;
    right: 0.1rem;
    top: 0.1rem;   
}
.password-button::before {
    height: 50%;
    position: relative;
    top: 25%;
}

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

/*
 * LBLs
 */
.lbl {
    display: block;
    line-height: 1.4;
    position: relative;
    text-align: left;
}
.lbl-name {
    color: #9A9A9A;
    display: block;
    float: left;
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 1.5em;
    margin: -0.75em 1rem;
    overflow: hidden;
    padding: 0 1rem;
    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.3rem);
    -moz-transform: translateY(2.3rem);
    -ms-transform: translateY(2.3rem);
    -o-transform: translateY(2.3rem);
    transform: translateY(2.3rem);
    z-index: 1;
}
.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: 2.4rem;
    margin: -2.4rem 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;
}

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

/* 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.9em;
    line-height: 1.3em;
}

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

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

.container .container {
    padding: 0;
}

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

/*
 * Left
 * /
.leftBlock {
    display: table-cell;
    -webkit-flex: 3;
    -moz-flex: 3;
    -ms-flex: 3;
    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 {
    left: 0;
    top: 0;
    position: relative;
}
.scroll .scrollBody {
    position: fixed;
    top: 0;
    max-height: 100% !important;
    overflow: hidden;
}
.scrollbottom {
    position: relative;
}

.scrollbottom .scrollBody {
    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: rgba(255,255,255,0.4);
    border: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #000;
    font-size: 3.5rem;
    height: 6.4rem;
    line-height: 6.4rem;
    margin: -3.2rem auto 0;
    opacity: 1;
    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: 6.4rem;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #B01100;
    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: 6.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.7rem;
    min-height: 1.4rem;
    min-width: 1.4rem;
    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: #fff;
    border: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: '';
    height: 1.4rem;
    left: 0;
    margin: -0.7rem 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.4rem;
}
.swiper-pagination-bullet:hover::before,
.swiper-pagination-bullet-active::before {
    background: #fff;
    border-color: #fff;
}
.swiper-pagination-txt {
    color: #fff;
    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: 185rem;
    padding: 0 9.5rem;
    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 {
    margin: 0 auto;
    width: auto;
}
.pagination .td:first-child {
    text-align: left;
}
.pagination .td:last-child {
    text-align: right;
}
.pagination-element {
    background: none;
    border: 1px solid rgba(255,255,255,0);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #000;
    display: inline-block;
    font-size: 1.6rem;
    line-height: 2.2rem;
    margin: 0.1rem;
    min-width: 4.6rem;
    padding: 1.1rem 0.3rem;
    position: relative;
    text-align: center;
    text-decoration: none;
}
.pagination-element--left,
.pagination-element--right {
    background: none;
    border-color: #000;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    color: #000;
    margin: 0.1rem 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-transform: uppercase;
    width: 26rem;
}
.pagination-element:hover {
    background: #000;
    border-color: #000;
    color: #fff;
    text-decoration: none;
}
.pagination-element--active,
.pagination-element--active:hover {
    background: #f4f4f4;
    color: #000;
    font-weight: bold;
}
.pagination-element--disabled,
.pagination-element--disabled:hover {
    background-color: transparent;
    color: #ccc;
    font-weight: normal;
    pointer-events: none;

    opacity: 0;
    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%;
    }

    .pagination-element--left,
    .pagination-element--right {
        width: auto;
    }
}

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

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

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

/*
 * 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: 1.2rem;
    height: 1.6rem;
    line-height: 1.6rem;
    position: absolute;
    right: -0.6rem;
    text-align: center;
    top: -0.6rem;
    width: 1.6rem;
}
.box-close:hover {
    font-weight: bold;
    height: 1.8rem;
    line-height: 1.8rem;
    right: -0.7rem;
    top: -0.7rem;
    width: 1.8rem;
}

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

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

/*
 * Dropdown
*/
.dropdown-adv {
    background: #fff;
    border: 0;
    -webkit-box-shadow: 0 0.5rem 2rem 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 0.5rem 2rem 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0.5rem 2rem 0 rgba(0, 0, 0, 0.25);
    color: #000;
    margin-top: 1.5rem;
    padding: 2rem;
    position: absolute;
    right: 0;
    text-align: left;
    top: 100%;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    width: 20rem;
    z-index: 200;
}
.dropdown-adv::before {
    border-bottom: 2rem solid #fff;
    border-left: 2rem solid rgba(255, 255, 255, 0);
    border-right: 2rem solid rgba(255, 255, 255, 0);
    content: '';
    display: block;
    position: absolute;
    right: 4.1rem;
    top: -2rem;
    z-index: 10;
}
.dropdown-adv::after {
    border-bottom: 2.1rem solid #eee;
    border-left: 2.1rem solid rgba(255, 255, 255, 0);
    border-right: 2.1rem solid rgba(255, 255, 255, 0);
    content: '';
    display: block;
    position: absolute;
    right: 4rem;
    top: -2.1rem;
    z-index: 8;
}
.dropdown-adv.dropdown-adv--hide {
    filter: alpha(opacity = 0);
    opacity: 0;
    -webkit-transform: translateY(-3rem);
    -moz-transform: translateY(-3rem);
    -ms-transform: translateY(-3rem);
    -o-transform: translateY(-3rem);
    transform: translateY(-3rem);
    visibility: hidden;
}
.dropdown-adv-right {
    left: auto;
    right: 0;
}

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

/*
 * 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: #9a9a9a;
    color: #fff;
    display: inline-block;
    font-size: 2rem;
    line-height: 1;
    height: 3rem;
    margin: 0.5rem;
    overflow: hidden;
    opacity: 1;
    padding: 0.5rem 0 0;
    text-align: center;
    text-shadow: 1px 1px 1px #777, 2px 2px 1px #777, 3px 3px 1px #777, 4px 4px 1px #777, 5px 5px 1px #777, 6px 6px 1px #777,
        7px 7px 1px #777, 8px 8px 1px #777, 8px 8px 1px #777, 9px 9px 1px #777, 10px 10px 1px #777, 11px 11px 1px #777, 12px 12px 1px #777,
        13px 13px 1px #777, 14px 14px 1px #777, 15px 15px 1px #777, 16px 16px 1px #777, 17px 17px 1px #777;
    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;
}

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

/*
 * Img
 */
.img {
    height: auto;
    width: auto;
}

/*
 * Image
 */
.image {
    background: url('../images/icons/img.svg') no-repeat center;
    background-size: 5rem;
    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;
    right: 0;
    top: 0;
}

.image-img--1,
.image-img--2 {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    will-change: opacity;
}
.image-img--1,
a:hover .image-img--2 {
    opacity: 1;
}
.image-img--2,
a:hover .image-img--2 + .image-img--1,
a:hover .picture + .picture .image-img--1 {
    opacity: 0;
}

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

/*
 * Picture
*/
.picture {
    display: block;
}

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

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

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

/*
 * Path
*/
.path {
    color: #888;
    font-size: 1rem;
    font-weight: normal;
    margin: 1em 0;
    position: relative;
    text-align: center;
    text-transform: uppercase;
}
.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: #000;
    text-decoration: none;
}
/*
.path-a::after {
    border-bottom: 1px solid #000;
    bottom: -0.1rem;
    content: '';
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 0;
}
.path-a:hover::after {
    width: 4rem;
}
*/

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

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

/*
 * Datetime
*/
.datetime {
    color: #b6b6b6;
    display: block;
    font-size: 1.2rem;
    font-weight: normal;
    margin: 1em 0;
    text-align: right;
}

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

/*
 * Options
*/
.options {
    clear: both;
    margin: 1rem 0;
    overflow: hidden;
}
.options-div {
    margin: 0;
    max-width: 50%;
}
.options-div:first-child:last-child {
    max-width: none;
}
.options-div.left {
    text-align: left;
}
.options-div.right {
    text-align: right;
}
.options-label {
    display: inline-block;
    margin: 0.3rem 0;
}
.left .options-label {
    margin-right: 1rem;
}
.right .options-label {
    margin-left: 6.5rem;
}
.options-span {
    color: #000;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: normal;
    margin: 0 1rem 0 0;
    text-align: left;
    vertical-align: middle;
}
.options .input--select {
    background: url('../images/icons/select--r.svg') no-repeat right center;
    background-size: 1.2rem auto;
    border: 0;
    border-bottom: 1px solid #dcdcdc;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    color: #9a9a9a;
    font-size: 1.6rem;
    font-weight:  normal;
    line-height: 2.2rem;
    min-width: 0;
    padding: 0.4rem 3rem 0.4rem 1rem;
    text-align: left;
    width: auto;
}
.options .input:hover {
    -webkit-box-shadow: 0 0.5rem 0.5rem -0.5rem rgba(0, 0, 0, 0.33);
    -moz-box-shadow: 0 0.5rem 0.5rem -0.5rem rgba(0, 0, 0, 0.33);
    box-shadow: 0 0.5rem 0.5rem -0.5rem rgba(0, 0, 0, 0.33);
}
.options option {
    text-align: left;
}

@media only screen and (max-width: 800px) {
    .options-span {
        min-width: 0;
    }
}
@media only screen and (max-width: 600px) {
    .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;
    }
    .left .options-label:nth-child(n+2) {
        margin-right: 1rem;
    }
    .right .options-label:nth-child(n+2) {
        margin-left: 1rem;
    }
}

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

/*
 * Header
 */
.header {
    background: none;
    border: 0;
    display: block;
    left: 0;
    min-height: 10.6rem;
    padding: 0;
    position: relative;
    right: 0;
    top: 0;
    z-index: 11;
}

.header-1 {
    background: #000;
    color: #fff;
    min-height: 3.3rem;
    position: relative;
}

.header-2 {
    background: #fff;
    border-bottom: 1px solid #e9e9e9;
    color: #000;
    min-height: 7.3rem;
    position: relative;
}

.header-logo {
    left: 1rem;
    margin: 0;
    position: absolute;
    top: 0.4rem;
    width: 23.1rem;
    z-index: 3;
}

@media only screen and (max-width: 1200px) {
    .header-logo {
        left: 6.5rem;
    }
}

@media only screen and (max-width: 480px) {
    .header-2 {
        min-height: 10rem;
    }
    .header-logo {
        top: 1.8rem; 
    }
}

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

/*
 * Nav
 */
.nav {
    background: none;
    border: 0;
    clear: both;
    left: 0;
    margin: 0;
    padding: 0;
    position: static;
    right: 0;
    text-align: left;
    top: 0;
    z-index: 1;
}

.nav-1 {
    padding: 0 24rem 0 28rem;
    position: static;
    text-align: left;
}

.nav-1 .nav-ul {
    align-items: center;
    display: table;
    /*display: flex;*/
    height: 7.3rem;
    justify-content: space-around;
    margin: 0;
    position: static;
    width: auto;
}
.nav-1 .nav-li {
    display: table-cell;
    margin: 0;
    padding: 0 1rem;
    position: relative;
    vertical-align: middle;
    z-index: 3;
}
.nav-1 .nav-a {
    color: #000;
    display: block;
    font-size: 1.5rem;
    font-weight: normal;
    opacity: 1;
    padding: 0;
    position: relative;
    text-decoration: none;
}
.nav-1 .nav-a:hover,
.nav-1 .nav-a.-active {
    color: #000;
    text-decoration: none;
    text-shadow: 1px 0 0 #000;
}
.nav-1 .nav-a.-c2 {
    color: #A81101;
}
.nav-1 .nav-a.-c2:hover,
.nav-1 .nav-a.-c2.-active {
    color: #A81101;
    text-shadow: 1px 0 0 #A81101;
}

.nav-1 .nav-ul2 {
    background: #fff;
    -webkit-box-shadow: 0 0.5rem 0.75rem 0 rgba(0,0,0,0.1);
    -moz-box-shadow: 0 0.5rem 0.75rem 0 rgba(0,0,0,0.1);
    box-shadow: 0 0.5rem 0.75rem 0 rgba(0,0,0,0.1);
    left: 0;
    margin: -1rem auto auto;
    min-width: 100%;
    min-width: 16rem;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    top: 7.3rem;
    visibility: hidden;
    z-index: -1;
}
.nav-1 .nav-li:hover .nav-ul2,
.nav-1 .nav-li.-active .nav-ul2 {
    margin-top: 0;
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    visibility: visible;
}
.nav-1 .nav-li2 {
    margin: 1em 0;
    padding: 0 1rem;
}
.nav-1 .nav-a2 {
    color: #000;
    display: inline-block;
    font-size: 1.4rem;
    opacity: 1;
    padding: 0 0 0 1rem;
    position: relative;
}
.nav-1 .nav-a2:hover {
    text-decoration: none;
    text-shadow: 1px 0 0 #000;
}
.nav-1 .nav-a2::before {
    background: #000;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: '';
    height: 0.2rem;
    left: 0;
    margin: -0.1rem 0 auto;
    position: absolute;
    top: 50%;
    width: 0.2rem;
}

.nav-2 {
    background: #000;
    bottom: 100%;
    color: #fff;
    position: absolute;
    right: 14rem;
}
.nav-2 .nav-ul {
    align-items: center;
    display: table;
    /*display: flex;*/
    height: 3.3rem;
    justify-content: space-around;
    margin: 0;
    position: static;
    width: auto;
}
.nav-2 .nav-li {
    display: table-cell;
    margin: 0;
    padding: 0 2rem;
    position: relative;
    vertical-align: middle;
}
.nav-2 .nav-a {
    color: #fff;
    display: block;
    font-size: 1.5rem;
    font-weight: normal;
    opacity: 1;
    position: relative;
    text-decoration: none;
}
.nav-a:hover,
.nav-a.-active {
    color: #fff;
    text-decoration: none;
    text-shadow: 1px 0 0 #fff;
}

/*
 *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: none;
        -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: 0.5rem;
        margin: 0;
        overflow: hidden;
        padding: 0;
        position: fixed;
        text-indent: -9999px;
        top: 4rem;
        -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;
        position: fixed;
        -webkit-transform: translate(0, -3.5rem);
        -moz-transform: translate(0, -3.5rem);
        -ms-transform: translate(0, -3.5rem);
        -o-transform: translate(0, -3.5rem);
        transform: translate(0, -3.5rem);
    }
    .c-hamburger:focus {
        outline: none;
    }
    .c-hamburger span {
        background: #ffc734;
        display: block;
        height: 0.4rem;
        left: 20%;
        margin: -0.2rem auto auto;
        position: absolute;
        right: 20%;
        top: 50%;
        -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 {
        content: '';
        display: block;
        height: 0.4rem;
        left: 0;
        position: absolute;
        -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 span::before {
        background: #44b94a;
    }
    .c-hamburger span::after {
        background: #ff2e17;
    }
    
    .c-hamburger.-active span::before,
    .c-hamburger.-active span::after {
        background: #000;
    }
    .-start .c-hamburger span::before,
    .-start .c-hamburger span::after {
        background: #fff;
    }
    .c-hamburger span::before {
        -webkit-transform: translateY(-250%);
        -moz-transform: translateY(-250%);
        -ms-transform: translateY(-250%);
        -o-transform: translateY(-250%);
        transform: translateY(-250%);
        -webkit-transition-property: top, transform;
        -moz-transition-property: top, transform;
        -o-transition-property: top, transform;
        transition-property: top, transform;
    }
    .c-hamburger.-active span::before {
        -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(250%);
        -moz-transform: translateY(250%);
        -ms-transform: translateY(250%);
        -o-transform: translateY(250%);
        transform: translateY(250%);
        -webkit-transition-property: bottom, transform;
        -moz-transition-property: bottom, transform;
        -o-transition-property: bottom, transform;
        transition-property: bottom, transform;
    }
    .c-hamburger.-active span::after {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .c-hamburger-bg {
        background: rgba(255, 255, 255, 0.5);
        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: auto;
        margin-left: 0;
        margin-top: 0;
        max-width: 100%;
        padding: 0;
        position: fixed;
        right: 0;
        top: 0;
        -webkit-transform: translateX(40rem);
        -moz-transform: translateX(40rem);
        -ms-transform: translateX(40rem);
        -o-transform: translateX(40rem);
        transform: translateX(40rem);
        -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: 40rem;
        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: 1rem 0;
        text-align: left;
    }

    .nav-1 .nav-ul {
        display: block;
        height: auto;
        margin: 1rem 0;
        /*max-height: calc(100vh - 15rem);*/
        overflow: auto;
        padding: 0;
        width: auto;
    }
    .nav-1 .nav-li {
        display: block;
        margin: 2rem 0;
        padding: 0;
        position: relative;
    }
    .nav-1 .nav-li::before {
        border-top: 1px solid #e8e8e8;
        content: '';
        left: 2rem;
        position: absolute;
        right: 2rem;
        bottom: -1rem;
    }
    .nav-1 .nav-a {
        color: #000;
        display: block;
        margin: 0;
        padding: 1rem 2rem;
        position: relative;
        width: auto;
        width: auto;
    }
    .nav-1 .nav-a::before,
    .nav-1 .nav-a::after {
        display: none;
    }
    
    .nav-1 .nav-ul2,
    .nav-1 .nav-li:hover .nav-ul2,
    .nav-1 .nav-ul3 {
        background: none;
        border: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        display: block;
        height: auto;
        left: 0;
        margin: 1rem 0;
        max-height: none;
        max-width: 100%;
        min-height: 0;
        min-width: 0;
        opacity: 0;
        overflow-y: visible;
        padding: 0;
        pointer-events: none;
        position: absolute;
        right: 0;
        top: auto;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        visibility: hidden;
        white-space: normal;
        width: auto;
        z-index: 1;
    }
    .nav-1 .nav-li.-active .nav-ul2,
    .nav-1 .nav-li2.-active .nav-ul3 {
        opacity: 1;
        pointer-events: auto;
        position: relative;
        visibility: visible;
    }

    .nav-1 .nav-li2,
    .nav-1 .nav-li3 {
        display: block;
        margin: 1.5rem 0;
        padding: 0;
        width: auto;
    }

    .nav-1 .nav-a2,
    .nav-1 .nav-a3 {
        display: block;
        font-size: 1.7rem;
        font-weight: normal;
        padding: 1rem 2rem 1rem 3rem;
        width: auto;
    }
    .nav-1 .nav-a3 {
        padding-left: 5rem;
    }

    .nav-1 .nav-a2::before {
        left: 2rem;
    }

    .nav-1 .nav-li.-nodes::after,
    .nav-1 .nav-li2.-nodes::after,
    .nav-1 .nav-li3.-nodes::after {
        background: none;
        border: 1px solid #000; 
        border-left: 0;
        border-top: 0;
        content: '';
        cursor: pointer;
        display: block;
        height: 1rem;
        position: absolute;
        right: 2.5rem;
        top: 1.5rem;
        -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: 1rem;
    }
    .nav-1 .nav-li.-nodes.-active::after,
    .nav-1 .nav-li2.-nodes.-active::after,
    .nav-1 .nav-li3.-nodes.-active::after {
        top: 2rem;
        -webkit-transform: rotate(225deg);
        -moz-transform: rotate(225deg);
        -ms-transform: rotate(225deg);
        -o-transform: rotate(225deg);
        transform: rotate(225deg);
    }
    .nav-1 .nav-li.-nodes .nav-a,
    .nav-1 .nav-li2.-nodes .nav-a2,
    .nav-1 .nav-li3.-nodes .nav-a3 {
        margin-right: 7rem;
    }

    .nav-2 {
        bottom: auto;
        position: relative;
        right: auto;
    }
    .nav-2 .nav-ul {
        display: block;
        height: auto;
        margin: 0;
        padding: 0.1rem 0;
    }
    .nav-2 .nav-li {
        display: block;
        margin: 2rem 0;
        padding: 0;
    }
    .nav-2 .nav-a {
        display: block;
        padding: 1rem 2rem;
    }

}

@media only screen and (max-width: 480px) {
    .c-hamburger {
        top: 5.4rem;
    }
    .c-hamburger.-active {
        -webkit-transform: translate(0,-4.9rem);
        -moz-transform: translate(0,-4.9rem);
        -ms-transform: translate(0,-4.9rem);
        -o-transform: translate(0,-4.9rem);
        transform: translate(0,-4.9rem);
    }

    .nav-1 {
        margin-top: 7rem;
    }
}

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

/*
* Info
*/
.info {
    background: #000;
    color: #fff;
    font-size: 1.5rem;
    line-height: 2.1rem;
    padding: 0.4rem 0 0.2rem;
    text-align: center;
}
.info .icon {
    display: inline-block;
    font-size: 2.7rem;
    margin: -0.2rem 1rem 0.2rem 0;
    vertical-align: middle;
}

@media only screen and (max-width: 800px) {
    .info {
        margin-right: 12rem;
        text-align: left;
    }
}

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

/*
* Languages
*/
.languages {
    font-size: 0.00001rem;
    position: absolute;
    right: 0.3rem;
    top: 0.4rem;
}
.languages-a {
    display: inline-block;
    margin: 0.7rem;
    opacity: 1;
    vertical-align: middle;
    width: 1.6rem;
    will-change: transform;
}
.languages-a:hover {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}

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

/*
 * Search
 */
.searchbg {
    display: none;
}
/*
.search.-focus + .searchbg {
    display: block;
}
.searchbg::before {
    background: rgba(255,255,255,0.66);
    bottom: 0;
    content: '';
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9997;
}
.searchbg-x {
    height: 6rem;
    position: fixed;
    right: 1rem;
    right: 3%;
    top: 2rem;
    width: 6rem;
    z-index: 9999;
}
.-start .searchbg-x {
    top: 6.5rem;
}
.searchbg-x::before,
.searchbg-x::after {
    border-top: 1px solid #000;
    bottom: 0;
    content: '';
    cursor: pointer;
    height: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 2rem;
}
.searchbg-x::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.searchbg-x::after {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
*/
.search {
    display: block;
    height: 5rem;
    margin: 0;
    max-width: 4rem;
    overflow: hidden;
    padding: 0;
    position: absolute;
    right: 20.5rem;
    top: 1rem;
    z-index: 3;
}
.search.-hover {
}
.search.-focus {
    background: #fff;
    color: #000;
    max-width: none;
    overflow: visible;
    z-index: 9998;
}

.search-form {
    display: block;
    float: right;
    height: 5rem;
    margin: 0 auto;
    max-width: 30rem;
    padding: 0.5rem 0;    
    position: relative;
    z-index: 1;  
}
.search .lbl-name {
    color: inherit;
    font-size: 1.6rem;
    font-weight: normal;
    margin: -0.75em 0.5rem;
    opacity: 0;
    padding: 0 0.5rem;
    text-overflow: ellipsis;
    -webkit-transform: translateY(2rem);
    -moz-transform: translateY(2rem);
    -ms-transform: translateY(2rem);
    -o-transform: translateY(2rem);
    transform: translateY(2rem);
    white-space: nowrap;
}
.search .lbl-name,
.search .lbl.-focus .lbl-name,
.no-js .search .lbl-name {
    opacity: 0;
}
.search.-focus .lbl-name {
    opacity: 1;
}
.search .input {
    background: none;
    border: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font-size: 1.6rem;
    line-height: 3.6rem;
    padding: 0.2rem 5rem 0.1rem 1rem;
}
.search.-focus .input {
    border-bottom: 1px solid #000;
}
.search-button {
    background: rgba(255, 255, 255, 0);
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    bottom: 0;
    color: #000;
    font-size: 2.4rem;
    height: 3rem;
    left: auto;
    line-height: 1;
    margin: auto;
    padding: 0.3rem 0 0;
    position: absolute;
    right: 0.5rem;
    text-align: center;
    top: 0;
    width: 3rem;
}
.search-button:hover {
    background: rgba(255, 255, 255, 0);
    color: #A81101;
}

@media only screen and (max-width: 480px) {
    .search {
        right: 5.5rem;
        top: 0;
    }
}

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

/*
 * Login / Register
*/
.logreg {
    display: block;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 14rem;
    text-align: center;
    top: 2rem;
    z-index: 3;
}
.logreg .dropdown-a {
    color: #000;
    display: block;
    font-size: 1rem;
    opacity: 1;
    padding: 3.1rem 0 0;
    position: relative;
    text-align: center;
    text-transform: none;
    width: 4rem;
}
.logreg .dropdown-a:hover {
    text-decoration: none;
}
.logreg .icon--user {
    background: url('../images/icons/user0.svg') no-repeat center;
    background-size: contain;
    height: 2.5rem;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0.3rem;
    width: 2.5rem;
}
.logreg .dropdown-a:hover .icon--user,
.logreg.-active .icon--user {
    background-image: url('../images/icons/user1.svg');
}
.logreg .icon--user::before {
    display: none;
}
.logreg-name {
    display: none;
}
.logreg.-active .logreg-name {
    display: block;
}

.logreg .dropdown-adv {
    display: none;
    right: -1rem;
    width: 30rem;
}
.logreg.-active .dropdown-adv {
    display: block;
}
.logreg .dropdown-adv::before {
    right: 1.1rem;
}
.logreg .dropdown-adv::after {
    right: 1rem;
}

.logreg .userBox {
    border: 0;
    padding: 0;
}
.logreg .userBox-icon,
.logreg .userBox-h {
    display: none;
}
.logreg .box {
    display: none;
}
.logreg .userBox .formActions {
    margin: 0.5rem 0 0;
}

.logreg .userBox .formActions-a {
    float: left;
    font-size: 1.4rem;
    margin: 1rem 1rem 0 0;
}
.logreg .userBox .formActions-a + .formActions-a {
    float: right;
    margin: 1rem 0 0 1rem;
}

.logreg .dropdown-adv li {
    font-size: 1.8rem;
    margin: 0.3em 0;
}


@media only screen and (max-width: 480px) {
    .logreg {
        right: 0.5rem;
        top: 1rem;
        width: auto;
    }
    .logreg .dropdown-a {
        font-size: 0.000001rem;
    }
    .logreg .dropdown-adv,
    .logreg.-active .dropdown-adv {
        display: none;
    }
}

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

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

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

/* 
 * tabz
 */
.tabz {
    margin: 3em 0;
    padding: 0;
}
.tabz-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0.5em 0;
    padding: 0;
    text-align: center;
}
.tabz-a {
    color: #b6b6b6;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0 6%;
    opacity: 1;
    padding: 1rem 0;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    vertical-align: middle;
}
.tabz-a:hover,
.tabz-a.-active {
    color: #000;
    text-decoration: none;
}
.tabz-a::after {
    border-bottom: 1px solid #b6b6b6;
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: auto;
    width: 0;
}
.tabz-a:hover::after,
.tabz-a.-active::after {
    border-bottom-color: #000;
    left: 0;
    width: 8rem;
}
.tabz-h {
    font: inherit;
    margin: 0;
    padding: 0;
    text-transform: inherit;
}
.tabz-con {
    margin: 0 -3.5rem;
    overflow: visible;
    padding: 2rem 3.5rem;
    position: relative;

    margin: 0.5em 0;
    padding: 0;
}
.tabz-div {
    left: 3.5rem;
    opacity: 0;
    position: absolute;
    right: 3.5rem;
    top: 1rem;
    -webkit-transition: opacity 0.25s ease;
    -moz-transition: opacity 0.25s ease;
    -o-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
    visibility: hidden;

    left: 0;
    margin: 0 auto;
    max-width: 166rem;
    right: 0;
    top: 0;
}
.tabz-div.-active {
    left: 0;
    opacity: 1;
    position: relative;
    right: 0;
    top: 0;
    visibility: visible;
}

.tabz-con .section {
    padding: 0;
}

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

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

.section-h {
    font-size: 2.5rem;
    font-weight: 500;
    margin: 1em 0;
    text-align: center;
    text-transform: none;
}
.ib .section-h {
    text-align: left;
}

.path + .section-h {
    margin: -0.1em 0 0.5em;
}

.section .con .button {
    margin-bottom: 0.5em;
    margin-top: 0.5em;
}

.section-more {
    clear: both;
    margin: 2rem 0;
    text-align: center;
}

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

/*
 * Header and Path
*/
.section--hap {
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
    z-index: 3;
}

.section--hap + .section {
    padding-top: 0;
}

.section--hap .section-h {
    text-align: center;
}
.section--hap .path {
    text-align: center;
}
.section--hap .path:last-child {
    text-align: left;
}

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

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

.banners {
    background: #000;
}
.banners-item {
    background: no-repeat center;
    background-size: cover;
    cursor: auto;
    max-height: 60rem;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-align: center;
}

.banners-video {
    display: block;
    height: 60rem;
    margin: 0;
    object-fit: cover;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-align: center;
    width: 100%;
}

.banners-image {
    display: block;
    height: 60rem;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-align: center;
    width: auto;
}
.banners-image .img {
    height: 100%;
    left: -999%;
    margin: auto;
    max-height: none;
    max-width: none;
    position: absolute;
    right: -999%;
    top: 0;
    width: auto;
}

.banners .container {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.banners-table {
    display: table;
    height: 100%;
    margin: auto;
    table-layout: fixed;
    width: 100%;
}
.banners-td {
    display: table-cell;
    padding: 0;
    text-align: center;
    vertical-align: middle;
}

.banners-prefix {
    color: #000;
    font-size: 1.6rem;
    font-weight: bold;
    margin: 1em 0;
    text-decoration: underline;
    text-transform: uppercase;
}

.banners-name {
    color: #fff;
    font-size: 6rem;
    line-height: 1.1;
    margin: 0.3em auto;
    max-width: 60rem;
    text-transform: uppercase;
}

.banners-txt {
    color: #000;
    font-size: 2.4rem;
    font-weight: normal;
    margin: 1em auto;
    max-width: 60rem;
}

.banners-price {
    color: #000;
    font-size: 7rem;
    font-weight: bold;
    line-height: 1.1;
    margin: 0.3em 0;
}

.banners-a {
    opacity: 1;
}
.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:hover .button {
}
.banners-a:first-child .button {
    display: none;
}

/*
.swiper-slide .banners-img {
    transition: all 1s ease;
}
.swiper-slide-prev .banners-img {
    transform: translateX(-5%);
}
.swiper-slide-active .banners-img {
    transform: translateX(0);
}
.swiper-slide-next .banners-img {
    transform: translateX(5%);
}
.swiper-slide .banners-name {
    opacity: 0;
    transform: translateY(100%);
    transition-delay: 5s;
}
.swiper-slide-active .banners-name {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease 0.25s;
}
.swiper-slide .banners-txt {
    opacity: 0;
    transform: translateY(100%);
    transition-delay: 2s;
}
.swiper-slide-active .banners-txt {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease 0.75s;
}
.swiper-slide .banners-button {
    opacity: 0;
    transition-delay: 5s;
}
.swiper-slide-active .banners-button {
    opacity: 1;
    transition: all 0.5s ease 1.25s;
}
*/

.slider--banners {
    height: auto;
    margin: 0 auto;
    position: relative;
}

.slider--banners .slider-container--1 {
    padding-bottom: 4rem;
    padding-top: 4rem;
}
.slider--banners .slider-container--2 {
    display: none;
}
.slider--banners.-active .slider-container--2 {
    display: block;
}
.slider--banners .slider-container--3 {
    bottom: 1.5rem;
    display: none;
}
.slider--banners.-active .slider-container--3 {
    display: block;
}

.slider--banners .swiper-button-next,
.slider--banners .swiper-button-prev {
    color: #000;
}
.slider--banners .swiper-pagination-bullet {
    opacity: 0.5;
}
.slider--banners .swiper-pagination-bullet:hover,
.slider--banners .swiper-pagination-bullet-active {
    opacity: 1;
}
.slider--banners .swiper-pagination-bullet::before {
    background: #fff;
    border-color: #fff;
}
.slider--banners .swiper-pagination-bullet:hover::before {
    background: #000;
    border-color: #000;
}

@media only screen and (max-width: 1200px) {

    .banners-table {
        margin: 0;
        width: 100%;
    }
    .banners-name {
        font-size: 7.3rem;
    }
    .banners-txt {
        font-size: 2.2rem;
    }

    .slider--banners .slider-container--1 {
        padding: 4rem 1rem;
    }
    .slider--banners .slider-container--2,
    .slider--banners.-active .slider-container--2 {
        display: none;
    }
    .slider--banners .slider-container--3 {
        padding: 0 1rem;
    }
}

@media only screen and (max-width: 800px) {
    .banners-video,
    .banners-image {
        height: 60rem;
    }
    .banners-name {
        font-size: 4.9rem;
    }
    .banners-txt {
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 360px) {
    .banners-video,
    .banners-image {
        height: 45rem;
    }
}

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

/*
* Banner
*/
.section--banner {
    overflow: hidden;
    padding: 0;
    position: relative;
}

.banner {
    background: #000;
    height: 200px;
    padding: 0;
}
.banner-img {
    height: 100%;
    left: -999%;
    margin: auto;
    max-height: none;
    max-width: none;
    position: absolute;
    right: -999%;
    top: 0;
    width: auto;
}

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

/*
* General
*/
.section--general {
    position: relative;
    text-align: center;
}

.section--general .ib {
    text-align: left;
}
.section--general > .ibs > .ib {
    position: sticky;
    top: 0;
}

@media only screen and (max-width: 600px) {
    .section--general > .ibs > .ib {
        position: relative;
        width: 100%;
    }
    .section--general .section-picture {
        text-align: center;
    }
}

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

/*
* News
*/
.section--news {
    position: relative;
}
.news {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
    overflow: visible;
}
.news-item {
    overflow: visible;
    padding: 1rem;
    text-align: center;
}
.news-a {
    align-items: center;
    background: #fff;
    color: #000;
    display: block;
    display: flex;
    font-size: 0.00001rem;
    margin: 0 auto;
    max-width: 53rem;
    min-height: 100%;
    opacity: 1;
    padding: 0;
    position: relative;
    text-align: left;
    text-decoration: none;
    z-index: 3;
}
.news-a:hover {
    color: #000;
    text-decoration: none;
}
.news-image {
    display: inline-block;
    padding: 56.61% 0 0;
    vertical-align: middle;
    width: 49.06%;
}
.news-grp {
    display: block;
}
.news-image + .news-grp {
    display: inline-block;
    padding: 0 0 0 2rem;
    vertical-align: middle;
    width: 50.94%;
}
.news .datetime {
    margin: 1rem 0;
    text-align: inherit;
}
.news-name {
    font-size: 2rem;
    font-weight: bold;
    margin: 0.5em 0;
}
.news-txt {
    font-size: 1.6rem;
    line-height: 1.8;
    margin: 0.5em 0;
}
.news-more {
    display: inline-block;
    font-weight: bold;
}

@media only screen and (max-width: 1000px) {
    .news-item {
        width: 50%;
    }
}

@media only screen and (max-width: 600px) {
    .news-item {
        width: 100%;
    }
}

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

/*
* Article
*/
.section--article {
    position: relative;
    text-align: center;
}

.section--article .ib {
    text-align: left;
}
.section--article > .ibs > .ib {
    position: sticky;
    top: 0;
}

@media only screen and (max-width: 600px) {
    .section--article > .ibs > .ib {
        position: relative;
        width: 100%;
    }
    .section--article .section-picture {
        text-align: center;
    }
}

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

/*
* Contact
*/
.section--contact .ib {
    overflow: hidden;
}

.contactIco {
    padding-left: 2.5em;
    position: relative;
}
.contactIco .icon {
    font-size: 3rem;
    left: 0;
    position: absolute;
    top: -0.5rem;
}

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

.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 {
    bottom: 0;
    clear: both;
    left: 0;
    margin: 0;
    position: relative;
    right: 0;
    text-align: center;
}

.footer-1 {
    background: #e9e9e9;
    padding: 1rem 0;
    position: relative;
}

.features {
    display: block;
    position: relative;
}
.features-item {
    margin: 1.5rem 0;
    text-align: center;
}
.features-icon {
    display: block;
    line-height: 4.7rem;
    overflow: hidden;
}
.features .icon--shipment {
    font-size: 6.8rem;
}
.features .icon--like {
    font-size: 4.4rem;
}
.features .icon--award {
    font-size: 4.7rem;
}
.features .icon--percent {
    font-size: 4.1rem;
}
.features-name {
    font-size: 2rem;
    font-weight: bold;
    margin: 0.5em 0;
    padding: 0;
}
.features-txt {
    font-size: 1.6rem;
    line-height: 1.2;
    margin: 0.5em auto 0;
    max-width: 24.5rem;
}

.footer-2 {
    background: #000;
    color: #fff;
    position: relative;
}

.footer-2 .logo {
    height: 11.4rem;
    margin: 2rem auto;
    width: 8.3rem;
}

.footer-2 .ibs {
    min-height: 44rem;
}
.footer-2 .ib--2 {
    font-size: 1.4rem;
    margin: 0;
    padding: 1rem;
    position: relative;
    text-align: left;
    vertical-align: top;
}

.footer-h {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.4;
    margin: 1em 0;
    opacity: 0.6;
    text-transform: uppercase;
}
.footer-ul {
    line-height: 1.2;
    margin: 2.1em 0;
    padding: 0;
}
.footer-li {
    margin: 1em 0;
    padding: 0;
}
.footer-a {
    color: #fff;
    opacity: 1;
}
.footer-a:hover {
    color: #fff;
    text-decoration: none;
    text-shadow: 1px 0 0 #fff;
}
.footer-div {
    line-height: 1.8;
    margin: 1.8em 0;
}
.footer-img {
    display: block;
    margin: 0.5em 0;
}


.shipments .img {
    display: block;
    margin: 0.5em 0;
}

.payments .img {
    display: block;
    filter: grayscale(1);
    margin: 0 0 1.5em 0;
}
.payments .img:nth-child(n+3) {
    display: inline-block;
    margin-right: 1em;
    vertical-align: middle;
}
.payments .img:hover {
    filter: grayscale(0);
}

.newsletter {}
.newsletter-txt {
    margin: 1em 0;
}
.newsletter-form {}
.newsletter .ibs {
    min-height: 0;
}
.newsletter .ib {
    padding: 0.5rem 1rem;
}
.newsletter .lbl-name {
    font-size: 1.4rem;
    padding: 0 0.5rem;
    transform: translateY(1.6rem);
}
.newsletter .input--text {
    line-height: 2.2rem;
}
.newsletter .input--checkbox {
    height: 1.5rem;
    width: 1.5rem;
}
.newsletter .lbl-aside {
    color: #9a9a9a;
    font-size: 1.2rem;
    line-height: 2rem;
    margin: -2rem auto auto 2.5rem;
}
.newsletter a {
    color: #fff;
    opacity: 1;
}
.newsletter-button {
    border-color: #fff;
    font-size: 1.2rem;
    line-height: 1.6rem;
    padding: 0.6rem 1rem;
}

.newsletter  .ml-form-embedWrapper {
    background: none !important;
    border-radius: 0 !important;
    max-width: none !important;
}
.newsletter .ml-form-embedBody {
    padding: 0 !important;
}
.newsletter .ml-form-embedContent {
    margin: 0 0 1rem 0 !important;
}
.newsletter .ml-form-embedContent h4 {
    display: none !important;
}
.newsletter .ml-form-embedContent p,
.newsletter .ml-form-embedContent span {
    color: inherit !important;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}
.newsletter .ml-form-formContent.horozintalForm {
    padding: 0 0 1rem 0 !important;
}
.newsletter .ml-input-horizontal {
    float: none !important;
    width: 100% !important;
}
.newsletter .horizontal-fields {
    float: none !important;
    padding: 0 0 1rem 0 !important;
}
.newsletter .ml-form-horizontalRow input {
    border-radius: 0 !important;
}
.newsletter .ml-button-horizontal {
    float: none !important;
    width: 100% !important;
}
.newsletter button {
    border-color: #fff !important;
    font-weight: normal !important;
}

.newsletter .ml-form-successBody {
    padding: 0 !important;
}
.newsletter .ml-form-successContent {
    margin: 0 1rem 0 0 !important;
}
.newsletter .ml-form-successContent h4 {
    color: #fff !important;
    font-family: inherit !important;
    font-size: 3rem !important;
}
.newsletter .ml-form-successContent p,
.newsletter .ml-form-successContent span {
    color: inherit !important;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

.footer .socials {
    margin: -0.7rem;
}
.footer .socials-a {
    font-size: 1.9rem;
    height: 3.1rem;
    margin: 0.7rem;
    opacity: 1;
    padding: 0.6rem 0 0;
    width: 3.1rem;
}

.cr {
    clear: both;
    color: #888;
    font-size: 1.2rem;
    font-weight: normal;
    margin: 0.5em 0;
    padding: 0;
    text-align: center;
    text-transform: none;
    z-index: 1;
}

.copyrights {
    display: inline-block;
    margin: 0.5rem 1rem;
    min-width: 45%;
    padding: 0;
    position: relative;
    text-align: right;
    vertical-align: middle;
}
.copyrights-span {
    display: inline-block;
}

.realization {
    display: inline-block;
    margin: 0.5rem 1rem;
    min-width: 45%;
    padding: 0;
    position: relative;
    text-align: left;
    vertical-align: middle;

    padding-left: 5rem;
}
.realization:before {
    content: '\00a0\00a0|\00a0\00a0\00a0';
    display: none;
}

.redhand {
    color: inherit;
    display: inline-block;
    opacity: 1;
    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);
}

@media only screen and (max-width: 1000px) {
    .footer .ib--2 {
        width: 33.33%;
    }
    .footer .ib--3 {
        width: 50%;
    }
}

@media only screen and (max-width: 480px) {
    .footer .ib--2 {
        width: 50%;
    }
    .footer .ib--3 {
        width: 100%;
    }

    .cr {
        margin: 3rem 0 1rem;
    }
    .copyrights,
    .realization {
        display: block;
        float: none;
        max-width: none;
        padding: 0;
        text-align: center;
    }
}

@media only screen and (max-width: 360px) {
    .footer .ib--2 {
        text-align: center;
        width: 100%;
    }
    .footer-img {
        margin: 0.5em auto;
    }
    .payments .img {
        margin: 0 auto 1.5em auto;
    }
}

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

/*
 * 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;
    font-weight: 500;
}
.progressBar-progress {
    color: #000;
}
.progressBar-stroke {
    background: #d9d9d9;
    -webkit-border-radius: 0.3rem;
    -moz-border-radius: 0.3rem;
    border-radius: 0.3rem;
    height: 0.6rem;
    overflow: hidden;
    position: relative;
}
.progressBar-fill {
    background: #000;
    -webkit-border-radius: 0.3rem;
    -moz-border-radius: 0.3rem;
    border-radius: 0.3rem;
    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 auto;
}
.userBox .formActions {
    margin: 1rem 0;
    padding: 0;
}
.userBox .formActions-a {
    display: inline-block;
    font-size: 1.8rem;
    margin: 1rem 0 0;
}

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

.dataprocessing {
    display: block;
    text-align: left;
}

.mfp-bg {
    z-index: 21042;
}
.whiteBackground .mfp-content {
    min-height: 0;
}
.mfp-wrap {
    z-index: 21043;
}

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

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

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

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