/* flex */
.flex {
    display: flex;
    flex-wrap: wrap;
}
.jc-start {
    justify-content: flex-start;
}
.jc-end {
    justify-content: flex-end;
}
.jc-between {
    justify-content: space-between;
}
.jc-center {
    justify-content: center;
}
.ai-start {
    align-items: flex-start;
}
.ai-end {
    align-items: flex-end;
}
.ai-center {
    align-items: center;
}
.gap {
    gap: 46px;
    row-gap: 40px;
}
.center {
    text-align: center;
}
.bold {
    font-weight: 600;
}
.upper {
    text-transform: uppercase;
}
.white-block * {
    color: #fff;
}
.obj {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.m-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Заголовоки */

h1, .h1 {
    font-family: "Russo One", sans-serif;
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 56px;
    font-weight: 400;
    line-height: 110%;
    text-transform: uppercase;
    margin-bottom: 32px;
}
h2, .h2 {
    font-family: "Russo One", sans-serif;
    color: #010202;
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    text-transform: uppercase;
    margin-bottom: 32px;
}
h2 span, .h2 span {
    color: rgba(1, 2, 2, 0.30);
}

/* container */

.container {
    width: 100%;
    max-width: 1880px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* padding */

.p-120-t {
    padding-top: 120px;
}
.p-120-b {
    padding-bottom: 120px;
}
.p-80-t {
    padding-top: 80px;
}
.p-80-b {
    padding-bottom: 80px;
}

/* br */

.br-60 {
    border-radius: 60px;
}

/* swiper */

.swiper-progress-line {
    width: 100%;
    height: 5px;
    background: rgba(1, 2, 2, 0.10);
    border-radius: 1000px;
    margin-top: 12px;
    transition-duration: 0ms;
    display: none;
}
.swiper-progress-line .swiper-scrollbar-drag {
    background: #EC5A10;
}
.white-block .swiper-progress-line {
    background: rgba(255, 255, 255, 0.50);
}
.white-block .swiper-progress-line .swiper-scrollbar-drag {
    background: #fff;
}

/* video */

.video-default {
    border-radius: 40px;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.video-default img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-default:before {
    content: "";
    background: url("../img/play-btn.svg") no-repeat center center / 100%;
    width: 70px;
    height: 70px;
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    z-index: 3;
}

/* content */

.content ul.flex {
    gap: 12px;
}
.content ul.flex li:not(:last-child) {
    margin-bottom: 0;
}
.content ul.flex li {
    width: calc(50% - 12px);
}
.content ul li {
    position: relative;
    padding-left: 20px;
}
.content ul li:not(:last-child) {
    margin-bottom: 16px;
}
.content ul li:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 0;
    background: #F16D26;
}
.content ol {
    counter-reset: listCounter;
}
.content ol li::before {
    content: counter(listCounter)'.';
    counter-increment: listCounter;
    color: #F16D26;
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    top: 0px;
    left: 0;
}
.content ol li {
    padding-left: 20px;
    position: relative;
}
.content ol li:not(:last-child) {
    margin-bottom: 16px;
}

/* button */

.button {
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
    border-radius: 1000px;
    background: #EC5A10;
    padding: 16px 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    border: none;
    cursor: pointer;
}
.small-button {
    border-radius: 1000px;
    background: #252525;
    padding: 8px 24px;
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    line-height: 140%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
}


/* absolute-img */

.ab-img {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1 !important;
}


/* breadcrumbs */

#breadcrumbs {
    padding-bottom: 32px;
}
.breadcrumbs-list li {
    display: inline;
}
.breadcrumbs-list li:not(:first-child) {
    padding-left: 18px;
    position: relative;
    margin-left: 8px;
}
.breadcrumbs-list li:not(:first-child):before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #EC5A10;
    position: absolute;
    top: 8px;
    left: 0;
}
.breadcrumbs-list li span {
    font-weight: 600;
}

@media (max-width: 1239px) {
    .gap {
        gap: 24px;
        row-gap: 18px;
    }
}

@media (max-width: 1024px) {
    h1, .h1 {
        font-size: 36px;
        margin-bottom: 24px;
    }
    h2, .h2 {
        font-size: 32px;
        margin-bottom: 24px;
    }
    .button {
        font-size: 16px;
    }
    .container {
        padding-left: 22px;
        padding-right: 22px;
    }
    .p-120-t {
        padding-top: 90px;
    }
    .p-120-b {
        padding-bottom: 90px;
    }
    .p-80-t {
        padding-top: 60px;
    }
    .p-80-b {
        padding-bottom: 60px;
    }
}


@media (max-width: 768px) {
    h1, .h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    h2, .h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }
    .button {
        width: 100%;
        font-size: 14px;
        padding: 14px 40px;
    }
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .p-120-t {
        padding-top: 60px;
    }
    .p-120-b {
        padding-bottom: 60px;
    }
    .p-80-t {
        padding-top: 40px;
    }
    .p-80-b {
        padding-bottom: 40px;
    }
    .video-default:before {
        width: 60px;
        height: 60px;
    }
    #breadcrumbs {
        padding: 6px 0 20px 0;
    }
    .breadcrumbs-list {
        gap: 8px;
    }
    .breadcrumbs-list li:not(:first-child) {
        padding-left: 14px;
    }
    .breadcrumbs-list li:not(:first-child):before {
        top: 6px;
    }
    .breadcrumbs-list li:not(:first-child) {
        margin-left: 4px;
    }
}