body {
    margin: 0;
    color: #202124;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    overflow-x: hidden;
}

:root {
    --caption-font-size: 32px;
    --caption-font-size-sm: 24px;
    --spacing-small: 15px;
    --transition-speed: .3s;
}

.client-motobaku {
    --brand-accent: #e63619;
    --brand-ink: #111827;
}

#page-preloader {
    background: #2e2e2e;
    height: 100%;
    inset: 0;
    opacity: 1;
    position: fixed;
    transition: opacity 200ms ease, visibility 200ms ease;
    visibility: visible;
    width: 100%;
    z-index: 100500;
}

#page-preloader.is-hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

#page-preloader .spinner {
    animation: spin 2.5s infinite linear;
    border: 3px solid transparent;
    border-radius: 50%;
    border-top-color: #e7e4d7;
    display: block;
    height: 100px;
    left: 50%;
    margin-left: -50px;
    margin-top: -50px;
    position: absolute;
    top: 50%;
    width: 100px;
    z-index: 1001;
}

#page-preloader .spinner::before,
#page-preloader .spinner::after {
    border: 3px solid transparent;
    border-radius: 50%;
    content: "";
    position: absolute;
}

#page-preloader .spinner::before {
    animation: spin 2s infinite linear;
    border-top-color: #e63619;
    inset: 5px;
}

#page-preloader .spinner::after {
    animation: spin 1s infinite linear;
    border-top-color: #efa96b;
    inset: 15px;
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.web-tracking-frame {
    border: 0;
    display: none;
    height: 0;
    visibility: hidden;
    width: 0;
}

.container,
.web-section {
    padding-left: 25px;
    padding-right: 25px;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

.page-wrapper .page-main {
    flex-grow: 1;
}

.section-title {
    display: block;
    margin-bottom: 25px;
    position: relative;
}

.section-title img {
    margin-bottom: 20px;
}

.section-title span {
    color: #e63619;
    display: block;
    font: normal 700 18px/1 Oswald;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.logo {
    display: inline-block;
    position: relative;
}

.logo__link {
    align-items: center;
    color: #e63619;
    display: flex;
    text-decoration: none;
}

.logo__link:hover,
.logo__link:focus-visible {
    text-decoration: none;
}

.logo__icon {
    flex: 0 0 auto;
    height: 100px;
    margin-right: 15px;
    width: 100px;
}

.logo__icon img {
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.logo__placeholder {
    align-items: center;
    background: #e63619;
    color: #ffffff;
    display: inline-flex;
    font: normal 700 42px/1 Oswald;
    height: 100%;
    justify-content: center;
    text-transform: uppercase;
    width: 100%;
}

.logo__text {
    color: #fff;
    font: normal 700 24px/1 Oswald;
    margin-top: 5px;
    text-transform: uppercase;
}

.support {
    display: block;
    position: relative;
}

.support__link {
    align-items: flex-start;
    background: #222;
    border-radius: 3px;
    display: flex;
    justify-content: flex-start;
    padding: 25px;
    text-decoration: none;
    transition: .5s;
}

.support__link:hover,
.support__link:focus-visible {
    background: #e63619;
    text-decoration: none;
}

.support__desc {
    color: #fff;
    padding-left: 20px;
}

.support__label {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    font-weight: 400;
}

.support__phone {
    color: #fff;
    font: normal 500 22px/1.71 Oswald;
    text-transform: uppercase;
}

.list-decor,
.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.list-decor > li {
    display: flex;
    position: relative;
    transition: .3s;
}

.list-decor > li + li,
.info-list > li + li {
    margin-top: 30px;
}

.list-decor > li::before {
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='8 5 13 10 8 15' fill='%23fff'/%3E%3C/svg%3E") no-repeat center/15px 15px #222;
    border-radius: 1px;
    content: "";
    flex: 0 0 17px;
    height: 17px;
    margin-right: 15px;
    transition: .3s;
    width: 17px;
}

.list-decor > li:hover::before {
    background-color: #e63619;
}

.list-decor > li > a {
    color: rgba(255, 255, 255, .7);
    font: normal 400 16px/1.1 Oswald;
    text-decoration: none;
    transition: .3s;
}

.list-decor > li > a:hover,
.list-decor > li > a:focus-visible {
    color: rgba(255, 255, 255, .6);
}

.info-list-item__value {
    color: rgba(255, 255, 255, .7);
    font: normal 400 16px/1.5 Oswald;
}

.page-header {
    background: #222;
    /* border-bottom: 1px solid rgba(255, 255, 255, .25); */
    display: block;
    left: 0;
    position: fixed;
    top: 0;
    transition: background-color var(--transition-speed), border-color var(--transition-speed), box-shadow var(--transition-speed);
    width: 100%;
    z-index: 1000;
}

.page-header.is-scrolled,
.page-header.page-header-transparent.is-scrolled {
    background: #222;
    border-bottom-color: rgba(255, 255, 255, .18);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
}

.page-header__inner {
    align-items: center;
    border: 0;
    display: flex;
    justify-content: space-between;
}

.page-header__left {
    padding-left: 50px;
}

.page-header__center {
    align-items: center;
    display: flex;
    justify-content: center;
    padding-right: 20px;
}

.page-header.page-header-transparent {
    background: transparent;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
}

.page-header .logo__icon,
.page-header .page-header__right .web-menu-toggle {
    transition: height 420ms ease, width 420ms ease;
}

.page-header.is-scrolled .logo__icon,
.page-header.is-scrolled .page-header__right .web-menu-toggle {
    height: 60px;
    width: 60px;
}

.menu-btn {
    background: #e63619;
}

.page-footer {
    background: #0f0f0f;
}

.page-footer__top {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    padding: 54px 0 48px;
}

.page-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: block;
    padding: 22px 0;
    position: relative;
}

.page-footer__column {
    margin-top: 12px;
}

.page-footer__menu {
    padding-left: 20px;
}

.page-footer__menu .list-decor > li > a {
    white-space: nowrap;
}

.page-footer__latest,
.page-footer__info {
    padding-left: 48px;
}

.page-footer__brand-logo {
    margin-bottom: 24px;
}

.page-footer__motto {
    margin: 0 0 24px;
    max-width: 310px;
}

.page-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
}

.social-list__link {
    align-items: center;
    background: #222;
    border-radius: 3px;
    color: #fff;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
    width: 42px;
}

.social-list__link:hover,
.social-list__link:focus-visible {
    background: #e63619;
    color: #fff;
    text-decoration: none;
}

.site-icon {
    display: block;
    height: 20px;
    width: 20px;
}

.footer-location-list {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
}

.footer-location-list > li + li {
    margin-top: 14px;
}

.footer-location-list a,
.footer-location-list span {
    color: rgba(255, 255, 255, .7);
    display: block;
    font: normal 400 15px/1.5 Oswald;
    text-decoration: none;
}

.footer-location-list a:hover,
.footer-location-list a:focus-visible {
    color: #fff;
    text-decoration: none;
}

.footer-latest-posts__list {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-latest-posts__list li {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 58px minmax(0, 1fr);
}

.footer-latest-posts__thumb {
    aspect-ratio: 1;
    background: #222;
    border-radius: 4px;
    display: block;
    overflow: hidden;
}

.footer-latest-posts__thumb img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.footer-latest-posts__title {
    color: rgba(255, 255, 255, .82);
    display: block;
    font: normal 500 15px/1.35 Oswald;
    text-decoration: none;
}

.footer-latest-posts__title:hover,
.footer-latest-posts__title:focus-visible {
    color: #fff;
    text-decoration: none;
}

.footer-latest-posts__list span,
.footer-latest-posts__empty {
    color: rgba(255, 255, 255, .48);
    display: block;
    font-size: 13px;
    line-height: 1.4;
    margin-top: 4px;
}

.footer-map-grid {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.footer-map-window {
    background: #181818;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.footer-map-window__frame {
    border: 0;
    display: block;
    filter: none;
    height: clamp(120px, 10vw, 165px);
    width: 100%;
}

.footer-map-window__link {
    background: rgba(255, 255, 255, .92);
    border-radius: 3px;
    color: #4b5563;
    font: normal 600 13px/1.2 Oswald;
    left: 10px;
    padding: 7px 10px;
    position: absolute;
    text-decoration: none;
    top: 10px;
}

.footer-map-window__link:hover,
.footer-map-window__link:focus-visible {
    color: #202124;
    text-decoration: none;
}

.home-about {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    margin-bottom: 56px;
    max-width: 1180px;
}

.home-about-image {
    border-radius: 8px;
    display: block;
    height: auto;
    width: 100%;
}

.home-about-main-gallery {
    min-width: 0;
    overflow: hidden;
}

.home-about-main-images.home-about-main-images--mobile-only {
    display: none;
}

.home-about-main-images--stack {
    display: grid;
    gap: 16px;
    min-width: 0;
}

.home-about-main-gallery .carousel-item {
    aspect-ratio: 4 / 5;
}

.home-about-main-gallery .home-about-image {
    /* height: 100%; */
    object-fit: cover;
}

@media (min-width: 641px) {
    .home-about-image--hide-desktop {
        display: none;
    }

    .home-about--images-hide-desktop {
        grid-template-columns: minmax(0, 1fr);
    }
}

.home-about-content h2 {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 16px;
}

.home-rich-text {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.7;
}

.home-rich-text p {
    margin: 0 0 16px;
}

.home-about-features {
    display: grid;
    gap: 36px 54px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin-top: 32px;
}

.home-feature-card {
    align-items: center;
    border: 0;
    border-radius: 0;
    display: flex;
    gap: 18px;
    min-width: 0;
    padding: 0;
}

.home-feature-card-upper {
    grid-column: span 3;
}

.home-feature-card-lower {
    grid-column: span 2;
}

.home-feature-card img {
    flex: 0 0 auto;
    height: 72px;
    object-fit: contain;
    width: 72px;
}

.home-feature-card div {
    display: grid;
    gap: 4px;
}

.home-feature-card span {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
}

.home-about-gallery {
    --home-about-gallery-visible: 4;
    background: #ffffff;
    grid-column: 1 / -1;
    margin-top: 24px;
    overflow: hidden;
    padding: 20px;
    position: relative;
}

.home-about-gallery__viewport {
    overflow: hidden;
    width: 100%;
}

.home-about-gallery__track {
    display: flex;
    gap: 12px;
    transform: translate3d(0, 0, 0);
    transition: transform 720ms cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.home-about-gallery__item {
    flex: 0 0 calc((100% - (12px * (var(--home-about-gallery-visible) - 1))) / var(--home-about-gallery-visible));
    min-width: 0;
}

.home-about-gallery picture,
.home-about-gallery img {
    display: block;
}

.home-about-gallery img {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
}

.home-about-gallery__control {
    align-items: center;
    background: #e63619;
    border: 0;
    border-radius: 3px;
    color: #ffffff;
    display: inline-flex;
    font-size: 34px;
    height: 46px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color var(--transition-speed);
    width: 46px;
    z-index: 2;
}

.home-about-gallery__control:hover,
.home-about-gallery__control:focus-visible {
    background: #222222;
}

.home-about-gallery.is-static .home-about-gallery__control {
    display: none;
}

.home-about-gallery__control--prev {
    left: 8px;
}

.home-about-gallery__control--next {
    right: 8px;
}

.home-training-options {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
    margin-bottom: 56px;
    max-width: 1180px;
}

.home-training-options h2 {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 12px;
}

.home-training-options p {
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 20px;
}

.home-training-options-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-training-options-grid figure {
    margin: 0;
}

.home-training-options-grid img {
    border-radius: 8px;
    display: block;
    object-fit: cover;
    width: 100%;
}

.home-training-options-grid figcaption {
    font-weight: 700;
    margin-top: 8px;
}

.home-training-options-embed {
    align-items: center;
    background: #111827;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    min-height: 280px;
    padding: 24px;
}

.home-training-options-embed a {
    color: #ffffff;
    font-weight: 700;
}

.home-collaboration {
    align-items: center;
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    margin-bottom: 56px;
    max-width: 1180px;
}

.home-collaboration-image {
    display: block;
    height: auto;
    width: 100%;
}

.home-collaboration-content h2 {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 18px;
}

.home-partners {
    max-width: 1180px;
}

.home-partners-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.home-partner-item {
    align-items: center;
    border: 1px solid #e6e8eb;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    min-height: 104px;
    padding: 18px;
}

.home-partner-item img {
    display: block;
    max-height: 64px;
    max-width: 100%;
    object-fit: contain;
}

@font-face {
    font-family: "Oswald";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/Oswald-Regular.woff2") format("woff2");
}

@font-face {
    font-family: "Oswald";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/Oswald-Bold.woff2") format("woff2");
}

@font-face {
    font-family: "Oxygen";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/Oxygen-Regular.woff2") format("woff2");
}

@font-face {
    font-family: "Oxygen";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/Oxygen-Bold.woff2") format("woff2");
}

.web-brand {
    display: flex;
}

.web-brand .responsive-media,
.web-brand .logo__icon {
    display: block;
}

.page-header .logo__icon {
    object-fit: contain;
}

.page-header__right {
    display: none;
}

.web-section {
    padding-bottom: 25px;
    padding-top: 25px;
}

.web-section-large {
    padding-bottom: 70px;
    padding-top: 70px;
}

.web-container-wide {
    max-width: 1420px;
}

.web-heading {
    color: #000;
    font: normal 700 48px/1.25 Oswald;
    letter-spacing: 0;
    margin: 0;
    text-transform: uppercase;
}

.home-legacy-hero {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 89%, 83% 100%, 0 91%);
    clip-path: polygon(0 0, 100% 0, 100% 89%, 83% 100%, 0 91%);
    display: block;
    overflow: hidden;
    position: relative;
}

.home-legacy-hero .carousel-inner {
    height: clamp(560px, 100vh, 950px);
    min-height: min(980px, 100svh);
    overflow: hidden;
}

.home-legacy-hero .carousel-item {
    min-height: inherit;
}

.slideshow-item::before {
    background: linear-gradient(90deg, rgba(10, 8, 8, .92), rgba(10, 8, 8, .48));
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.home-legacy-hero .slideshow-item__media {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.slideshow-item__stage {
    align-items: center;
    display: flex;
    inset: 0;
    position: absolute;
    width: 100%;
    z-index: 3;
}

.web-hero-heading {
    color: #fff;
    font: normal 600 70px/1.14 Oswald;
    letter-spacing: 0;
    margin: 0;
    text-transform: uppercase;
    overflow-wrap: break-word;
    word-break: normal;
}

.web-hero-heading-font-oswald {
    font-family: "Oswald", sans-serif;
}

.web-hero-heading-font-oxygen {
    font-family: "Oxygen", Arial, sans-serif;
}

.web-hero-heading-font-system {
    font-family: Arial, Helvetica, sans-serif;
}

.web-hero-heading-size-small {
    font-size: 52px;
}

.web-hero-heading-size-medium {
    font-size: 62px;
}

.web-hero-heading-size-large {
    font-size: 70px;
}

.web-hero-heading-size-extra {
    font-size: 82px;
}

.slideshow-item__content {
    display: block;
    position: static;
}

.slideshow-item__decor {
    bottom: 10%;
    color: transparent;
    display: block;
    font: normal 700 100px/1 Oswald;
    left: 50%;
    max-width: 100%;
    overflow-wrap: break-word;
    position: absolute;
    text-transform: uppercase;
    transform: translateX(-50%);
    -webkit-text-stroke: 1px rgba(255, 255, 255, .9);
    width: 100%;
    z-index: 0;
}

.slideshow-item__title,
.slideshow-item__desc,
.slideshow-item__btns {
    position: relative;
    z-index: 1;
}

.slideshow-item__title {
    margin-bottom: 25px;
}

.slideshow-item__title span {
    color: #e63619;
    font: normal 600 18px/1 Oswald;
    text-shadow: 0 0 3px rgba(255, 255, 255, .3);
    text-transform: uppercase;
}

.slideshow-item__desc {
    color: #fff;
    font: normal 300 22px/1.55 Oswald;
    margin-bottom: 50px;
}

.video-info__subtitle {
    font-family: "Oswald", sans-serif;
    font-style: normal;
    font-weight: 600;
    margin: 0;
}

.web-button {
    border: 0;
    border-radius: 3px;
    color: #fff;
    display: inline-flex;
    font: normal 500 18px/3.06 Oswald;
    height: 57px;
    justify-content: center;
    padding: 0 30px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}

.web-button::before {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='8 5 13 10 8 15' fill='%23fff'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px 15px;
    border-radius: 1px;
    content: "";
    height: 20px;
    margin-top: -10px;
    position: absolute;
    right: -10px;
    top: 50%;
    transition: .3s;
    width: 20px;
}

.web-button:hover,
.web-button:focus-visible {
    color: #fff;
    text-decoration: none;
}

.web-button-danger {
    background: #e63619;
}

.web-button-danger::before {
    background-color: #222;
}

.web-button-danger:hover,
.web-button-danger:focus-visible {
    background: #e94a30;
}

.web-button-secondary {
    background: #222;
}

.web-button-secondary::before {
    background-color: #e63619;
}

.web-button-secondary:hover,
.web-button-secondary:focus-visible {
    background: #2f2f2f;
}

.slideshow-item__btns .web-button + .web-button {
    margin-left: 35px;
}

.web-desktop-nav {
    align-items: center;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.web-desktop-nav > li > a,
.web-language-toggle {
    background: transparent;
    border: 0;
    color: #fff;
    display: block;
    font: normal 500 18px/3.89 Oswald;
    padding: 0 clamp(12px, 1.19792vw, 23px);
    text-decoration: none;
    text-transform: uppercase;
    transition: .3s;
}

.web-desktop-nav > li > a:hover,
.web-desktop-nav > li > a:focus-visible,
.web-language-toggle:hover,
.web-language-toggle:focus-visible {
    color: #e63619;
    text-decoration: none;
}

.web-language-menu .dropdown-menu {
    background: #fff;
    border: 0;
    border-radius: 3px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
    margin-top: 0;
    min-width: 110px;
    padding: 8px;
}

.web-language-menu .dropdown-item {
    border-radius: 2px;
    color: #222;
    font: normal 500 16px/1.2 Oswald;
    padding: 10px 12px;
    text-transform: uppercase;
}

.web-language-menu .dropdown-item.active,
.web-language-menu .dropdown-item:active {
    background: #e63619;
}

.web-menu-toggle {
    align-items: center;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, .25);
    border-right: 1px solid rgba(255, 255, 255, .25);
    box-sizing: border-box;
    color: #fff;
    display: flex;
    height: 122px;
    justify-content: center;
    padding: 0;
    width: 122px;
}

.web-offcanvas {
    background: #0f0f0f;
    color: rgba(255, 255, 255, .72);
    overflow: hidden;
    z-index: 1100;
}

.web-offcanvas-header {
    min-height: auto;
    padding: 12px 12px 4px;
}

.web-offcanvas .offcanvas-body {
    overflow: hidden;
    padding: 8px 24px 24px;
}

.web-offcanvas-close {
    background-color: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 3px;
    box-sizing: border-box;
    color: #fff;
    display: grid;
    height: 48px;
    place-items: center;
    margin: 0;
    opacity: 1;
    padding: 0;
    width: 48px;
}

.web-offcanvas-close-icon {
    display: block;
    height: 22px;
    position: relative;
    width: 22px;
}

.web-offcanvas-close-icon::before,
.web-offcanvas-close-icon::after {
    background: currentColor;
    border-radius: 1px;
    content: "";
    height: 2px;
    left: 1px;
    position: absolute;
    top: 10px;
    width: 20px;
}

.web-offcanvas-close-icon::before {
    transform: rotate(45deg);
}

.web-offcanvas-close-icon::after {
    transform: rotate(-45deg);
}

.web-offcanvas-close:hover,
.web-offcanvas-close:focus-visible {
    background-color: rgba(230, 54, 25, .22);
    box-shadow: 0 0 0 3px rgba(230, 54, 25, .28);
    opacity: 1;
}

.web-offcanvas .logo__text {
    color: #e63619;
}

.web-offcanvas-brand {
    margin-bottom: 18px;
}

.web-offcanvas-brand .logo,
.web-offcanvas-brand .logo__link {
    max-width: 100%;
}

.web-offcanvas-brand .logo__text {
    font-size: 20px;
    line-height: 1.1;
}

.web-offcanvas-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.web-offcanvas-nav > ul > li {
    margin-bottom: 9px;
}

.web-offcanvas-nav a,
.web-offcanvas-nav span,
.web-offcanvas-dropdown-toggle {
    background: transparent;
    border: 0;
    color: #fff;
    display: block;
    font: normal 700 14px/1.7 Oswald;
    padding: 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: .3s;
}

.web-offcanvas-nav a:hover,
.web-offcanvas-nav a:focus-visible,
.web-offcanvas-dropdown-toggle:hover,
.web-offcanvas-dropdown-toggle:focus-visible {
    color: #e63619;
}

.web-offcanvas-language .dropdown-menu {
    background: #181818;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 3px;
    margin-top: 8px;
    min-width: 120px;
    padding: 8px;
}

.web-offcanvas-language .dropdown-item {
    border-radius: 2px;
    font: normal 700 14px/1.2 Oswald;
    padding: 9px 12px;
}

.web-offcanvas-language .dropdown-item.active,
.web-offcanvas-language .dropdown-item:active {
    background: #e63619;
}

.web-offcanvas-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid rgb(255 255 255 / 14%);
    list-style: none;
}

.web-offcanvas-socials a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #fff;
    border: 1px solid rgb(255 255 255 / 24%);
    border-radius: 50%;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.web-offcanvas-socials a:hover,
.web-offcanvas-socials a:focus-visible {
    color: #fff;
    border-color: #e63619;
    background: #e63619;
}

.web-offcanvas-socials svg {
    width: 19px;
    height: 19px;
}

.web-footer-title {
    color: #fff;
    font: normal 500 22px Oswald;
    margin-bottom: 35px;
}

.web-gallery-link,
.web-gallery-link img {
    display: block;
    width: 100%;
}

.web-gallery-link img {
    height: auto;
}

.web-gallery-link img {
    object-fit: cover;
}

.web-gallery-modal .modal-content {
    background: #0f0f0f;
}

.web-gallery-modal .modal-header {
    border: 0;
    padding-bottom: 0;
}

.web-gallery-modal .modal-body {
    padding: 16px;
}

.web-gallery-modal img {
    display: block;
    height: auto;
    margin: 0 auto;
    max-height: calc(100vh - 140px);
    max-width: 100%;
}

.home-about-section,
.home-training-wrap,
.web-home-band {
    background: #fff;
}

.home-about,
.home-training-options,
.home-collaboration {
    margin-left: auto;
    margin-right: auto;
}

.home-about {
    align-items: start;
    max-width: none;
}

.home-about-image,
.home-about-gallery img,
.home-training-options-grid img {
    background: #171717;
}

.home-rich-text ul {
    padding-left: 24px;
}

.home-feature-card {
    background: transparent;
    box-shadow: none;
}

.home-feature-card strong {
    color: #222;
    display: block;
    font-size: 22px;
    line-height: 1.25;
}

.home-feature-card span {
    display: block;
}

.home-training-wrap {
    background: #f8f4f1;
}

.home-training-options-embed {
    background-image: linear-gradient(135deg, #111827, #31221f);
    background-position: center;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

.home-training-options-embed::before {
    background: rgba(0, 0, 0, .5);
    content: "";
    inset: 0;
    position: absolute;
}

.home-training-options-embed a {
    font-size: 20px;
    position: relative;
    z-index: 1;
}

.client-motobaku .home-training-options-embed {
    background: var(--brand-ink);
}

.web-team-preview {
    background: #f4f1ef;
}

.web-preview-heading {
    align-items: end;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    margin-bottom: 36px;
}

.web-preview-heading p {
    color: #555;
    font-size: 18px;
    margin: 0;
}

.web-team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

.web-team-member {
    background: #181615;
    color: #fff;
    flex: 0 1 calc((100% - 54px) / 4);
    max-width: calc((100% - 54px) / 4);
    min-width: 0;
    overflow: hidden;
    position: relative;
}

.web-team-grid--cols-1 .web-team-member {
    flex-basis: min(100%, 320px);
    max-width: 320px;
}

.web-team-grid--cols-2 .web-team-member {
    flex-basis: calc((100% - 18px) / 2);
    max-width: calc((100% - 18px) / 2);
}

.web-team-grid--cols-3 .web-team-member {
    flex-basis: calc((100% - 36px) / 3);
    max-width: calc((100% - 36px) / 3);
}

.web-team-grid--cols-4 .web-team-member {
    flex-basis: calc((100% - 54px) / 4);
    max-width: calc((100% - 54px) / 4);
}

.web-team-grid--cols-5 .web-team-member {
    flex-basis: calc((100% - 72px) / 5);
    max-width: calc((100% - 72px) / 5);
}

.web-team-grid--cols-6 .web-team-member {
    flex-basis: calc((100% - 90px) / 6);
    max-width: calc((100% - 90px) / 6);
}

.web-team-grid--cols-7 .web-team-member {
    flex-basis: calc((100% - 108px) / 7);
    max-width: calc((100% - 108px) / 7);
}

.web-team-member img {
    aspect-ratio: 3 / 4;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.web-team-member__placeholder {
    align-items: center;
    aspect-ratio: 3 / 4;
    background: #2a2421;
    color: #ffffff;
    display: flex;
    font: normal 700 42px/1 Oswald;
    justify-content: center;
    text-transform: uppercase;
    width: 100%;
}

.web-team-member__meta {
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .88));
    bottom: 0;
    left: 0;
    padding: 42px 14px 14px;
    position: absolute;
    right: 0;
}

.web-team-member h3,
.web-team-member p {
    letter-spacing: 0;
    margin: 0;
}

.web-team-member h3 {
    color: #fff;
    font-size: 20px;
}

.web-team-member p {
    color: rgba(255, 255, 255, .78);
    text-transform: uppercase;
}

.web-team-socials {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.web-team-socials a {
    align-items: center;
    background: rgba(255, 255, 255, .14);
    border-radius: 3px;
    color: #fff;
    display: inline-flex;
    height: 28px;
    justify-content: center;
    text-decoration: none;
    transition: background-color var(--transition-speed), color var(--transition-speed);
    width: 28px;
}

.web-team-socials a:hover,
.web-team-socials a:focus-visible {
    background: #e63619;
    color: #fff;
}

.web-social-icon {
    fill: none;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 18px;
}

.web-fleet-preview .video-thumb-grid__item {
    margin: 0;
}

.web-fleet-preview .video-info {
    max-width: 640px;
    padding: 36px 52px;
}

.web-fleet-preview .video-info__title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 22px;
}

.web-fleet-preview .video-info__subtitle {
    font-size: 27px;
    line-height: 1.35;
}

.web-fleet-preview .video-thumb-grid ul {
    gap: 11px;
}

.web-fleet-preview .video-thumb-grid__caption {
    font-size: 28px;
}

.section-video {
    display: block;
    position: relative;
}

.video-block {
    display: block;
    margin-left: auto;
    max-width: 80.7vw;
    position: relative;
}

.video-info {
    background: #fff;
    border-bottom: 3px solid #e63619;
    box-shadow: 0 5px 60px 11px rgba(0, 0, 0, .1);
    box-sizing: border-box;
    left: -12.25vw;
    max-width: 800px;
    padding: 50px 80px;
    position: absolute;
    top: 43%;
    transform: translateY(-50%);
    z-index: 1;
}

.video-info__title {
    color: #222;
    font: normal 700 30px Oswald;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.video-info__subtitle {
    color: #e63619;
    font-size: 32px;
    text-transform: uppercase;
}

.video-box {
    background: linear-gradient(135deg, #151313, #2a211f);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 78% 100%, 0 87%);
    height: 730px;
    width: 100%;
}

.video-box::before {
    background: rgba(0, 0, 0, .8);
    content: "";
    inset: 0;
    position: absolute;
}

.web-fleet-preview .video-thumb-grid__item img {
    aspect-ratio: 1 / 1;
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.web-fleet-preview .video-info__subtitle {
    text-align: left;
}

.web-fleet-stage {
    align-items: center;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.web-fleet-stage-copy {
    color: #fff;
    display: grid;
    gap: 10px;
    max-width: min(920px, 100%);
    padding: 24px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    z-index: 1;
}

.web-fleet-stage-image {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
    z-index: 0;
}

.web-fleet-stage-image + .web-fleet-stage-copy::before {
    background: rgba(0, 0, 0, .58);
    content: "";
    inset: 0;
    position: absolute;
    z-index: -1;
}

.web-fleet-stage-copy span {
    color: #e63619;
    font: 500 18px/1.2 Oswald;
}

.web-fleet-stage-copy strong {
    color: #fff;
    font: 700 clamp(34px, 4vw, 72px)/1 Oswald;
    letter-spacing: 0;
}

.web-fleet-stage-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-top: 14px;
}

.home-collaboration-section .home-collaboration {
    align-items: center;
}

.home-collaboration-image {
    max-height: 620px;
    object-fit: contain;
}

.section-brands .section-title {
    margin-bottom: 36px;
}

.section-brands {
    display: block;
    padding-bottom: 50px;
    position: relative;
}

.home-partners {
    max-width: none;
}

.home-partner-item {
    background: transparent;
    border-color: rgba(32, 33, 36, .06);
    box-shadow: none;
    min-height: 150px;
    transition: border-color var(--transition-speed), background-color var(--transition-speed);
}

.home-partner-item:hover,
.home-partner-item:focus-visible {
    background: rgba(32, 33, 36, .015);
    border-color: rgba(32, 33, 36, .1);
    text-decoration: none;
}

.home-partner-item img {
    max-height: 96px;
}

.page-footer .support__desc span {
    display: block;
}

.page-footer .support__desc {
    padding-left: 0;
}

.web-page-hero {
    align-items: end;
    background: #151313;
    color: #fff;
    display: grid;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 89%, 83% 100%, 0 91%);
    clip-path: polygon(0 0, 100% 0, 100% 89%, 83% 100%, 0 91%);
    min-height: 560px;
    overflow: hidden;
    position: relative;
}

.web-page-hero::after {
    background: linear-gradient(90deg, rgba(10, 8, 8, .92), rgba(10, 8, 8, .48));
    content: "";
    inset: 0;
    position: absolute;
}

.web-page-hero > picture {
    display: block;
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.web-page-hero > picture > img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.web-page-hero__content {
    max-width: 720px;
    padding: 210px 0 92px;
    position: relative;
    z-index: 1;
}

.web-page-hero__content span {
    color: #e63619;
    display: inline-block;
    font: 500 18px/1.2 Oswald;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.web-page-hero__content h1 {
    color: #fff;
    font-size: clamp(42px, 5vw, 86px);
    letter-spacing: 0;
    line-height: .98;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.web-page-hero__content p {
    color: rgba(255, 255, 255, .86);
    font-size: 20px;
    margin: 0;
    max-width: 620px;
}

.web-page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.web-page-hero__content .web-page-hero__heading.web-hero-heading-font-oxygen {
    font-family: Oxygen, sans-serif;
}

.web-page-hero__content .web-page-hero__heading.web-hero-heading-font-system {
    font-family: Arial, sans-serif;
}

.web-page-hero__content .web-page-hero__heading.web-hero-heading-font-oswald {
    font-family: Oswald, sans-serif;
}

.web-page-hero__content .web-page-hero__heading.web-hero-heading-size-small {
    font-size: 52px;
}

.web-page-hero__content .web-page-hero__heading.web-hero-heading-size-medium {
    font-size: 62px;
}

.web-page-hero__content .web-page-hero__heading.web-hero-heading-size-large {
    font-size: 70px;
}

.web-page-hero__content .web-page-hero__heading.web-hero-heading-size-extra {
    font-size: 82px;
}

.web-page-placeholder {
    background: #fff;
}

.web-page-placeholder--about > .web-section {
    padding-block: 0;
}

.web-page-placeholder--about .home-about-section > .web-section-large,
.web-page-placeholder--about .web-team-preview > .web-section,
.web-page-placeholder--about .about-piecharts {
    padding-block: 36px;
}

.web-page-placeholder > .container > .section-video,
.web-page-placeholder > .container > .web-team-preview {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.web-packages {
    display: grid;
    gap: 70px;
}

.web-package-plan {
    display: grid;
    gap: clamp(28px, 4vw, 56px);
    grid-template-columns: minmax(270px, 1fr) minmax(0, 2fr);
}

.web-package-title {
    background: #e63619;
    border-bottom: 3px solid #222;
    box-shadow: 0 5px 32px rgba(0, 0, 0, .1);
    margin-bottom: 28px;
    padding: 15px 20px;
}

.web-package-title h2 {
    color: #fff;
    font: normal 500 22px/1.2 Oswald;
    letter-spacing: 0;
    margin: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.web-packages-empty h2 {
    color: #161313;
    font-size: clamp(30px, 3vw, 48px);
    letter-spacing: 0;
    line-height: 1.04;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.web-package-plan__summary p,
.web-packages-empty p {
    color: #514743;
    font-size: 18px;
    margin: 0;
}

.web-package-features {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
}

.web-package-features li {
    color: #211b19;
    display: block;
    padding-left: 25px;
    position: relative;
}

.web-package-features li::before {
    background: #e63619;
    clip-path: polygon(0 45%, 34% 73%, 100% 0, 100% 33%, 34% 100%, 0 74%);
    content: "";
    height: 16px;
    left: 0;
    position: absolute;
    top: 5px;
    width: 16px;
}

.web-package-plan__vehicles {
    min-width: 0;
}

.web-package-plan__vehicles h3 {
    color: #161313;
    font-size: 22px;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0 0 22px;
    text-transform: uppercase;
}

.web-package-plan__no-vehicles {
    color: #685955;
    margin: 0;
}

.web-package-vehicles {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.web-package-vehicle {
    background: #f8f8f8;
    margin: 0;
    min-width: 0;
    transition: .3s;
}

.web-package-vehicle:hover,
.web-package-vehicle:focus-within {
    background: #fff;
    box-shadow: 0 5px 32px rgba(0, 0, 0, .1);
}

.web-package-vehicle img,
.web-package-vehicle__placeholder {
    aspect-ratio: 3 / 2;
    background: #ddd4d0;
    display: block;
    object-fit: cover;
    width: 100%;
}

.web-package-vehicle__head {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    min-height: 132px;
    padding: 40px;
}

.web-package-vehicle__name {
    color: #222;
    display: block;
    font: normal 500 22px/1.1 Oswald;
    text-transform: uppercase;
}

.web-package-vehicle__manufacturer,
.web-package-vehicle__category {
    color: #666;
    display: block;
    font: normal 300 12px/1.2 Oswald;
    margin-top: 6px;
    text-transform: uppercase;
}

.web-package-vehicle__category {
    color: #222;
    font-size: 14px;
}

.web-package-vehicle__category b {
    color: #e63619;
    font-weight: 300;
    text-decoration: underline;
}

.web-package-vehicle__price {
    color: #e63619;
    flex: 0 0 auto;
    font: normal 500 30px/1.1 Oswald;
    margin-top: -10px;
    text-transform: uppercase;
}

.web-package-vehicle__media {
    display: block;
    position: relative;
}

.web-packages-empty {
    background: #f6f2f0;
    max-width: 720px;
    padding: clamp(24px, 4vw, 48px);
}

.web-article-preview {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.web-article-preview article {
    background: #f5f1ef;
    color: #222;
    min-width: 0;
    overflow: hidden;
}

.web-article-preview img {
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    width: 100%;
}

.web-article-preview div {
    padding: 24px;
}

.web-article-preview span,
.web-contact-preview span {
    color: #e63619;
    font-weight: 700;
    text-transform: uppercase;
}

.web-article-preview h2,
.web-contact-preview h2 {
    color: #222;
    font-size: 30px;
    letter-spacing: 0;
    line-height: 1.1;
    margin: 12px 0;
}

.web-article-preview p,
.web-contact-preview p {
    color: #555;
    margin: 0;
}

.web-contact-preview {
    background: #f5f1ef;
    display: grid;
    gap: 36px;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    padding: clamp(28px, 4vw, 64px);
}

.web-contact-preview ul {
    background: #1b1817;
    color: #fff;
    display: grid;
    font: 500 24px/1.3 Oswald;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: clamp(24px, 3vw, 42px);
}

.web-contact-layout {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 3fr) minmax(0, 9fr);
    margin-top: 2rem;
}

.web-contact-sidebar {
    display: grid;
    gap: 18px;
}

.web-contact-details {
    background: var(--brand-accent, #e63619);
    color: #ffffff;
    padding: 22px;
}

.web-contact-details h2 {
    color: inherit;
    font-family: var(--web-heading-font);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.1;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.web-contact-details p {
    line-height: 1.55;
    margin: 0;
}

.web-contact-details p + p {
    margin-top: 6px;
}

.web-contact-details a {
    color: inherit;
}

.web-contact-map {
    aspect-ratio: 1 / 0.78;
    background: #eeeeee;
    overflow: hidden;
}

.web-contact-map iframe {
    border: 0;
    filter: none;
    height: 100%;
    width: 100%;
}

.web-contact-form {
    background: #fff;
    border-bottom: 2px solid #e63619;
    box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, .08);
    padding: clamp(1.25rem, 4vw, 3rem);
}

.web-contact-form .form-label {
    color: #4b5563;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.web-contact-form__title {
    margin: 0 auto 1.5rem;
    max-width: 34rem;
    text-align: center;
}

.web-contact-form__title span {
    color: #e63619;
    display: block;
    font-weight: 700;
    margin-bottom: .35rem;
}

.web-contact-form__title h2 {
    color: #111;
    font-family: var(--web-heading-font);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin: 0;
}

.web-contact-form .form-control {
    border-radius: 4px;
}

.video-thumb-grid ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-small);
    list-style: none;
    margin: 0;
    padding: 0;
}

.video-thumb-grid li {
    flex: 1 1 calc(25% - var(--spacing-small));
}

.video-thumb-grid__item {
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    transition: transform var(--transition-speed);
}

.video-thumb-grid__item:hover {
    transform: scale(1.03);
}

.video-thumb-grid__caption {
    color: #fff;
    font-size: var(--caption-font-size);
    font-weight: 700;
    left: 50%;
    line-height: 1;
    margin: 0;
    position: absolute;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0, 0, 0, .7);
    top: 50%;
    transform: translate(-50%, -50%);
}

.text-accent {
    color: #e63619;
}

.text-nowrap {
    white-space: nowrap;
}

.web-blog-grid {
    display: grid;
    gap: 64px 30px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card {
    display: block;
    position: relative;
}

.news-card__media {
    display: block;
    margin-bottom: 30px;
    position: relative;
}

.news-card__img {
    aspect-ratio: 4 / 3;
    display: block;
    height: auto;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.news-card__placeholder,
.article__placeholder {
    background: linear-gradient(135deg, #f5f1ef, #ddd4d0);
}

.news-card__avatar,
.article__avatar {
    background: #ffffff;
    border: 3px solid #ffffff;
    border-radius: 50%;
    bottom: -35px;
    display: block;
    height: 70px;
    object-fit: cover;
    overflow: hidden;
    position: absolute;
    right: 20px;
    width: 70px;
    z-index: 3;
}

.news-card__intro {
    display: block;
    position: relative;
}

.news-card__info,
.article__info {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 20px;
}

.news-card__author,
.article__author {
    color: #e63619;
    font-family: "Oswald", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}

.news-card__date,
.article__date {
    border-left: 1px solid #dddddd;
    color: #666666;
    font-family: "Oswald", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    margin-left: 13px;
    padding-left: 13px;
}

.news-card__title {
    margin: 0 0 10px;
}

.news-card__title a {
    color: #111111;
    font-family: "Oswald", sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.38;
    text-decoration: none;
    transition: color .3s ease;
}

.news-card__title a:hover,
.news-card__title a:focus-visible {
    color: #e63619;
}

.news-card__desc {
    color: #777777;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: 35px;
}

.news-card__more {
    display: flex;
    position: relative;
}

.news-card__more::before {
    background: #dddddd;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 1;
}

.news-card__more a {
    align-items: center;
    background: #ffffff;
    color: #e63619;
    display: inline-flex;
    font-family: "Oswald", sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding-right: 20px;
    position: relative;
    text-decoration: none;
    transition: color .3s ease;
    z-index: 2;
}

.news-card__more a::before {
    align-items: center;
    background: #e63619;
    color: #ffffff;
    content: "›";
    display: inline-flex;
    font-size: 20px;
    height: 20px;
    justify-content: center;
    line-height: 1;
    margin-right: 10px;
    width: 20px;
}

.news-card__more a:hover,
.news-card__more a:focus-visible {
    color: #222222;
}

.news-card__more a:hover::before,
.news-card__more a:focus-visible::before {
    background: #222222;
}

.web-blog-pagination {
    margin-top: 56px;
}

.web-blog-empty {
    border-left: 2px solid #e63619;
    padding-left: 24px;
}

.web-blog-empty h2 {
    color: #111111;
    font-family: "Oswald", sans-serif;
    font-size: 32px;
    margin: 0 0 10px;
}

.web-blog-empty p {
    color: #777777;
    margin: 0;
}

.web-blog-layout {
    align-items: start;
    display: grid;
    gap: 54px;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
}

.article {
    display: block;
    position: relative;
}

.article__media {
    display: block;
    margin-bottom: 30px;
    position: relative;
}

.article__img {
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
    width: 100%;
}

.article__title {
    color: #111111;
    font-family: "Oswald", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.13;
    margin: 0 0 28px;
}

.article__content {
    color: #777777;
    font-family: "Oswald", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}

.article__content h1,
.article__content h2,
.article__content h3,
.article__content h4 {
    color: #111111;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    line-height: 1.25;
    margin: 32px 0 14px;
}

.article__content p,
.article__content ul,
.article__content ol {
    margin-bottom: 18px;
}

.article__content hr {
    border: 0;
    border-top: 1px solid #dddddd;
    margin: 28px 0;
    opacity: 1;
}

.article__tags {
    align-items: center;
    border-top: 1px solid #dddddd;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 42px;
    padding-top: 24px;
}

.article__tags b {
    color: #222222;
    font-family: "Oswald", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.article__tags ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.article__tags span {
    color: #777777;
    font-family: "Oswald", sans-serif;
    font-size: 14px;
}

.section-article-reviews {
    margin-top: 85px;
}

.section-article-reviews .uk-h2 {
    border-left: 1px solid #e63619;
    color: #111111;
    font-family: "Oswald", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.13;
    margin: 0 0 25px;
    padding-left: 22px;
}

.comments-empty,
.latest-news-empty {
    color: #777777;
    font-family: "Oswald", sans-serif;
}

.news-card__comments {
    color: #777777;
    font-family: "Oswald", sans-serif;
    font-size: 14px;
    margin-top: 12px;
}

.news-card__categories {
    color: #888888;
    font-family: "Oswald", sans-serif;
    font-size: 12px;
    letter-spacing: 0.04em;
    margin-top: 10px;
    text-transform: uppercase;
}

.web-comments-count {
    color: #777777;
    font-size: 0.65em;
    font-weight: 400;
}

.web-comments__list,
.web-comment__children {
    list-style: none;
    margin: 0;
    padding: 0;
}

.web-comment {
    margin-top: 18px;
}

.web-comment--depth-1,
.web-comment--depth-2,
.web-comment--depth-3,
.web-comment--depth-4 {
    margin-left: 28px;
}

.web-comment__card {
    background: #ffffff;
    border: 1px solid #dddddd;
    padding: 20px;
}

.web-comment__card--pending {
    border-style: dashed;
    margin-bottom: 18px;
}

.web-comment__header {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

.web-comment__header strong {
    color: #111111;
    font-family: "Oswald", sans-serif;
    font-size: 17px;
}

.web-comment__header time {
    color: #888888;
    font-size: 13px;
}

.web-comment__body {
    color: #555555;
    line-height: 1.65;
    margin-top: 12px;
    overflow-wrap: anywhere;
    white-space: pre-line;
}

.web-comment__reply {
    background: transparent;
    border: 0;
    color: #e63619;
    font-family: "Oswald", sans-serif;
    margin-top: 12px;
    padding: 0;
}

.web-comment__pending-badge {
    background: #fff3cd;
    color: #725c00;
    font-size: 12px;
    padding: 4px 8px;
}

.web-comment--deleted > .web-comment__card {
    background: #f7f7f7;
}

.web-comments__pagination {
    margin-top: 28px;
}

.web-comment-form {
    border-top: 1px solid #dddddd;
    margin-top: 38px;
    padding-top: 28px;
}

.web-comment-form label {
    color: #222222;
    display: block;
    font-family: "Oswald", sans-serif;
    margin-bottom: 8px;
}

.web-comment-form input,
.web-comment-form textarea {
    border: 1px solid #cccccc;
    border-radius: 0;
    display: block;
    padding: 12px 14px;
    width: 100%;
}

.web-comment-form textarea {
    resize: vertical;
}

.web-comment-form small {
    color: #777777;
}

.web-comment-form__grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 18px;
}

.web-comment-form__replying {
    align-items: center;
    background: #f5f5f5;
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    padding: 10px 12px;
}

.web-comment-form__replying[hidden] {
    display: none;
}

.web-comment-form__replying button {
    background: transparent;
    border: 0;
    color: #e63619;
}

.web-comment-form__feedback {
    margin: 12px 0;
}

.web-comment-form__feedback.is-error {
    color: #b42318;
}

.web-comment-form__feedback.is-success {
    color: #16794b;
}

.web-comment-form__honeypot {
    height: 1px;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    width: 1px;
}

.web-blog-sidebar {
    position: sticky;
    top: 130px;
}

.widjet {
    display: block;
}

.widjet__title h3 {
    border-left: 1px solid #e63619;
    color: #111111;
    font-family: "Oswald", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 30px;
    padding-left: 18px;
}

.latest-news-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.latest-news-list > li + li {
    margin-top: 40px;
}

.latest-news-item {
    display: flex;
    justify-content: flex-start;
}

.latest-news-item__thumb {
    flex: 0 0 90px;
    height: 90px;
    overflow: hidden;
    width: 90px;
}

.latest-news-item__thumb img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.latest-news-item__info {
    padding-left: 22px;
}

.latest-news-item__title {
    color: #111111;
    display: block;
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.44;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color .3s ease;
}

.latest-news-item__title:hover,
.latest-news-item__title:focus-visible {
    color: #e63619;
}

.latest-news-item__date {
    color: #666666;
    font-family: "Oswald", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
}

.about-piecharts {
    padding: 36px 0;
}

.about-piechart {
    max-width: 1100px;
    margin-inline: auto;
    text-align: center;
}

.about-piechart + .about-piechart {
    margin-top: 44px;
}

.about-piechart__header {
    max-width: 720px;
    margin: 0 auto 28px;
}

.about-piechart__header h2 {
    margin: 0;
    font-family: "Oswald", sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.05;
}

.about-piechart__header p {
    margin: 14px 0 0;
    color: #666;
    line-height: 1.7;
}

.about-piechart__layout {
    width: 100%;
}

.about-piechart__body {
    display: flex;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    gap: clamp(24px, 4vw, 52px);
    align-items: center;
}

.about-piechart__mount {
    display: block;
    flex: 0 0 auto;
    filter: drop-shadow(0 14px 25px rgb(24 36 51 / 8%));
}

.about-piechart--size-small .about-piechart__mount {
    width: 300px;
}

.about-piechart--size-medium .about-piechart__mount {
    width: 390px;
}

.about-piechart--size-large .about-piechart__mount {
    width: 480px;
}

.about-piechart--align-left .about-piechart__body {
    margin-left: 0;
    margin-right: auto;
}

.about-piechart--align-right .about-piechart__body {
    margin-left: auto;
    margin-right: 0;
}

.about-piechart__legend {
    display: grid;
    flex: 0 1 260px;
    min-width: 210px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left;
}

.about-piechart--legend-left .about-piechart__legend {
    order: -1;
}

.about-piechart--legend-top .about-piechart__body,
.about-piechart--legend-bottom .about-piechart__body {
    flex-direction: column;
    gap: 16px;
}

.about-piechart--legend-top .about-piechart__legend {
    order: -1;
}

.about-piechart--legend-top .about-piechart__legend,
.about-piechart--legend-bottom .about-piechart__legend {
    display: flex;
    flex: 0 1 auto;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 760px;
}

.about-piechart__legend li {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 9px 10px;
    border-radius: 6px;
}

.about-piechart__swatch {
    width: 12px;
    height: 12px;
}

.about-piechart__legend strong {
    font-family: "Oswald", sans-serif;
}

.about-piechart--align-left {
    margin-left: 0;
    text-align: left;
}

.about-piechart--align-left .about-piechart__layout,
.about-piechart--align-right .about-piechart__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: clamp(40px, 7vw, 96px);
    align-items: center;
}

.about-piechart--align-right .about-piechart__layout {
    grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
}

.about-piechart--align-left .about-piechart__header,
.about-piechart--align-right .about-piechart__header {
    max-width: 480px;
    margin: 0;
}

.about-piechart--align-left .about-piechart__body {
    grid-column: 1;
    grid-row: 1;
}

.about-piechart--align-left .about-piechart__header {
    grid-column: 2;
    grid-row: 1;
}

.about-piechart--align-right {
    margin-right: 0;
    text-align: left;
}

.about-piechart--align-right .about-piechart__header {
    grid-column: 1;
    grid-row: 1;
}

.about-piechart--align-right .about-piechart__body {
    grid-column: 2;
    grid-row: 1;
}

.about-piechart .apexcharts-legend-text {
    color: inherit !important;
}
