@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/* Отступы */
.hero {
    padding: 40px 0px 20px 0px;
}
.hero3 {
    padding: 0px 0px 20px 0px;
}
.hero1 {
    padding: 0px 0px 20px 0px;
}
.hero2 {
    padding: 120px 0px 20px 0px;
}
.hero4 {
    padding: 0px 0px 0px 0px;
    /* background: #090909; */
    border-top: #00000000 solid 59px;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(5px);
    /* background: rgba(0, 0, 0, 0.5); */
    background-color: rgba(34, 34, 34, 0.7);
    /* border: rgba(39, 39, 39, 0.7) solid 1px; */
    box-shadow: 0px 10px 20px#000000;
    /* border-bottom: #272727 solid 1px; */
    /* background: #00000025; */
    border-bottom: 1px solid #ffffff15;
}
#searchBar{
    margin-top: 5px;
    margin-bottom: 5px !important;
    height: 46px;
}
.film {
    padding-left: 160px;
    margin-top: -50px;
}
.hero-cta {
    padding-left: 150px;
    margin-top: -49px;
}
.hero-copy {
    width: 100%;
    padding: 0px;
}

/* Дизайн секции */
.hero-copy {
    padding: 15px;
    height: 233px;
    background-color: #000000;
    border: #272727 solid 1px;
    border-radius: 3px;
}
/* background: #910500; */

.items{
    font-family: Rubik, serif !important;
    height: 107px;
    font-weight: 900 !important;
}
/* Название/ограниение */
.name{
    font-family: Rubik, serif !important;
    /* line-height: 1; */
    height: 107px;
    font-size: 25px;
    top: 2.5px;
    position: relative;
    color: #fff;
    font-weight: 600 !important;
    margin-top: 48px;
    margin-bottom: 16px
}
.item1{
    /* line-height: 1.2; */
    font-size: 25px;
    color: #fff;
    font-weight: 600;
    top: 1px;
    position: relative;
}
/* ограниение каталога */
.item2 {
    font-family: Rubik, serif !important;
    font-size: 15px;
    background: #ffffff15;
    border: 1px solid #ffffff15;
    color: #ffee83;
    border-radius: 3px;
    top: 9px;
    position: relative;
    font-weight: 600;
    width: 45px; /* Ширина блока */
    height: 22px; /* Высота блока */
    letter-spacing: 1px;
    display: flex;
    justify-content: center; /* Горизонтальное выравнивание */
    align-items: center; /* Вертикальное выравнивание */
    /* display: flex; */
}
.number {
    font-size: 15px;
    background: #ffffff15;
    border: 1px solid #ffffff15;
    color: #ffee83;
    border-radius: 3px;
    text-align: center;
    position: relative;
    font-weight: 600;
    top: 8px;
    padding: 2px 10px;
    width: 45px; /* Ширина блока */
    height: 22px; /* Высота блока */
    letter-spacing: 1px;
    display: flex;
    justify-content: center; /* Горизонтальное выравнивание */
    align-items: center; /* Вертикальное выравнивание */
}

/* Изображение */
.im{
    top: -120px;
    height: 200px;
    width: 145px;
    background-color: #1d2935;
    position: relative;
    border-radius: 5px;
}
.image{
    background-color: #000000;
    border: #272727 solid 1px;
    /* border: 1px solid #2c3a50; */
    /* outline: 1px solid #2c3a50; */
    /* outline-offset: -1px; */
    /* box-shadow: 5px 5px 4px #0e141a; */
    border-radius: 3px;
    height: 200px;
    width: 145px;
    /* background-color: #1d2935; */
    position: relative;
    animation: image 1s infinite;
}
.image:hover {
    transition: 0.2s;
    animation: image 1s infinite;
}
@keyframes image {
    0%   {background-color: #090c12}
    50%  {background-color: #0c1117}
    100% {background-color: #090c12}
}

/* Кнопка */
.buttonn {
    position: relative;
    border-radius: 3px;
    /* background-color: #1e293b; */
    background: #ffffff15;
    border: 1px solid #ffffff15;
    padding: 3px 25px;
    display: inline-flex;
    text-decoration: none !important;
    font-weight: 100;
    cursor: pointer;
    left: 8px;
    top: 11px;
} 
.buttonn:hover {
    background: #ffffff25;
    border: 1px solid #ffffff25;
}

/* Разрешение выделения текста */
.item1, .item1:before{
    content: var(--VName);
    -webkit-user-select: text; -webkit-user-select: text;
    -khtml-user-select: text; -moz-user-select: text;
    -ms-user-select: text; user-select: text;
    -o-user-select: text;
}
/* Запрет выжедения текста */
.number, .number:before{
    content: var(--VAge);
    -webkit-touch-callout: none; -webkit-user-select: none;
    -khtml-user-select: none; -moz-user-select: none;
    -ms-user-select: none; user-select: none;
    -o-user-select: none;
}