@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@400;
700&display=swap);
* {
    margin: 0;
    padding: 0;
    font-size: 100%;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.5s;
}
a:hover {
    text-decoration: none;
}
a:active, a:hover, a:focus {
    outline: none;
}
img {
    border: none;
    max-width: 100%;
    height: auto;
}
input, button, textarea {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
}
input, button, textarea, input:active, input:focus, textarea:active, textarea:focus {
    outline: none;
    -webkit-appearance: none;
}
button::-moz-focus-inner, input[type="reset"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, input[type="file"]>input[type="button"]::-moz-focus-inner {
    border: none;
    outline: none;
}
body {
    background-color: #FFF;
    color: #333;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: 1.5;
    scroll-behavior: smooth;
}
body.is-fixed {
    overflow: hidden;
}
.container {
    width: 100%;
    max-width: 1432px;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
}
.wrapper {
    min-height: 100vh;
    padding-bottom: 64px;
}
ol, ul {
    margin-left: 20px;
}
ol:not(:first-child), ul:not(:first-child) {
    margin-top: 8px;
}
p:not(:first-child) {
    margin-top: 8px;
}
h1 {
    font-size: 80px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}
h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
}
h2:not(:first-child) {
    margin-top: 44px;
}
h3 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
}
h3:not(:first-child) {
    margin-top: 16px;
}
h4 {
    font-weight: 700;
    text-transform: uppercase;
}
h4:not(:first-child) {
    margin-top: 16px;
}
.title:not(:first-child) {
    margin-top: 16px;
}
.list {
    list-style: none;
    margin-left: 0;
}
.list li::before {
    content: '✔';
    padding-right: 8px;
}
svg {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    color: inherit;
    fill: transparent;
    stroke: transparent;
}
.text-center {
    text-align: center;
}
.text-white {
    color: #FFF;
}
.bg-white {
    background-color: #FFF;
}
.bg-secondary {
    background-color: #CC0000;
}
.bg-secondary-light {
    background-color: #F0F3F4;
}
.bg-bauerfiend {
    background-color: #133E8F;
}
.bg-orlett {
    background-color: #00467F;
}
.fw-bold {
    font-weight: 700;
}
.extra-bold {
    font-weight: 900;
}
.text-uppercase {
    text-transform: uppercase;
}
.fs-11 {
    font-size: 11px;
}
.fs-12 {
    font-size: 12px;
}
.fs-14 {
    font-size: 14px;
}
.fs-15 {
    font-size: 15px;
}
.fs-16 {
    font-size: 16px;
}
.fs-18 {
    font-size: 18px;
}
.fs-20 {
    font-size: 20px;
}
.fs-24 {
    font-size: 24px;
}
.fs-32 {
    font-size: 32px;
}
.fs-36 {
    font-size: 36px;
}
.fs-60 {
    font-size: 60px;
}
.img-cover {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: 50% 50%}
.img-contain {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: none;
}
.radius {
    border-radius: 10px;
}
.w-100 {
    width: 100%}
.h-100 {
    height: 100%}
.overflow-hidden {
    overflow: hidden;
}
.pt-8 {
    padding-top: 8px;
}
.pt-12 {
    padding-top: 12px;
}
.pt-16 {
    padding-top: 16px;
}
.pt-20 {
    padding-top: 20px;
}
.pt-24 {
    padding-top: 24px;
}
.pt-36 {
    padding-top: 36px;
}
.p-8 {
    padding: 8px;
}
.p-12 {
    padding: 12px;
}
.p-16 {
    padding: 16px;
}
.p-20 {
    padding: 20px;
}
.p-24 {
    padding: 24px;
}
.pb-16 {
    padding-bottom: 16px;
}
.px-20 {
    padding-left: 20px;
    padding-right: 20px;
}
.pb-20 {
    padding-bottom: 20px;
}
.mt-2 {
    margin-top: 2px;
}
.mt-16 {
    margin-top: 16px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-24 {
    margin-top: 24px;
}
.mt-44 {
    margin-top: 44px;
}
.g-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -12px;
    margin-right: -12px;
}
.g-row_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.g-row_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.g-row_middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.g-row_empty {
    margin-right: 0;
    margin-left: 0;
}
.g-row_empty>.g-col {
    padding-left: 0;
    padding-right: 0;
}
.g-col {
    padding-left: 12px;
    padding-right: 12px;
}
.g-col_20 {
    width: 20%;
    min-width: 20%}
.g-col_25 {
    width: 25%;
    min-width: 25%}
.g-col_33 {
    width: 33.3333%;
    min-width: 33.3333%}
.g-col_50 {
    width: 50%;
    min-width: 50%}
.g-col_100 {
    width: 100%;
    min-width: 100%}
.g-col_full {
    flex-grow: 1;
    min-width: 0;
}
.d-block {
    display: block;
}
.button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    background: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    border-radius: 6px;
}
.button_secondary {
    background-color: #F0F3F4;
    padding: 8px 16px;
    min-height: 64px;
}
.button_secondary:hover {
    background-color: #DC143C;
    color: #FFF;
}
.button_primary {
    background-color: #DC143C;
    color: #FFF;
    padding: 0 16px;
    height: 32px;
    border: 1px solid #DC143C;
}
.button_primary:hover {
    background-color: #FFF;
    color: #DC143C;
}
.link {
    cursor: pointer;
    transition: 0.3s;
    color: #DC143C;
    display: inline-block;
}
.link:hover {
    color: #DC143C;
}
.header {
    background-color: #FFF;
    padding-top: 16px;
    padding-bottom: 16px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px 0 #0000001A;
}
.logo {
    display: block;
    max-width: 302px;
    margin: 0 auto;
}
.logo img {
    display: block;
}
.section-title {
    position: relative;
}
.section-title__text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    color: #fff;
}
.section-title__image {
    position: relative;
}
.section-title__image::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    background: rgba(0, 0, 0, .3);
}
.hero {
    position: relative;
}
.hero__image {
    height: 612px;
}
.about__title {
    line-height: 1;
}
.about__text {
    line-height: 1.1;
}
.about__image {
    align-self: stretch;
}
.link-download {
    transition: background-color 0.3s;
}
.link-download__name {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 16px;
}
.link-download__info {
    display: flex;
    align-items: center;
}
.link-download__icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-left: 8px;
}
.link-download__file {
    width: 47px;
    min-width: 47px;
    height: 47px;
    margin-right: 12px;
}
.link-download:hover {
    color: #FFF;
    background-color: #DC143C;
}
.link-download:hover .link-download__name {
    color: #FFF;
}
.slider {
    margin-left: -10px;
    margin-right: -10px;
}
.slider .slick-track {
    margin: 0;
}
.slider__item {
    padding-left: 10px;
    padding-right: 10px;
    height: auto;
}
.slider .slick-track {
    display: flex;
}
.product {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.product__image img {
    display: block;
}
.product__name {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.product__button {
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
}
.product:hover .button_primary {
    background-color: #FFF;
    color: #DC143C;
}
.slider__arrow {
    width: 48px;
    height: 48px;
    color: #333;
    background-color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    cursor: pointer;
    transition: 0.3s;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 6px 16px 0 #00000014;
}
.slider__arrow svg {
    width: 12px;
    height: 22px;
}
.slider__arrow_next {
    right: 0;
}
.slider__arrow_prev {
    left: 0;
}
.slider__arrow:hover {
    color: #DC143C;
}
.logo-icon {
    width: 220px;
}
.popup {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1024;
    display: none;
}
.popup__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .4);
    z-index: 1;
}
.popup__wrapper {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    pointer-events: none;
}
.popup__content {
    overflow-y: auto;
    max-height: 100%;
    width: 100%;
    pointer-events: none;
}
.popup__block {
    width: 100%;
    max-width: 830px;
    margin: 0 auto;
    pointer-events: all;
    position: relative;
}
.popup__close {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    transition: 0.3s;
    color: #CDCDCD;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
}
.popup__close svg {
    width: 16px;
    height: 16px;
}
.popup__close:hover {
    color: #DC143C;
}
.popup__video {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    pointer-events: all;
    position: relative;
}
.details {
    display: flex;
    align-items: center;
}
.details__icon {
    width: 68px;
    min-width: 68px;
    height: 68px;
    margin-right: 12px;
}
.details__content {
    flex-grow: 1;
    min-width: 0;
}
.description {
    position: relative;
    max-height: 420px;
    overflow: hidden;
    transition: 0.3s;
    padding-bottom: 32px;
}
.description::after {
    position: absolute;
    height: 180px;
    background: linear-gradient(0deg, #FFFFFF 16.07%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    transition: 0.3s;
}
.description__link {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
}
.description.is-full {
    max-height: 1000px;
}
.description.is-full::after {
    opacity: 0;
    visibility: hidden;
}
.video-link {
    position: relative;
    cursor: pointer;
}
.video-link__icon {
    position: absolute;
    width: 180px;
    height: 180px;
    transition: 0.3s;
    opacity: .65;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.video-link:hover .video-link__icon {
    opacity: 1;
}
.video-link__icon_sm {
    width: 108px;
    height: 108px;
}
.video {
    width: 100%;
    height: auto;
    display: block;
}
.button-up {
    transition: 0.3s;
    width: 42px;
    height: 42px;
    cursor: pointer;
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 99;
    opacity: .7;
}
.button-up:hover {
    opacity: 1;
}
.button-up.is-hidden {
    opacity: 0;
    visibility: hidden;
}
.roll-block__bottom {
    display: none;
}
.scroll-slider {
    display: block;
}
.brand-text {
    color: #DC143C;
}
@media screen and (max-width:1200px) {
    .fs-xl-56 {
        font-size: 56px;
    }
    .g-col_xl-33 {
        width: 33.3333%;
        min-width: 33.3333%}
    .g-col_xl-50 {
        width: 50%;
        min-width: 50%}
    .g-col_xl-100 {
        width: 100%;
        min-width: 100%}
    .header {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .hero__image {
        height: 560px;
    }
    .logo {
        max-width: 152px;
    }
    .h1 {
        font-size: 60px;
    }
}@media screen and (max-width:992px) {
    .g-row_lg-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .g-col_lg-50 {
        width: 50%;
        min-width: 50%}
    .g-col_lg-100 {
        width: 100%;
        min-width: 100%}
    .pt-lg-24 {
        padding-top: 24px;
    }
}@media screen and (max-width:768px) {
    body {
        font-size: 16px;
    }
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 32px;
    }
    h2:not(:first-child) {
        margin-top: 40px;
    }
    .g-row_md-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .g-row:not(.g-row_empty) {
        margin-left: -6px;
        margin-right: -6px;
    }
    .g-col {
        padding-left: 6px;
        padding-right: 6px;
    }
    .g-col_md-100 {
        width: 100%;
        min-width: 100%}
    .img-contain {
        max-width: 100%}
    .button_secondary {
        min-height: 32px;
    }
    .fs-md-12 {
        font-size: 12px;
    }
    .fs-md-20 {
        font-size: 20px;
    }
    .fs-md-32 {
        font-size: 32px;
    }
    .pt-md-0 {
        padding-top: 0;
    }
    .pt-md-8 {
        padding-top: 8px;
    }
    .pt-md-12 {
        padding-top: 12px;
    }
    .pt-md-16 {
        padding-top: 16px;
    }
    .p-md-0 {
        padding: 0;
    }
    .p-md-8 {
        padding: 8px;
    }
    .p-md-16 {
        padding: 16px;
    }
    .px-md-16 {
        padding-left: 16px;
        padding-right: 16px;
    }
    .pb-md-20 {
        padding-bottom: 20px;
    }
    .mt-md-8 {
        margin-top: 8px;
    }
    .mt-md-16 {
        margin-top: 16px;
    }
    .mt-md-40 {
        margin-top: 40px;
    }
    .hero__image {
        height: auto;
    }
    .slider-wrapper {
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .slider__item {
        padding-left: 6px;
        padding-right: 6px;
    }
    .slider {
        margin-left: -6px;
        margin-right: -6px;
    }
    .roll-block__bottom {
        display: block;
    }
    .roll-block__inside {
        display: none;
    }
    .roll-block__button {
        opacity: .7;
        display: inline-block;
        transition: 0.3s;
        cursor: pointer;
    }
    .roll-block__button:hover {
        opacity: 1;
    }
    .video-link__icon {
        width: 48px;
        height: 48px;
    }
    .video-link__icon_sm {
        width: 36px;
        height: 36px;
    }
    .popup__content {
        height: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .popup__block {
        height: 100%;
        overflow-y: auto;
        border-radius: 0;
    }
    .scroll-slider {
        display: flex;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 10px;
        padding-right: 10px;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .scroll-slider::-webkit-scrollbar {
        width: 0;
        display: none;
    }
    .link-download__name {
        font-size: 14px;
    }
}@media screen and (max-width:576px) {
    .g-col_sm-100 {
        width: 100%;
        min-width: 100%}
    .fs-sm-10 {
        font-size: 10px;
    }
    .fs-sm-12 {
        font-size: 12px;
    }
    .fs-sm-18 {
        font-size: 18px;
    }
    .fs-sm-32 {
        font-size: 32px;
    }
    .logo {
        max-width: 124px;
        margin-left: 0;
    }
    .link-download__file {
        width: 36px;
        min-width: 36px;
        height: 36px;
        margin-right: 8px;
    }
    .slider__arrow {
        width: 28px;
        height: 28px;
    }
    .slider__arrow svg {
        width: 6px;
        height: 12px;
    }
    .details {
        display: block;
        text-align: center;
        width: 180px;
    }
    .details__icon {
        width: 45px;
        min-width: 45px;
        height: 45px;
        margin: 0 auto 6px;
    }
}