@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/subset-Montserrat-Regular.eot');
    src: url('../fonts/subset-Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/subset-Montserrat-Regular.woff2') format('woff2'),
         url('../fonts/subset-Montserrat-Regular.woff') format('woff'),
         url('../fonts/subset-Montserrat-Regular.ttf') format('truetype'),
         url('../fonts/subset-Montserrat-Regular.svg#Montserrat-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/subset-Montserrat-Medium.eot');
    src: url('../fonts/subset-Montserrat-Medium.eot?#iefix') format('embedded-opentype'),
         url('../fonts/subset-Montserrat-Medium.woff2') format('woff2'),
         url('../fonts/subset-Montserrat-Medium.woff') format('woff'),
         url('../fonts/subset-Montserrat-Medium.ttf') format('truetype'),
         url('../fonts/subset-Montserrat-Medium.svg#Montserrat-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: block;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/subset-Montserrat-Bold.eot');
    src: url('../fonts/subset-Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/subset-Montserrat-Bold.woff2') format('woff2'),
         url('../fonts/subset-Montserrat-Bold.woff') format('woff'),
         url('../fonts/subset-Montserrat-Bold.ttf') format('truetype'),
         url('../fonts/subset-Montserrat-Bold.svg#Montserrat-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: block;
}


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

:root {
    --color-white: #ffffff;
    --color-black: #000000;
    --color-dark: #292929;
    --color-red: #ff0000;
    
    --font-primary: "Montserrat";
}



body {
    margin: 0;
    background: var(--color-black);
    font-family: var(--font-primary);
    font-weight: normal;
    font-size: 16px;
    color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -webkit-backface-visibility: hidden;
    min-height: 100%;
    position: relative;
}

.jbl-header {
    position: relative;
    background: var(--color-red);
    z-index: 100;
}
.jbl-header__inner {
    height: 50px;
    align-items: center;
    position: relative;
}
.jbl-header__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}
.jbl-header__logo {
    display: flex;
    align-items: center;
    gap: 20px;
}
.jbl-header__logo-img {
    max-height: 32px;
    width: auto;
}
@media screen and (min-width: 768px) {
    .jbl-header__inner {
        height: 65px;
        justify-content: flex-end;
    }
    .jbl-header__title-wrapper {
        position: absolute;
        left: 0;
        right: 0;
        text-align: center;
    }
    .jbl-header__title {
        font-size: 20px;
    }
    .jbl-header__logo {
        gap: 30px;
    }
    .jbl-header__logo-img {
        max-height: 40px;
    }
}
@media screen and (min-width: 992px) {
    .jbl-header__logo {
        gap: 30px;
    }
    .jbl-header__logo-img {
        max-height: 48px;
    }
}

.jbl-container {
    padding: 0 20px;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}
.jbl-container-fluid {
    padding: 0 20px;
}

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

p {
    margin: 2rem 0;
}
p + p {
    margin-top: 4rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.jbl-text-bold {
    font-weight: bold !important;
}
.jbl-text-semibold {
    font-weight: 500 !important;
}
.jbl-text-italic {
    font-style: italic !important;
}
.jbl-text-center {
    text-align: center !important;
}
.jbl-overflow-hidden {
    overflow: hidden;
}

.jbl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    border-radius: 50px;
    box-shadow: none;
    background: var(--color-red);
    color: var(--color-white);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration-line: underline;
    text-transform: uppercase;
    padding: 0 40px;
    height: 50px;
    cursor: pointer;
}

.jbl-section {
    position: relative;
}
.jbl-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.jbl-section__bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
    z-index: 1;
}
.jbl-section__bg_dark:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.5;
    z-index: 2;
}
.jbl-section__content {
    position: relative;
    z-index: 3;
}
.jbl-section_h_full .jbl-section__content {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.jbl-section_about .jbl-section__content {
    padding-top: 50px;
    padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
    .jbl-section_h_full .jbl-section__content {
        min-height: calc(100vh - 65px);
    }
    .jbl-section_about .jbl-section__content {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

.jbl-intro-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.jbl-intro-block__title {
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.35;
}
@media screen and (min-width: 768px) {
    .jbl-intro-block__title {
        font-size: 36px;
    }
}
@media screen and (min-width: 992px) {
    .jbl-intro-block__title {
        font-size: 48px;
        max-width: 890px;
    }
}

.jbl-content-section + .jbl-content-section {
    margin-top: 3em;
}
.jbl-content-section__title {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    z-index: 3;
    margin-bottom: 1em;
}
.jbl-content-section__title:before {
    content: "";
    position: absolute;
    top: 0.15em;
    right: calc(100% + 10px);
    width: 100vw;
    height: 20px;
    background: var(--color-red);
}
.jbl-content-section__text {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
}
.jbl-content-section__text p {
    margin: 0;
}
.jbl-content-section__text p + p {
    margin-top: 1em;
}
.jbl-content-section__img {
    margin: 2em auto;
}
@media screen and (min-width: 768px) {
    .jbl-content-section + .jbl-content-section {
        margin-top: 6em;
    }
    .jbl-content-section__title {
        font-size: 27px;
    }
    .jbl-content-section__text {
        font-size: 27px;
    }
}
@media screen and (min-width: 1300px) {
    .jbl-content-section__title:before {
        right: calc(100% + 35px);
    }
}

.jbl-video-block {
    text-align: center;
    
    margin: 35px auto;
}
.jbl-video-block__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.jbl-video-block__item {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.jbl-video-block__item + .jbl-video-block__item {
    margin-top: 50px;
}
.jbl-video-block__img-wrapper {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
}
.jbl-video-block__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
}
.jbl-video-block__btn {
    margin-top: 25px;
}

.jbl-article-block__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px;
    gap: 30px;
    background: var(--color-dark)
}
.jbl-article-block__desc {
    flex: 1 1 51%;
}
.jbl-article-block__title {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.jbl-article-block__text {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
}
.jbl-article-block__btn {
    width: 100%;
    margin-top: 30px;
}
.jbl-article-block__img-wrapper {
    flex: 0 0 49%;
    position: relative;
    box-shadow: 0 0 50px 0 var(--color-red);
}
.jbl-article-block__img {
    width: 100%;
}
@media screen and (min-width: 768px) {
    .jbl-article-block__item {
        flex-direction: row;
        align-items: flex-start;
        padding: 70px 50px;
    }
    .jbl-article-block__title {
        font-size: 27px;
    }
    .jbl-article-block__btn {
        height: 70px;
        font-size: 36px;
    }
}