:root {
    --family-roboto: "Roboto";
    --color-black: #222222;
    --color-white: #ffffff;
    --color-red: #da3738;
}

@font-face {
    font-family: "Roboto";
    font-weight: 900;
    src: local("Roboto"), url(../fonts/Roboto/Roboto-Black.ttf);
}

@font-face {
    font-family: "Roboto";
    font-weight: 700;
    src: local("Roboto"), url(../fonts/Roboto/Roboto-Bold.ttf);
}

@font-face {
    font-family: "Roboto";
    font-weight: 500;
    src: local("Roboto"), url(../fonts/Roboto/Roboto-Medium.ttf);
}

@font-face {
    font-family: "Roboto";
    font-weight: 400;
    src: local("Roboto"), url(../fonts/Roboto/Roboto-Regular.ttf);
}

body {
    font-family: var(--family-roboto);
}

input {
    border-radius: 0;
}

.section__upper {
    padding: 42px 0 28px;
}

.section__title {
    font-size: 28px;
    line-height: 30px;
    font-weight: 700;
    color: var(--color-black);
    text-align: center;
}

.section__sub-title {
    font-size: 14px;
    line-height: 16px;
    font-weight: 300;
    color: var(--color-black);
    text-align: center;

    margin-top: 6px;
}

.btn {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    line-height: 14px;
    /* font-weight: 500; */
    color: var(--color-white);
    text-transform: uppercase;

    font-weight: 600;
}

.bg_red {
    background: var(--color-red);
}

._border {
    border: 1px solid var(--color-red);

    color: var(--color-black);

    background: var(--color-white);
}

.text_color {
    color: var(--color-red);
}

.text_upper {
    text-transform: uppercase;
}

.form__input {
    width: 100%;
    height: 44px;

    border: none;

    padding-left: 16px;

    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    color: #aaaaaa;
}

.form__input::placeholder {
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    color: #aaaaaa;
}

.banner__form-button {
    height: 44px;
}

.checkbox {
    position: relative;
}

.form-checkbox__input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: -1;

    width: 20px;
    height: 20px;

    margin: 0;
}

.form-checkbox__input + .form-checkbox__custm {
    width: 14px;
    height: 14px;

    border: 2px solid #aeafb2;

    border-radius: 4px;

    background: var(--color-white);

    display: block;

    transition: all 0.4s;
}

.form-checkbox__input:checked + .form-checkbox__custm {
    background: var(--color-red);
}

.form-checkbox {
    margin-top: 15px;
}

.form-checkbox__text {
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    color: var(--color-white);
}

.form-checkbox__text a {
    color: var(--color-white);
    text-decoration: none;
}

.form-checkbox__label {
    display: flex;
    gap: 12px;
    align-items: center;
}

.section {
}

.section__upper {
}

.section__title {
}

.container {
    padding: 0 20px;
}

.list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 17px;

    font-size: 19px;
    line-height: 21px;
    font-weight: 400;
    color: var(--color-white);
}

.list-item__box {
    width: 14px;
    height: 14px;

    background: var(--color-red);

    display: block;
}

.header {
    padding: 28px 0;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.burger {
    width: 24px;
    height: 13px;

    position: relative;
}

.burger__line {
    position: absolute;
    left: 0;

    width: 100%;
    height: 1px;

    background: var(--color-black);

    display: block;

    transition: all 0.4s;
}

.burger__line.line_1 {
    top: 0;
}

.burger__line.line_2 {
    top: 6px;
}

.burger__line.line_3 {
    bottom: 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-info__item {
    display: flex;
    align-items: center;
    gap: 7px;

    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: var(--color-black);
    text-decoration: none;
}

.header-info__item.mob_hide {
    display: none;
}

.header-logo__img {
    max-width: 92px;
}

.header-logo span {
    display: none;
}

.header-menu {
    position: fixed;
    z-index: 2;
    right: -100%;
    top: 72px;

    background: var(--color-white);

    padding: 35px 20px 30px;

    width: 100%;

    border-top: 1px solid var(--color-black);

    transition: all 0.4s;
}

.header-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.header-nav__link {
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    color: var(--color-black);
    text-decoration: none;
    text-transform: uppercase;
}

.header-nav__link-img {
    display: inline-block;

    margin-left: 11px;
}

.header-menu__info {
    margin-top: 48px;

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.header.active .burger__line {
    height: 2px;

    width: 89%;
}

.header.active .burger__line.line_1 {
    top: 6px;
    transform: rotate(45deg);
}

.header.active .burger__line.line_2 {
    transform: rotate(-45deg);
}

.header.active .burger__line.line_3 {
    bottom: 6px;
    opacity: 0;
}

.header.active .header-menu {
    right: 0;
}

.header-list {
    display: flex;
    flex-direction: column;
    gap: 10px;

    margin-top: 7px;
    padding-left: 12px;

    /* position: absolute;
    left: 0;
    bottom: 0; */
    display: none;
}

.header-list.active {
    display: flex;
}

.header-list__links {
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    text-decoration: none;
    color: var(--color-black);
}

.header-nav__item {
    position: relative;
}

/* ********* $MAIN-BANNER ********* */

.main-banner__bg {
    background-image: url(../img/main-banner_mob3.webp);
    background-size: cover;
    background-position: center;

    /* padding: 53px 0 28px; */
    padding: 32px 0 28px;

    height: 583px;
}

.main-banner__bg._two {
    background-image: url(../img/main-banner_mob2-1.webp);
    background-size: cover;
    background-position: center;
}

.main-banner__title {
    font-size: 30px;
    line-height: 32px;
    font-weight: 700;
    color: var(--color-white);
}

.main-banner__bg._two .main-banner__title {
    color: var(--color-red);
    font-size: 24px;
    line-height: 27px;
    text-align: center;
}

.main-banner__sub-title {
    display: block;

    margin-top: 11px;

    font-size: 15px;
    line-height: 17px;
    font-weight: 500;
    color: var(--color-white);
}

.main-banner__bg._two .main-banner__sub-title {
    font-size: 20px;
    line-height: 22px;
    text-align: center;

    margin-top: 7px;
}

.main-banner__bg-cont {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    height: 100%;
}

.main-banner .container {
    height: 100%;
}

.main-banner__button {
    height: 48px;

    margin-top: 21px;

    font-weight: 700;
}

.main-banner__timer {
    padding: 19px 0 33px;

    background: var(--color-black);

    /* border-top: 1px solid var(--color-white); */
}

.main-banner__head {
    display: block;

    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    color: var(--color-black);
    color: var(--color-white);
    text-transform: uppercase;
}

.main-banner__head br {
    display: none;
}

.main-banner__text {
    display: block;

    margin-top: 13px;

    font-size: 20px;
    line-height: 22px;
    font-weight: 400;
    color: var(--color-white);
}

.main-banner__text br {
    display: none;
}

.main-banner__info {
    margin-top: 244px;
}

.timer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 35px auto 0;

    width: 92%;
}

.time-count__item {
    width: 40px;
    display: flex;
    flex-flow: column;
    align-items: center;
    position: relative;
}

.time-count__val {
    font-weight: 400;
    font-size: 27px;
    line-height: 29px;
    text-transform: uppercase;
    color: var(--color-white);
}

.time-count__text {
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    text-transform: uppercase;
    color: var(--color-white);
}

.pie {
    display: block;
    width: 63px;
    height: 63px;
    border-radius: 50%;
    transform: rotate(-90deg);
    position: absolute;
    bottom: -14px;
    left: -11px;
}

.pie .background {
    fill: none;
    stroke: var(--color-white);
    stroke-width: 2px;
}

.pie .chart {
    fill: none;
    stroke: var(--color-red);
    stroke-width: 2;
    z-index: 3;
}

.main-banner .swiper-pagination {
    display: flex;
    align-items: center;

    top: 10px;
    left: 50%;
    transform: translate3d(-50%, 0, 0);

    width: max-content;

    padding: 3px 6px;

    height: 19px;

    border-radius: 24px;

    background: #5c5c5cb8;
}

.main-banner .swiper-pagination-bullet {
    background: #dddddd;

    opacity: 1;

    width: 5px;
    height: 5px;
}

.main-banner .swiper-pagination-bullet-active {
    background: var(--color-red);
}

/* _________ */

/* ********* $OFFER ********* */

.offer {
    padding: 42px 0 0;
}

.offer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 12px;
    column-gap: 20px;
}

.offer-item {
    height: 85px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: #e4e4e47a;

    padding: 10px 6px 7px 14px;

    transition: all 0.4s;

    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    color: var(--color-black);
}

.offer-ball {
    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: var(--color-red);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.4s;
}

.offer-item path {
    transition: all 0.4s;
}

.offer-item:hover svg circle {
    fill: var(--color-white);
}

.offer-item:hover .offer-ball {
    background: var(--color-white);
}
.offer-item:hover path {
    stroke: var(--color-red);
}
.offer-item:hover {
    background: var(--color-red);
    color: var(--color-white);
}

/* _________ */

/* ********* $MODELS ********* */

.models-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* .models-card__images {
    height: 176px;
} */

.swiper-models-images::after {
    content: "";

    display: block;

    width: 100%;
    height: 65px;

    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgb(0, 0, 0) 100%);

    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.swiper-models-images .swiper-pagination {
    bottom: 11px;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    padding: 0 15px;
    gap: 11px;
    flex-wrap: nowrap;
    display: flex;

    height: 3px;
}

.swiper-models-images .swiper-pagination-bullet {
    flex-grow: 1;
    width: auto;
    flex-basis: 20%;
    height: 100%;
    border-radius: 0;
    margin: 0 !important;
    background: 0 0;
    opacity: 1;
    position: relative;

    transition: all 0.4s;

    background: var(--color-white);
}

.swiper-models-images .swiper-pagination-bullet-active {
    background: var(--color-red);

    flex-basis: 31%;
}

.swiper-models__img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.models-card__info {
    padding: 12px 8px 22px;

    border: 2px solid #eeeeee;
    /* border-bottom: none; */
}

.models-card__name {
    display: block;

    text-align: center;

    font-size: 30px;
    line-height: 32px;
    font-weight: 700;
    color: var(--color-black);
    text-transform: uppercase;
}

.models-card__name-wrapper {
    display: flex;
    flex-direction: column-reverse;
}

.models-card__price--old {
    font-size: 16px;
    color: #838383;
    text-decoration: line-through;
    text-align: right;
    margin-right: 65px;
}

.models-card__prices {
    margin-top: 7px;
}

.models-card__price {
    display: block;

    text-align: center;
    font-size: 26px;
    line-height: 28px;
    font-weight: 700;
    color: var(--color-red);

    margin-bottom: 3px;
}

.models-card__price-month {
    display: flex;

    text-align: center;
    font-size: 19px;
    line-height: 31px;
    font-weight: 700;
    color: var(--color-black);
}

.models-price__list {
    margin-top: 19px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
}

.models-card__list-item {
    display: flex;
    align-items: center;
    gap: 5px;

    font-size: 12px;
    line-height: 14px;
    font-weight: 600;
    color: var(--color-black);
}

.models-card__btns {
    display: flex;
    flex-direction: column;
    gap: 9px;

    margin-top: 24px;
}

.models-card__button {
    height: 35px;
}

.models__features.expanded {
    /* padding: 40px; */
    padding-bottom: 33px;

    max-height: 5000px;
}

.models__features {
    padding: 0;
    padding: 0 20px;
    border-left: 2px solid #eeeeee;
    border-right: 2px solid #eeeeee;
    border-bottom: 2px solid #eeeeee;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
}

.models__card-show-features {
    display: flex;
    align-items: center;
    column-gap: 10px;
    background-color: transparent;
    transition: all 0.3s;
    margin: 0 auto;
    margin-top: 15px;
}

.models__card-show-features span {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: #da3738;
}

.models__features h3 {
    font-size: 13px;
    color: #222222;
    font-weight: 500;
    margin-bottom: 17px;
    text-align: center;
}

.equip-card__info-list li {
    font-size: 12px;
    list-style: disc;
    margin-bottom: 5px;
}

.models__card-show-features-img {
    transition: all 0.5s;
}

.rotate-img {
    transform: rotate(-180deg);
}

/* _________ */

/* ********* $EQUIPS ********* */

.equips-card__cont {
    border: 2px solid #eeeeee;

    padding: 16px;

    position: relative;
}

.equips-card__nal {
    width: 100px;
    height: 38px;

    background: var(--color-red);

    position: absolute;
    top: -2px;
    right: -2px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    color: var(--color-white);
}

.equips-card__model {
    display: block;

    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    color: var(--color-black);
    text-transform: uppercase;
}

.equips-card__equip-name {
    display: block;

    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    color: var(--color-black);
}

.equips-card__img {
    width: 100%;
}

.equips-card__specs-text {
    display: block;

    font-size: 15px;
    line-height: 19px;
    font-weight: 400;
    color: var(--color-black);

    opacity: 0.74;
}

.equips-card__specs {
    margin-bottom: 4px;
}

.equips-card__price-old {
    display: block;

    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--color-black);
    text-decoration: line-through;

    opacity: 0.69;
}

.equips-card__price {
    display: block;

    font-size: 32px;
    line-height: 26px;
    font-weight: 700;
}

.equips-card__price--credit {
    display: none;
    font-weight: 500;
    font-size: 14px;
    color: #da3738;
}
.equips-card__price--credit span {
    font-size: 16px;
}

.equips-card__prices {
    margin-bottom: 21px;
    margin-top: 20px;
}

.equips-card__specs-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.equips-card__specs-item {
    display: flex;
    /* justify-content: space-between; */
    align-items: flex-end;
    gap: 10px;

    font-size: 16px;
    line-height: 17px;
    font-weight: 500;
    color: #000;
    white-space: nowrap;
}

.equips-card__specs-item svg,
.equips-card__specs-item .equips-card__img {
    width: 24px;
    height: 24px;
}

.equips-card__heads {
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .equips-card__model {
        font-size: 27px;
    }
    .equips-card__equip-name {
        font-size: 14px;
    }
    .equips-card__specs-item {
        font-size: 14px;
    }
    .equips-card__price {
        font-size: 27px;
    }
}

@media (min-width: 451px) and (max-width: 991px) {
    .models-card__wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.eq_border {
    display: block;

    width: 100%;

    border-bottom: 1px dashed var(--color-black);

    opacity: 0.74;

    flex-basis: 100%;

    margin-bottom: 3px;
}

.equips-card__specs-item._volume .eq_border {
    /* flex-basis: 43%; */
    flex-basis: 100%;
}

.equips-card__specs-item._color .eq_border {
    /* flex-basis: 64%; */
    flex-basis: 100%;
}

.equips-card__btns {
    margin-top: 19px;
}

.equips-card__btns {
    display: flex;
    gap: 23px;
}

.equips-card__button {
    /* flex-basis: 50%; */

    height: 40px;
}

/* _________ */

/* ********* $GALLERY ********* */

.gallery-container__models {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gallery__models-tab {
    background: none;
    border: none;
    padding: 0;

    font-size: 12px;
    line-height: 14px;
    font-weight: 700;
    color: #22222280;

    transition: all 0.4s;
}

.gallery__models-tab.active {
    color: var(--color-red);
}

.gallery-item {
    display: none;
}

.gallery-item.active {
    display: block;
}

.gallery-swiper__img {
    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.gallery-swiper__cont {
    position: relative;

    height: 252px;

    display: flex;
    align-items: flex-end;

    box-shadow: 0px 4px 31.7px 0px rgba(0, 0, 0, 0.56);
}

.gallery-swiper__cont::after {
    content: "";

    display: block;

    width: 100%;
    height: 109px;

    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 7.895%,
        rgb(0, 0, 0) 59.569%
    );

    position: absolute;
    left: 0;
    bottom: 0;
}

.gallery-swiper__info {
    position: relative;

    z-index: 1;

    padding: 0 15px 8px;
}

.gallery-swiper__text {
    display: block;

    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    color: var(--color-white);
}

.gallery-swiper__head {
    display: block;

    font-size: 14px;
    line-height: 27px;
    font-weight: 700;
    color: var(--color-white);
}

.gallery-container__swipers {
    margin-top: 38px;
    position: relative;
}

.gallery .swiper-gallery-button-prev,
.gallery .swiper-gallery-button-next {
    width: 29px;
    height: 29px;

    border-radius: 50%;

    background: var(--color-black);

    opacity: 0.5;

    position: absolute;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery .swiper-gallery-button-prev {
    right: 55px;
    left: auto;
    top: 47px;
    margin: 0;
}

.gallery .swiper-gallery-button-next {
    top: 47px;
    right: 10px;
    margin: 0;
}

.gallery .swiper-gallery-button-prev:after {
    content: "";

    background: url(../img/arrow-prev.svg) no-repeat;
    background-size: 13px;
    background-position: center;

    width: 9px;
    height: 13px;

    display: block;
}

.gallery .swiper-gallery-button-next:after {
    content: "";

    background: url(../img/arrow-next.svg) no-repeat;
    background-size: 13px;
    background-position: center;

    width: 9px;
    height: 13px;

    display: block;
}

.gallery .swiper-pagination {
    display: flex;
    align-items: center;

    bottom: 0;
    left: 50%;
    transform: translate3d(-50%, 0, 0);

    height: 37px;

    width: max-content;
    padding: 13px;

    border-radius: 24px;

    background: #5c5c5cb8;
}

.gallery .swiper-pagination-bullet {
    background: #dddddd;

    opacity: 1;

    width: 11px;
    height: 11px;
}

.gallery .swiper-pagination-bullet-active {
    background: var(--color-red);
}

.swiper-gallery {
    /* padding-bottom: 67px; */
    padding: 30px 20px 67px;
    margin: -30px -20px 0;
}

.gallery-swiper__img-flag {
    position: absolute;
    right: 20px;
    bottom: 75px;

    width: 65px;
}

/* _________ */

/* ********* $BANNER ********* */

.banner__mob-img {
    width: 100%;

    position: relative;
    z-index: -1;
}

.banner__desk-img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    z-index: -1;
}

.banner-bg {
    /* background: linear-gradient(180.00deg, rgba(34, 34, 34, 0) 8.176%,rgb(34, 34, 34) 25.812%); */
    background: linear-gradient(
        180deg,
        rgba(34, 34, 34, 0) 2.176%,
        rgb(34, 34, 34) 31.812%
    );

    padding-top: 231px;
    padding-bottom: 22px;
    margin-top: -210px;
    z-index: 2;
    position: relative;
}

.banner__head {
    display: block;

    margin-bottom: 31px;

    font-size: 25px;
    line-height: 27px;
    font-weight: 500;
    color: var(--color-white);
}

.banner__list {
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin-bottom: 29px;
}

.banner__list-item {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 17px;
    line-height: 19px;
    font-weight: 400;
    color: var(--color-white);
}

.banner__form-cont {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.equips-container {
    display: flex;
    flex-direction: column;
    gap: 20px;

    margin-top: 48px;
}

.equips__filter {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #cccccc;

    border-radius: 0;

    height: 45px;

    display: flex;
    align-items: center;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    padding-left: 17px;

    color: #aaaaaa;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
}

.select2-container--default.select2-container--below
    .select2-selection--single
    .select2-selection__rendered {
    color: var(--color-black);
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    width: 7px;
    height: 4px;
    top: 21px;
    right: 15px;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow
    b {
    border: none;

    display: block;

    background: url(../img/arrow-select.svg) no-repeat;
    background-size: cover;

    width: 100%;
    height: 100%;
}

.select2-search--dropdown {
    display: none;
}

.select2-results__option {
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: #aaaaaa;

    padding: 6px 6px 6px 17px;
}

.select2-container--default
    .select2-results__option--highlighted.select2-results__option--selectable {
    background: var(--color-red);
}

/* _________ */

/* ********* $CONTACTS ********* */

.contacts__map {
    width: 100%;

    display: block;
}

.contacts-info {
    background: rgba(34, 34, 34, 0.79);

    padding: 28px 0 30px;

    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
}

/* .contacts-info::before {
    content: "";

    display: block;

    width: 100%;
    height: 100%;

    background: var(--color-black);

    opacity: 0.72;

    position: absolute;
    left: 0;
    top: 0;

    z-index: -1;
} */

.contacts__logo {
    display: block;

    max-width: 174px;

    margin: 0 auto;
}

.contacts__head {
    display: block;

    font-size: 22px;
    line-height: 24px;
    font-weight: 400;
    color: var(--color-white);
    text-align: center;

    margin-top: 20px;
}

.contacts-container {
    position: relative;
}

.contacts__list {
    display: flex;
    flex-direction: column;
    gap: 24px;

    width: max-content;

    margin: 19px auto 0;
}

.contacts__list-item {
    display: flex;
    align-items: center;
    gap: 22px;

    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    color: var(--color-white);
    text-decoration: none;
}

.contacts__button {
    width: 277px;
    height: 52px;

    margin: 32px auto 0;
}

/* _________ */

/* ********* $TEST ********* */

.test__form-head {
    display: block;

    text-align: center;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    color: var(--color-black);

    margin-bottom: 32px;
}

.test__form-cont {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.test__form-input {
    width: 100%;
    height: 44px;

    border: 1px solid #cccccc;

    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: var(--color-black);

    border-radius: 0;

    padding-left: 17px;
    padding-top: 23px;
}

.test__form-block {
    position: relative;
}

.test__form-label {
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: #aaaaaa;

    position: absolute;
    top: 50%;
    left: 17px;

    transform: translate3d(0, -50%, 0);

    transition: all 0.4s;
}

.test__form-block._change .test__form-label {
    top: 7px;
    transform: none;

    font-size: 10px;
    line-height: 12px;
}

.test__form-icon {
    position: absolute;
    right: 17px;
    top: 50%;

    transform: translate3d(0, -50%, 0);

    background: none;
    padding: 0;
    margin: 0;

    opacity: 0;
    z-index: -1;

    transition: all 0.4s;
}

.test__form-block._change .test__form-icon,
.test__form-block._icon .test__form-icon {
    opacity: 1;
    z-index: 1;
}

.test__from-contact {
    padding: 21px 0 0;
}

.test__from-contact .test__form-input {
    padding-top: 0;

    color: var(--color-black);
}

.test__from-contact .test__form-input::placeholder {
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: #aaaaaa;
}

.test__form-checkbox {
    margin-top: 14px;
}

.test__form-checkbox .form-checkbox__text,
.test__form-checkbox .form-checkbox__text a {
    color: var(--color-black);
}

.test__form-button {
    height: 44px;

    margin-top: 22px;
}

.test__form-input {
    font-size: 16px;
    line-height: 18px;
}

.test__form-checkbox {
    margin-top: 25px;
}

.ui-timepicker-list li {
    font-size: 16px;
    line-height: 18px;

    padding: 3px 0 3px 20px;
}

.test
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    width: 16px;
    height: 10px;

    top: 17px;
    right: 15px;
}

.test
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow
    b {
    border: none;
    display: block;
    background: url(../img/arrow-test.svg) no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;

    left: 0;
    top: 0;

    margin: 0;
}

/* _________ */

/* ********* $FOOTER ********* */

.footer {
    background: var(--color-black);

    padding: 32px 0 29px;

    margin-top: 43px;
}

.footer-logo__text {
    display: block;

    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    color: var(--color-white);
    text-align: center;

    margin-top: 11px;
}

.footer-logo__img {
    max-width: 137px;

    display: block;
}

.footer__button {
    height: 33px;

    font-size: 10px;
    line-height: 12px;
}

.footer-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-btns.mob_hide {
    display: none;
}

.footer-container {
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-template-areas: "t11 t1";

    column-gap: 32px;
    row-gap: 36px;
}

.footer-list {
    grid-column: 1 / span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
}

.footer-list__item {
    grid-column: 2;

    display: flex;

    height: 30px;
}

.footer-list__item:first-child {
    grid-row: auto / span 2;
    grid-column: 1;

    flex-direction: column;
}

.footer-list__links,
.footer-list__models-item {
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
}

.footer-list__models {
    display: grid;
    gap: 8px;

    margin-top: 16px;
}

.footer-list__link {
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: var(--color-white);
    text-decoration: none;
}

.footer-list__menu {
    display: grid;
    gap: 11px;
}

.footer-info {
    margin-top: 36px;
}

.footer__text {
    display: block;

    font-size: 10px;
    line-height: 12px;
    font-weight: 400;
    color: var(--color-white);
}

.footer-texts {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-links {
    margin-top: 17px;

    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* .footer__link {
	color: var(--color-red);
} */

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* _________ */

/* ********* $POPUP ********* */

.popup {
    padding: 19px 26px 12px;

    width: 99%;

    display: none;
}

.popup__list {
    flex-direction: row-reverse;
    justify-content: start;
}

#modalSpecial {
    background-image: url(../img/p-special_mob.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

#modalCredit {
    background-image: url(../img/p-credit_mob.webp);
    background-repeat: no-repeat;
    background-size: cover;

    padding: 19px 22px 12px;
}

#modal-success {
    background-image: url(../img/p-suc_mob.webp);
    background-repeat: no-repeat;
    background-size: cover;

    height: 320px;
}
#modal-error {
    background-image: url(../img/p-suc_mob.webp);
    background-repeat: no-repeat;
    background-size: cover;

    height: 320px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
    width: 19px;
    height: 19px;

    background: var(--color-white);

    opacity: 1;
}

.is-compact #modal-success.fancybox__content > .f-button.is-close-btn {
    background: var(--color-black);
}
.is-compact #modal-error.fancybox__content > .f-button.is-close-btn {
    background: var(--color-black);
}

.f-button svg {
    width: 14px;
    height: 14px;

    stroke: var(--color-black);
    stroke-width: 3px;
}

#modal-success .f-button svg {
    stroke: var(--color-white);
}
#modal-error .f-button svg {
    stroke: var(--color-white);
}

.popup-flex {
    display: flex;
    align-items: center;

    height: 100%;
}

#modalCredit .popup__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.popup-head {
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    color: var(--color-white);

    display: block;

    margin-bottom: 116px;
}

#modal-success .popup-head {
    font-size: 26px;
    line-height: 28px;
    color: var(--color-black);
    text-align: center;

    margin-bottom: 20px;
}
#modal-error .popup-head {
    font-size: 26px;
    line-height: 28px;
    color: var(--color-black);
    text-align: center;

    margin-bottom: 20px;
}

.popup-text {
    display: block;

    text-align: center;
    font-size: 17px;
    line-height: 19px;
    font-weight: 500;
    color: var(--color-black);
}

.popup-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* align-items: end; */
}

.popup__list-box {
    width: 10px;
    height: 10px;
}

.popup__list-item {
    font-size: 11px;
    line-height: 14px;
    gap: 6px;
}

.popup-form {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    /* align-items: end; */
}

.popup-form__inputs {
    display: flex;
    gap: 9px;
    flex-direction: column;
}

.popup-form__input {
    /* flex-basis: 50%; */

    height: 35px;

    padding-left: 14px;

    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
}

.popup-form__input::placeholder {
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
}

.popup-form__button {
    margin-top: 6px;

    height: 36px;
}

.popup-form__checkbox {
    margin-top: 6px;
}

.popup-form__checkbox .form-checkbox__text {
    font-size: 8px;
    line-height: 11px;
}

.filtered-show,
.showmore-show {
    display: block;
    opacity: 1;
    transition: 0.3s;
}

.filtered-show,
.showmore-show {
    display: block;
    opacity: 1;
    transition: 0.3s;
}

.filtered-hide,
.showmore-hide {
    display: none;
    opacity: 0;
}

.oc-progress-bar {
    visibility: hidden;
}

/* _________ */

@media screen and (min-width: 450px) {
    .models-card {
        width: 400px;
    }

    .models-container {
        align-items: center;
    }

    .equips-card {
        width: 400px;
    }

    .equips-container {
        align-items: center;
    }

    .equips__filter {
        width: 400px;

        margin: 0 auto;
    }

    .test__form {
        width: 400px;

        margin: 0 auto;
    }

    .popup {
        width: 360px;
    }
}

@media screen and (min-width: 470px) {
    .banner__form {
        width: 400px;
    }
}

@media screen and (min-width: 500px) {
    .main-banner__button {
        width: 307px;
    }

    .timer {
        width: 400px;
    }

    .offer-container {
        width: 400px;

        margin: 0 auto;
    }
}

/*------------------------------- COLOR CHANGE MODELS ---------------------------------*/

.card__color-select {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-direction: column;
    gap: 5px;
    /* margin-top: 20px; */
    height: 60px;
    max-width: 165px;
}

.card__colors {
    display: flex;
    gap: 10px;
}

.card__colors .color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 1px 2px #000;
    transition: all 0.4s;
    border: 1px solid #9b9b9b;
    background-position: bottom;
}

.card__colors .color.active {
    scale: 1.1;
    background: url(../img/ico/mark.svg) no-repeat;
    background-position: center;
}

.active-black {
    background: url(../img/ico/mark-black.svg) no-repeat !important;
    background-position: center !important;
}

.mob__hide {
    display: block;
}

.card__color-title {
    font-size: 14px;
    font-weight: 400;
    color: #626262;
}

.desk__hide-price {
    display: none;
}

@media (max-width: 991px) {
    .card__color-select {
        margin-top: 0;
        margin: 0 auto;
        height: 30px;
        margin-bottom: 13px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .card__colors .color {
        height: 20px;
        width: 20px;
    }
    .card__colors .color.active {
        background-size: 60%;
    }
    .models-swiper > .swiper-wrapper {
        height: 230px;
    }
    .active-black {
        background-size: 60% !important;
    }

    .models-card__name-wrapper {
        border: 1px solid #eeeeee;
        border-right: none;
        border-left: none;
        margin: 0 -20px;
        margin-bottom: 15px;
        width: 100vw;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .card__color-title {
        font-size: 10px;
        font-weight: 400;
        color: #626262;
    }

    .mob__hide {
        display: none;
    }

    .desk__hide {
        display: block;
    }

    .models-card__name-wrapper.desk__hide {
        display: flex;
    }
    .desk__hide-price {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-top: 17px;
    }
    .models-card__price {
        display: block;
        text-align: center;
        font-size: 20px;
        line-height: 20px;
        font-weight: 700;
        color: var(--color-red);
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .models-card__price span {
        font-size: 12px;
    }
    .models-card__price-month {
        display: flex;
        text-align: center;
        font-size: 16px;
        line-height: 20px;
        font-weight: 700;
        color: var(--color-black);
        flex-direction: column;
        align-items: flex-start;
    }
    .models-card__price-month span {
        font-size: 10px;
    }
    .models-card__btns {
        display: flex;
        flex-direction: column;
        gap: 9px;
        margin-top: 15px;
    }
    .ui-icon.ui-icon-circle-triangle-w {
        background-image: url("../img/left.svg") !important;
        background-position: center;
        height: 20px;
        width: 20px;
    }

    .ui-icon.ui-icon-circle-triangle-e {
        background-image: url("../img/right.svg") !important;
        background-position: center;
        height: 20px;
        width: 20px;
    }

    .ui-widget-header {
        border: none;
        background: #eeeeee;
        color: #222222;
        font-weight: bold;
        border-radius: 0;
    }

    .ui-state-active,
    .ui-widget-content .ui-state-active,
    .ui-widget-header .ui-state-active,
    a.ui-button:active,
    .ui-button:active,
    .ui-button.ui-state-active:hover {
        border: 1px solid #aaaaaa;
        background: #da3738;
        font-weight: normal;
        color: white;
    }

    /* .ui-widget-header .ui-icon {
        background-image: url("../img/left.svg") !important;
    } */
    #map {
        width: 100%;
        height: 666px;
        /* -webkit-filter: grayscale(100%);
	filter: grayscale(100%); */
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: flex;
    }
}

.desk__hide {
    display: none;
}

.swiper-button-next,
.swiper-button-prev {
    color: black;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.86);
    border-radius: 50%;
}
.swiper-button-next:after,
.swiper-button-prev::after {
    font-size: 22px;
}
.swiper-button-next {
    padding-left: 3px;
}
.swiper-button-prev {
    padding-right: 3px;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 20px;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 20px;
}
.color-switcher {
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    z-index: 2;
    height: 50px;
    width: 33%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.color-switcher-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.color-corner-1 {
    position: absolute;
    bottom: -6px;
    left: -13px;
}
.color-corner-2 {
    position: absolute;
    bottom: -6px;
    right: -13px;
    transform: scaleX(-1);
}
.color-circles {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 100%;
}
.color-circles-item {
    width: 24px;
    /* width: 80px; */
    height: 24px;
    border-radius: 50%;
    /* border-radius: 30px; */
    cursor: pointer;
    /* margin-top: 6px; */
    outline: 1px solid #b4b4b4;
}
.active-color {
    scale: 1.1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.active-color::after {
    content: "";
    display: flex;
    background-size: cover;
    background-position: center;
    background: url(../img/ico/mark.svg) no-repeat !important;
    width: 15px;
    height: 12px;
}
.white.active-color::after {
    content: "";
    display: flex;
    background-size: cover;
    background-position: center;
    background: url(../img/ico/mark-black.svg) no-repeat !important;
    width: 15px;
    height: 14px;
}
.more-char-info-bottom {
    font-weight: 700;
}
.models-wr-title {
    letter-spacing: -0.02em;
    font-size: 66px;
    font-family: "Tactic Sans";
    font-weight: 500;
    text-align: center;
    margin-bottom: -30px;
}
@media (max-width: 1400px) {
    .models-card__images {
        max-width: 777px;
        height: 420px;
    }
    .models-card__images .swiper {
        height: 100%;
    }
    .models-card__images img {
        height: 100%;
    }
    .models-wr-title {
        font-size: 48px;
        margin-bottom: -40px;
    }
    .models-title {
        font-size: 48px;
        line-height: 48px;
    }
    .model-in-stock {
        margin-bottom: 15px;
        font-size: 18px;
    }
    .model-price {
        font-size: 36px;
        line-height: 36px;
    }
    .models-info-btns-1,
    .models-info-btns-2 {
        height: 50px;
        margin-bottom: 10px;
    }
    .model-char {
        margin-bottom: 20px;
    }
    .model-char-item {
        font-size: 18px;
    }
    .models-info-btns-2 p,
    .models-info-btns-1 p {
        font-size: 17px;
    }
    .models-info-btns-1 svg {
        width: 25px;
        height: 25px;
    }
    .more-info-btn {
        height: 54px;
    }
}
@media (max-width: 1200px) {
    .model-in-stock {
        margin-bottom: 10px;
    }
    .models-card__images {
        max-width: 577px;
        height: 320px;
    }
    .models-title {
        font-size: 36px;
        line-height: 36px;
    }
    .model-price {
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 10px;
    }
    .models-info {
        max-width: 275px;
    }
    .more-info-btn p {
        font-size: 14px;
    }
    .more-info-btn svg {
        width: 25px;
        height: 25px;
    }
    .more-info-btn {
        border-radius: 15px;
        height: 40px;
    }
    .model-char {
        row-gap: 10px;
        column-gap: 10px;
    }
    .model-char-item {
        font-size: 14px;
    }
    .models-info-btns-1,
    .models-info-btns-2 {
        height: 40px;
    }
    .models-info-btns-2 p,
    .models-info-btns-1 p {
        font-size: 15px;
    }
    .y2-garant {
        top: 10px;
        /* left: 10px; */
        padding: 0 8px;
        width: max-content;
        height: 44px;
    }
    .y2-garant svg {
        width: 20px;
        height: 20px;
    }
    .y2-garant-text {
        font-size: 14px;
    }
    .color-circles-item {
        width: 18px;
        height: 18px;
    }
    .color-switcher {
        height: 35px;
    }
}
@media (max-width: 768px) {
    .thumbnail-slider {
        display: none;
    }
    .models-item {
        flex-direction: column-reverse;
        gap: 20px;
    }
    .models-imgs {
        max-width: 100%;
    }
    .models-card__images {
        height: 210px;
        max-width: unset;
    }
    .models-info {
        max-width: none;
    }
    .y2-garant {
        /* width: 127px; */
        height: 27px;
        border-radius: 8px;
    }
    .y2-garant-text {
        font-size: 12px;
        font-weight: 400;
    }
    .y2-garant svg {
        width: 12px;
        height: 12px;
    }
    .models-card__images img {
        border-radius: 8px;
    }
    .color-switcher {
        height: 29px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        width: 60%;
    }
    .color-corner-1 {
        width: 10px;
        bottom: -5px;
        left: -8px;
    }
    .color-corner-2 {
        width: 10px;
        right: -8px;
        bottom: -5px;
    }
    .swiper-button-next,
    .swiper-rtl .swiper-button-prev {
        right: 10px;
    }
    .swiper-button-prev {
        padding-right: 1px;
    }
    .swiper-button-next {
        padding-left: 1px;
    }
    .swiper-button-next:after,
    .swiper-button-prev::after {
        font-size: 10px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 20px;
        height: 20px;
    }
    .swiper-button-prev,
    .swiper-rtl .swiper-button-next {
        left: 10px;
    }
    .color-circles-item {
        width: 18px;
        height: 18px;
        margin-top: 0;
    }
    .models-title {
        font-size: 28px;
        line-height: 28px;
    }
    .models-title span {
        font-size: 18px;
        line-height: 18px;
        margin-bottom: 3px;
    }
    .model-in-stock {
        font-size: 12px;
        margin-bottom: 16px;
    }
    .model-price {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 16px;
    }
    .more-info-btn {
        height: 46px;
        border-radius: 12px;
        margin-bottom: 16px;
    }
    .more-info-btn svg {
        height: 24px;
        width: 24px;
    }
    .more-info-btn p {
        font-size: 18px;
    }
    .model-char {
        row-gap: 20px;
        column-gap: 20px;
    }
    .model-char-item {
        font-size: 14px;
    }
    .models-info-btns-1,
    .models-info-btns-2 {
        height: 46px;
        border-radius: 12px;
    }
    .models-info-btns-1 p,
    .models-info-btns-2 p {
        font-size: 18px;
    }
    .models-info-btns-1 svg {
        width: 24px;
        height: 24px;
    }
    .models-wr-title {
        font-size: 28px;
        line-height: 28px;
        margin-bottom: -60px;
    }
}

.models-card__images {
    display: flex;
    gap: 20px;
    align-items: center;
    /* height: 547px; */
    position: relative;
}
.models-card__images img {
    object-fit: cover;
    height: 100%;
    /* max-height: 547px; */
    /* max-width:max-content; */
    width: 100%;
}

.y2-garant {
    position: absolute;
    top: -15px;
    right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    width: 216px;
    height: 40px;
    background: url(../img/ico/model-in-stock.png) no-repeat;
    background-size: cover;
    background-position: center;
}
.y2-garant-text {
    font-size: 14px;
    font-weight: 400;
    color: white;
    /* letter-spacing: -0.02em; */
}

.trade-credit__wrapper {
    display: flex;
    height: 605px;
}

.swiper.tradeCreditSwiper {
    overflow: visible;
    width: 100%;
}

.swiper.tradeCreditSwiper .swiper-slide {
    max-width: 50%;
}

.trade-bg {
    width: 100%;
    height: 100%;
    /* border-left: 1px solid #fff; */
}

.credit-bg {
    width: 100%;
    height: 100%;
    border-right: 1px solid #fff;
}

.trade-bg .banner-container {
    margin-left: 30px;
}

.trade-credit__wrapper .banner__form-button {
    flex-basis: unset;
}

.trade-credit__wrapper .container {
    height: 100%;
}

.trade-credit__wrapper .banner-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.trade__list-wrapper {
    display: flex;
    flex-direction: column;
}

.credits__list-wrapper {
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .trade-credit__wrapper {
        height: 513px;
        margin-top: 60px;
    }
    .credit-bg,
    .trade-bg {
        margin-top: 0;
        padding-top: 39px;
        height: 479px;
        background: none;
    }

    .trade-bg .banner-container {
        margin-left: 0;
    }

    .swiper.tradeCreditSwiper {
        overflow: hidden;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .swiper.tradeCreditSwiper .swiper-slide {
        max-width: none;
    }

    .swiper.tradeCreditSwiper .swiper-pagination {
        background: #00000080;
        left: unset;
        width: 34px;
        height: 19px;
        border-radius: 12px;
        display: flex;
        align-items: center;
    }

    .swiper-pagination-bullet {
        background: #dddddd;
        opacity: 1;
    }

    .swiper-pagination-bullet-active {
        background: #da3738;
    }

    .credit-bg .banner__head,
    .trade-bg .banner__head {
        font-size: 21px;
        font-weight: 600;
    }

    .credit-bg .banner__list,
    .trade-bg .banner__list {
        gap: 25px;
    }

    .credits__list-item,
    .credits__list-item {
        font-size: 16px;
    }

    .banner__desk-img {
        height: 479px;
    }
}

.equip-show-more-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin-top: 47px;
}

.equip-show-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 1px solid #222222;
    cursor: pointer;
}
.equip-show-more p {
    font-size: 16px;
    font-weight: 400;
    color: #0f171a;
}

.showmore-hide,
.filtered-hide {
    display: none;
}
