html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

:root {
    --main-txt-color: #39393c;
    --main-color: #f87316;
    --main-color-hover: #bd6628;
    --main-header-color: #1d2e48;
    --body-bg: #f6f6f6;
    --border-color: #efefef;
}

@font-face {
    font-family: 'FiraSans';
    src: url("/assets/fonts/FiraSans-Bold.woff2") format('woff2'),
        url("/assets/fonts/FiraSans-Bold.woff") format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FiraSans';
    src: url('/assets/fonts/FiraSans-Light.woff2') format('woff2'),
        url('/assets/fonts/FiraSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FiraSans';
    src: url('/assets/fonts/FiraSans-Regular.woff2') format('woff2'),
        url('/assets/fonts/FiraSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'FiraSans', sans-serif;
    background: var(--body-bg);
    color: var(--main-txt-color);
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

a:hover {
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.container {
    max-width:1600px;
    margin: 0 auto;
    padding: 0 12px;
}

.container-fullwidth {
    margin: 0 auto;
}

.container-padding {
    padding: 0 12px;
}

a {
    text-decoration: none!important;
    transition: all .3s;
}

a:hover {
    text-decoration: none!important;
    transition: all .3s;
}

.zakladka {
    position:absolute;
    margin-top:-50px;
	height:0;
}

.bg-gray {
    background: #f6f6f6;
}

.bg-dark-gray {
    background: var(--bg-dark-gray);
}

.bg-blue {
    background: blue;
}

.bg-red {
    background: red;
}

.bg-yellow {
    background: yellow;
}

.bg-green {
    background: green;
}

.bg-teal {
    background: teal;
}

.bg-purple {
    background: purple;
}

.bg-black {
    background: #000;
}

.bg-white {
    background: #fff;
}

.bs-block {
    display: flex;
    flex-wrap: wrap;
}

.ar16x9 {
    aspect-ratio: 16 / 9;
}

.bs-block-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.bs-block-3 {
    display: flex;
    flex-wrap: nowrap;
}

.d-grid {
    display: grid;
}

.d-flex {
    display: flex;
}

.d-none {
    display: none;
}

.gap10 {
    gap: 10px;
}

.gap15 {
    gap: 15px;
}

.gap20 {
    gap: 20px;
}

.gap25 {
    gap: 25px;
}

.gap30 {
    gap: 30px;
}

.gap40 {
    gap: 40px;
}

.a-s-s {
    align-self: flex-start;
}

.a-s-e {
    align-self: flex-end;
}

.j-c-s {
	justify-content: flex-start;
}

.j-c-e {
	justify-content: flex-end;
}

.j-c-c {
    justify-content: center;
}

.j-c-a {
    justify-content: space-around;
}

.j-c-b {
    justify-content: space-between;
}

.a-i-c {
    align-items: center;
}

.a-c-c {
    align-content: center;
}

.j-c-e {
    justify-content: flex-end;
}

.m-lr-auto {
    margin-left: auto;
    margin-right: auto;
}

.t-a-c {
    text-align: center;
}

.t-a-l {
    text-align: left;
}

.t-a-r {
    text-align: right;
}

.txt-white {
    color: #fff;
}

.txt-teal {
    color: teal;
}

.txt-orange {
    color: orange;
}

.txt-red {
    color: red;
}

.txt-yellow {
    color: yellow;
}


.txt-upper {
    text-transform: uppercase;
}

.txt-lower {
    text-transform: lowercase;
}

.txt-shadow {
    text-shadow: 0 0 10px rgba(0,0,0,.5);
}

.f-w-b {
    font-weight: bold;
}

.padd40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.padd70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.lh140 {
    line-height: 140%;
}

.lh130 {
    line-height: 130%;
}

.lh120 {
    line-height: 120%;
}

.lh110 {
    line-height: 110%;
}

.lh100 {
    line-height: 100%;
}

.mt5 {
    margin-top: 5px;
}

.mb5 {
    margin-bottom: 5px;
}

.mt10 {
    margin-top: 10px;
}

.mb10 {
    margin-bottom: 10px;
}

.mt15 {
    margin-top: 15px;
}

.mb15 {
    margin-bottom: 15px;
}

.mt20 {
    margin-top: 20px;
}

.mb20 {
    margin-bottom: 20px;
}

.mt25 {
    margin-top: 25px;
}

.mb25 {
    margin-bottom: 25px;
}

.mt30 {
    margin-top: 30px;
}

.mb30 {
    margin-bottom: 30px;
}

.mt35 {
    margin-top: 35px;
}

.mb35 {
    margin-bottom: 35px;
}

.mt40 {
    margin-top: 40px;
}

.mb40 {
    margin-bottom: 40px;
}

.mt50 {
    margin-top: 50px;
}

.mb50 {
    margin-bottom: 50px;
}

.mt60 {
    margin-top: 60px;
}

.mb60 {
    margin-bottom: 60px;
}

.mt70 {
    margin-top: 70px;
}

.mb70 {
    margin-bottom: 70px;
}

.mt90 {
    margin-top: 90px;
}

.mb90 {
    margin-bottom: 90px;
}

.mr5 {
    margin-right: 5px;
}

.mr10 {
    margin-right: 10px;
}

.mr15 {
    margin-right: 15px;
}

.mr20 {
    margin-right: 20px;
}

.ml10 {
    margin-left: 10px;
}

.ml15 {
    margin-left: 15px;
}

.ml20 {
    margin-left: 20px;
}

.ml-a {
    margin-left: auto;
}

.mr-a {
    margin-right: auto;
}

.mt-a {
    margin-top: auto;
}

.mb-a {
    margin-bottom: auto;
}

.w50pr {
    width: 50%;
}

.w100pr {
    width: 100%;
}

.h100pr {
    height: 100%;
}

.an-del-01 {
    animation-delay: .05s;
}

.an-del-02 {
    animation-delay: .10s;
}

.an-del-03 {
    animation-delay: .15s;
}

.an-del-04 {
    animation-delay: .20s;
}

.an-del-05 {
    animation-delay: .25s;
}

.an-del-06 {
    animation-delay: .30s;
}

.an-del-07 {
    animation-delay: .35s;
}

.an-del-08 {
    animation-delay: .40s;
}

.an-del-09 {
    animation-delay: .45s;
}


.an-del-10 {
    animation-delay: .50s;
}

.an-del-11 {
    animation-delay: .55s;
}

.an-del-12 {
    animation-delay: .60s;
}

.hidden-big {
    display: none;
}

.brad5 {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.brad8 {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.brad12 {
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.rew-wrap {
	flex-wrap: wrap-reverse;
}

.fs13 {
	font-size:13px;
}

.img-darker {
    filter: brightness(.4);
    -webkit-filter: brightness(.4);
}

.img-blur {
    filter: blur(3px);
    -webkit-filter: blur(3px);
}

.img-darker-blur {
    filter: brightness(.4) blur(3px);
    -webkit-filter: brightness(.4) blur(3px);
}

.img-fluid {
    max-width:100%;
    height:auto;
}

.img-filled {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.my-video {
    position:relative;	
	aspect-ratio: 16 / 9;
}

.my-video iframe {
    position:absolute!important;
    height:100%!important;
    width:100%!important;
    top:0;
    left: 0;
    right:0;
    bottom:0;
    overflow: hidden;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.my-video__header {
    max-width: 75%;
}

/*---------- СТИЛИ СЛАЙДЕРА ВИДЕО НАЧАЛО ----------*/

.video-slider {
    overflow: hidden;
    position: relative;
    margin: 0 -10px;
}

.slick-track {
    display: flex;
}

.slick-arrow {
	outline:none;
}

.video-slider .slider-item {
	padding:0px 10px;
    min-height: 20vh;
}

.slick-arrow {
	outline:none;
}

.my-custom-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 45px;
    background: var(--main-color);
    cursor: pointer;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    &:hover {
        background: var(--main-color-hover);
        transition: all .3s;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
        -o-transition: all .3s;
    }
}

.video-slider__arrow-prev {
    mask: url(../img/native/arrow-prev.webp) no-repeat center / contain;
}

.video-slider__arrow-next {
    mask: url(../img/native/arrow-next.webp) no-repeat center / contain;
}

.video-slider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: absolute;
    bottom: 5px;
    width: 100%;
}

.video-slider .slick-dots li {
    list-style-type:none;
}

.video-slider .slick-dots button {
    font-size: 0;
    width: 15px!important;
    height: 16px!important;
    border-radius: 50%;
    margin-left: 5px;
    margin-right: 5px;
    cursor: pointer;
    background: var(--main-txt-color);
    border: solid 2px var(--border-color);
	outline:none;
}

.video-slider li.slick-active button {
    background: var(--main-color);
}

/*---------- СТИЛИ СЛАЙДЕРА ВИДЕО КОНЕЦ ----------*/
