:root {
    --family-inter: "Inter";
    --color-black: #222222;
    --color-white: #ffffff;
    --color-main: #356875;
}

@font-face {
    font-family: "Inter";
    src: local("Inter Bold"), local("Inter-Bold"),
        url("../fonts/Inter-Bold.woff2") format("woff2"),
        url("../fonts/Inter-Bold.woff") format("woff"),
        url("../fonts/Inter-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: local("Inter Medium"), local("Inter-Medium"),
        url("../fonts/Inter-Medium.woff2") format("woff2"),
        url("../fonts/Inter-Medium.woff") format("woff"),
        url("../fonts/Inter-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: local("Inter Regular"), local("Inter-Regular"),
        url("../fonts/Inter-Regular.woff2") format("woff2"),
        url("../fonts/Inter-Regular.woff") format("woff"),
        url("../fonts/Inter-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: var(--family-inter);
}

.form__checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.form__checkbox-check[type="checkbox"] {
    position: absolute;
    left: 0;
    opacity: 0;
    z-index: 2;
}

.form__checkbox-check[type="checkbox"] + .form-checkbox__custom {
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--color-white);
}

.form__checkbox-check[type="checkbox"]:checked + .form-checkbox__custom {
    background-image: url(../img/check.svg);
    background-repeat: no-repeat;
    background-size: 11px;
    background-position: center;
}

.form__checkbox-text {
    font-size: 10px;
    line-height: 12px;
    font-weight: 400;
    color: var(--color-white);
}

.checkbox-link {
    color: var(--color-white);
}
.main-banner__list {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 36px;
    margin-bottom: 14px;
}
.main-banner__list-svg1 {
    width: 51px;
    height: 51px;
    background-image: url(../img/svgs/Tag.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.main-banner__list-svg2 {
    width: 51px;
    height: 51px;
    background-image: url(../img/svgs/Sale.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.main-banner__list-svg3 {
    width: 51px;
    height: 51px;
    background-image: url(../img/svgs/secondSVG.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.btn {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    line-height: 14px;
}

.bg_main {
    background: var(--color-main);

    color: var(--color-white);

    font-weight: 700;
}

._border {
    border: 1px solid var(--color-main);

    color: var(--color-main);

    background: none;

    font-weight: 500;
}

._border._inversion {
    border: 1px solid var(--color-white);

    color: var(--color-white);

    background: none;
}

.color_text {
    color: var(--color-main);
}

.input {
    width: 100%;

    border: none;

    height: 60px;

    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    color: rgba(117, 117, 117, 1);

    padding-left: 16px;
}

.input::placeholder {
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    color: rgba(117, 117, 117, 1);
}

.section__upper {
    padding: 40px 0 20px;
}

.section__title {
    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
    color: var(--color-black);
    text-align: center;
}

.container {
    padding: 0 20px;
}

.header {
    /* position: absolute;
    top: 0;
    left: 0;
    z-index: 2; */

    width: 100%;

    background: var(--color-black);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 0;
}

.burger {
    width: 24px;
    height: 24px;

    position: relative;
}

.burger__line {
    position: absolute;
    left: 0;

    width: 100%;
    height: 2px;

    background: var(--color-white);

    display: block;

    transition: all 0.4s;
}

.burger__line.line_1 {
    top: 0;
}

.burger__line.line_2 {
    top: 7px;
}

.burger__line.line_3 {
    top: 14px;
}

.header-logo {
    display: flex;
}

.header-logo__img {
    max-width: 69px;
}

.header-container__flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 19px;
}

.header-info__text {
    display: block;

    font-size: 8px;
    line-height: 10px;
    font-weight: 400;
    color: var(--color-white);

    text-align: right;
}

.header-info__texts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header-info__text-icon + span {
    display: none;
}

.header-button {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 40px;

    text-transform: uppercase;
}

.header-button.mob_hide {
    display: none;
}

.header-menu {
    position: fixed;
    left: -100%;
    top: 57px;

    width: 100%;

    background: var(--color-black);

    padding: 30px 20px 39px;

    transition: all 0.4s;

    z-index: 2;
}

.header-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.header-nav__link {
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    color: var(--color-white);
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;

    padding: 0 0 30px;

    border-bottom: 1px solid var(--color-white);

    width: 100%;
}

.header-nav__link:last-child {
    border: none;
}

.header.active {
    background: var(--color-black);
}

.header.active .header-menu {
    left: 0;
}

.header.active .burger__line.line_1 {
    top: 7px;

    transform: rotate(45deg);
}

.header.active .burger__line.line_2 {
    opacity: 0;
}

.header.active .burger__line.line_3 {
    top: 7px;

    transform: rotate(-45deg);
}

.header-logo__text {
    display: none;
}

/**************************/

/********* $MAIN-BANNER *********/

.main-banner {
    position: relative;

    aspect-ratio: 360/400;

    padding: 27px 0 0;
}

.main-banner__bg {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.main-banner__container {
    position: relative;
    z-index: 1;
}

.main-banner__title {
    /* font-size: 36px; */
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;

    /* margin-bottom: 40px; */
    margin-bottom: 0;
}

.main-banner__sub-title {
    display: block;

    font-size: 22px;
    line-height: 100%;
    color: var(--color-white);
    background-color: #356875;
    text-transform: uppercase;
    padding: 16px 18px;
    width: fit-content;

    /* width: 236px; */
}

/**************************/

/********* $TIME-BLOCK *********/

.time-block {
    padding: 20px 0 14px;
}

.time-block__timer-head {
    display: block;

    font-size: 15px;
    line-height: 17px;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;

    margin-bottom: 15px;
}

.timer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 9.12px;
    /* justify-content: center; */
}

.banner__button.timer__btn {
    background: #fff;
    color: #356875;
}

.time-count__val {
    font-size: 28px;
    line-height: 30px;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 7px;
    padding: 3px;

    position: relative;

    z-index: 1;
    font-variant-numeric: tabular-nums;
}

.time-count__val::before {
    content: "";

    display: block;

    width: 50%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;

    z-index: -1;

    backdrop-filter: blur(9.41px);
    background: rgba(255, 255, 255, 0.1);
}

.time-count__val::after {
    content: "";

    display: block;

    width: 50%;
    height: 100%;

    position: absolute;
    top: 0;
    right: 0;

    z-index: -1;

    backdrop-filter: blur(9.411765098571777px);

    background: rgba(255, 255, 255, 0.25);
}

.time-count__text {
    display: block;

    font-size: 10px;
    line-height: 12px;
    font-weight: 400;
    color: var(--color-white);
    text-align: center;
}

.time-count__item {
    display: flex;
    flex-direction: column;
    gap: 7px;

    width: 50px;
}

.time-block__button {
    height: 40px;

    margin-top: 19px;

    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
}

.timer__input {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    height: 40px;
    margin-top: 10px;
}

.timer__input::placeholder {
    color: #fff;
}

.time-block .form__checkbox-label {
    font-size: 14px;
}

.time-block .form__checkbox-label a {
    color: #fff;
}
.time-block .form__checkbox-label a:visited {
    color: #fff;
}

/**************************/

/********* $MODELS *********/

.models-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.model-names__button {
    display: block;

    margin: 20px auto 0;

    background: none;

    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: var(--color-black);
    text-decoration: underline;
}

.models-list__item {
    text-align: center;

    border: 1px solid var(--color-main);

    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.4s;
}

.models-list__link {
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    color: var(--color-black);
    text-decoration: none;

    transition: all 0.4s;
}

.models-cards {
    margin-top: 40px;

    display: flex;
    flex-direction: column;
    gap: 30px;
}

.model-card {
    padding: 7px 20px 14px;

    position: relative;

    border: 1px solid var(--color-black);
}

.model-card__bg {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.model-card__head {
    display: block;

    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
    color: var(--color-main);
    text-transform: uppercase;

    margin-bottom: 11px;
}

.model-card__head.mob_hide {
    display: none;
}

.model-card__car-img,
.model-card__real-img {
    width: 100%;
}

.model-card__car {
    margin-bottom: 11px;
}

.model-card__real {
    margin-bottom: 16px;

    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.model-card__real-img {
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.model-card__colors {
    width: 140px;

    margin: 0 auto 25px;

    cursor: pointer;
}

.model-card__color {
    display: block;

    width: 20px;
    height: 20px;

    border: 1px solid rgb(34 34 34 / 26%);
}

.model-card__colors .swiper-slide.swiper-slide-thumb-active .model-card__color {
    border: 2px solid var(--color-black);
}

.model-card__prices {
    margin-bottom: 25px;
}

.model-card__price-old {
    display: block;

    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
    color: rgba(34, 34, 34, 0.5);
    text-decoration: line-through;

    margin-bottom: 5px;
}

.model-card__price {
    display: block;

    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    color: var(--color-black);

    margin-bottom: 5px;
}

.model-card__price-month {
    display: block;

    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    color: var(--color-black);
}

.model-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 14px;
    column-gap: 18px;

    margin-bottom: 20px;
}

.model-card__actions.mob_hide {
    display: none;
}

.model-card__actions-item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.model-card__actions-text {
    display: block;

    font-size: 9px;
    line-height: 11px;
    font-weight: 400;
    color: var(--color-black);
}

.model-card__btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.model-card__button {
    height: 40px;
}

/**************************/

/********* $EQUIPS *********/

.equips {
    overflow-x: hidden;
}

.equips__filter {
    display: flex;
    flex-direction: column;
    gap: 20px;

    margin-bottom: 20px;
}

.select2-container--default .select2-selection--single {
    border: none;
    border-radius: 0;

    border-bottom: 1px solid var(--color-black);
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    color: var(--color-black);
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    width: 24px;
    height: 24px;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow
    b {
    border: none;

    width: 24px;
    height: 24px;

    background: url(../img/arrow-select.svg) no-repeat;

    top: 0;
    left: 0;
}

.select2-results__option {
    font-size: 14px;
    line-height: 16px;
}

.select2-search--dropdown {
    display: none;
}

.select2-container--default
    .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--color-main);
}

.equips-list {
    margin-top: 20px;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.equips-card__top {
    background: var(--color-black);

    padding: 10px 0;

    position: relative;

    margin-bottom: 18px;
}

.equips-card__top::before {
    content: "";

    display: block;

    width: 100%;
    height: 100%;

    position: absolute;
    left: -100%;
    top: 0;

    background: var(--color-black);
}

.equips-card__top::after {
    content: "";

    display: block;

    width: 100%;
    height: 100%;

    position: absolute;
    right: -100%;
    top: 0;

    background: var(--color-black);
}

.equips-card__head {
    display: block;

    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    color: var(--color-white);
}

.equips-card__info-texts {
    display: none;
}

.equips-card__specs {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.equips-card__specs-item svg {
    display: none;
}

.equips-card__specs-item {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: var(--color-black);
}

.equips-card__specs-item.mob_hide {
    display: none;
}

.equips-card__info {
    margin-bottom: 16px;
}

.equips-card__images {
    display: flex;
    justify-content: center;

    margin-bottom: 16px;
}

.equips-card__img {
    display: block;

    width: 100%;
}

.equips-card__prices {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 16px;
    margin-bottom: 16px;
}

.equips-card__price-old {
    display: block;

    flex-basis: 100%;

    text-align: center;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    color: var(--color-main);
    text-decoration: line-through;
}

.equips-card__price {
    display: block;

    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    color: var(--color-main);
}

.equips-card__price-month {
    display: block;

    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: var(--color-main);
}

.equips-card__btns {
    display: flex;
    flex-direction: column;
    gap: 16px;

    width: 280px;

    margin: 0 auto;
}

.equips-card__button {
    height: 50px;
}

/**************************/

/********* $CONTACTS *********/

.contacts {
    /* margin-top: 40px; */
}

.contacts__map {
    width: 100%;
}

.contacts__bg {
    background: var(--color-main);

    padding: 19px 0 23px;
}

.contacts__title {
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    color: var(--color-white);

    margin-bottom: 20px;
}

.contacts__list {
    display: flex;
    flex-direction: column;
    gap: 20px;

    margin-bottom: 20px;
}

.contacts__list-item {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: var(--color-white);
    text-decoration: none;
}

.contacts__button {
    height: 60px;

    font-size: 14px;
    line-height: 16px;
}

/**************************/

/********* $BANNERS *********/

.banner {
    margin-top: 30px;
}

.banner__mob {
    position: relative;

    height: 223px;

    padding-bottom: 20px;
}

.banner__mob-img {
    width: 100%;
    height: 100%;

    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;

    object-fit: cover;
}

.banner__mob-img.mob_hide {
    display: none;
}

.banner__title {
    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
    color: var(--color-white);
    /* text-transform: uppercase; */
}

.banner__title.mob_hide {
    display: none;
}

.banner__mob-container {
    display: flex;
    align-items: flex-end;

    height: 100%;
}

.banner .container {
    height: 100%;
}

.banner__bg {
    padding: 24px 0 34px;

    background: var(--color-main);
}

.banner-list {
    padding-left: 10px;

    list-style: disc;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.credits-list {
    padding-left: 10px;

    position: relative;
}

.banner-list__item {
    /* display: flex;
    align-items: center;
    gap: 20px; */

    font-size: 14px;
    line-height: 32px;
    font-weight: 400;
    color: var(--color-white);

    position: relative;
}

/* .banner-list__item::before {
    content: "";

    display: block;


} */

.credit__form {
    margin-top: 24px;
}

.banner__button {
    margin-top: 20px;

    height: 40px;

    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.form__checkbox-check[type="checkbox"] + .form-checkbox__custom {
    background-color: var(--color-white);
}

.banner__ball {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 29px;
    height: 29px;

    border-radius: 50%;

    background: var(--color-white);

    border: 2px solid var(--color-red);

    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: var(--color-black);
}

.trade__form {
    margin-top: 40px;
}

.trade__mob .banner__mob-container {
    align-items: start;
}

.trade__title {
    padding-top: 13px;
}

.gossale__form {
    margin-top: 20px;
}

.gossale__mob .banner__mob-container {
    align-items: start;
}

.gossale__title {
    padding-top: 13px;
}

.gossale__subtitle {
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    width: 100%;
    color: #fff;
}

.banner__bg.gossale__bg {
    background: #3d4142;
}

.banner__button {
    height: 60px;
}

.credits-list__docs {
    margin-top: 11px;
}

.credits-list__doc-head {
    display: block;

    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    color: var(--color-white);

    margin-bottom: 10px;
}

.credits-list__docs-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.credits-list__doc-item {
    display: flex;
    align-items: center;
    gap: 20px;

    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: var(--color-white);
}

/**************************/

/********* $FOOTER *********/

.footer {
    padding: 40px 0;
}

.footer-text {
    font-size: 10px;
    line-height: 12px;
    font-weight: 400;
    color: var(--color-black);
}

.footer-links__link {
    color: var(--color-main);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
}

.footer__text {
    font-size: 16px;
}

.footer-button {
    background: none;
    border: none;

    font-size: 10px;
    line-height: 12px;
    font-weight: 400;
    color: var(--color-main);
    text-decoration: underline;

    margin-top: 25px;
}

/**************************/

/********* $POPUP *********/

.popup {
    padding: 14px 14px 20px;

    height: 320px;

    border-radius: 12px;

    width: 98%;

    display: none;
}

#modalCredit {
    background: url(../img/modal-credit_mob.webp) no-repeat;
    background-size: cover;
}

#modalRequest {
    background: url(../img/modal-req_mob.webp) no-repeat;
    background-size: cover;
}

#modal-success,
#modal-error {
    background: url(../img/modal-suc_mob.webp) no-repeat;
    background-size: cover;
}

.popup__cont {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    height: 100%;
}

#modal-success .popup__cont,
#modal-error .popup__cont {
    align-items: flex-end;
}

.popup__head {
    display: block;

    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
    color: var(--color-white);
}

.popup__list {
    list-style: disc;

    margin-top: 10px;
    padding-left: 15px;
}

.popup__list.mob_hide {
    display: none;
}

.popup__list-item {
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    color: var(--color-white);
}

.popup__input {
    height: 40px;
}

.popup__form-cont {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popup__form {
    width: 240px;
}

.popup__button {
    height: 40px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
    width: 24px;
    height: 24px;

    border: 2px solid var(--color-white);

    border-radius: 50%;
}

.f-button svg {
    width: 10px;
    height: 10px;
    opacity: 1;
    stroke: #fff;
    fill: #fff;
    stroke-width: 6px;
}

/**************************/

.show-btn {
    background: none;
    border: none;

    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    color: var(--color-main);
    text-decoration: underline;
    text-transform: uppercase;

    width: max-content;

    margin: 20px auto 0;

    display: block;
}

.filtered-show,
.showmore-show {
    display: block;
    opacity: 1;
    transition: 0.3s;
}

.filtered-hide,
.showmore-hide {
    display: none;
    opacity: 0;
}

.filtered-show-models,
.showmore-show-models {
    display: block;
    opacity: 1;
    transition: 0.3s;
}

.filtered-hide-models,
.showmore-hide-models {
    display: none;
    opacity: 0;
}

.js--show-more {
    margin: 20px auto;
    display: block;
    padding: 10px;
    border-radius: 5px;
}

.js--show-more.hidden {
    display: none;
}

.js--show-more-models.hidden {
    display: none;
}

@media screen and (max-width: 500px) {
    .main-banner__list {
        gap: 10px;
        font-size: 20px;
        margin-bottom: 0;
    }
    .main-banner__container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .main-banner__list-svg1 {
        width: 28px;
        height: 28px;
        background-image: url(../img/svgs/Tag-min.svg);
    }
    .main-banner__list-svg2 {
        width: 28px;
        height: 28px;
        background-image: url(../img/svgs/Sale-min.svg);
    }
    /* .main-banner__title{
    max-width: 247px;
} */
    .main-banner__list-svg3 {
        width: 28px;
        height: 28px;
    }
}
@media screen and (min-width: 450px) {
    .time-block__container {
        width: 400px;

        margin: 0 auto;
    }

    .models-cards {
        align-items: center;
    }

    .model-card {
        width: 360px;
    }

    .equips-card {
        width: 360px;
    }

    .equips-list {
        align-items: center;
    }

    .contacts__container {
        width: 400px;

        margin: 0 auto;
    }

    .popup {
        width: 360px;
    }
}

@media screen and (min-width: 576px) {
    .main-banner {
        aspect-ratio: 1024/600;
    }
}

.desc-hide {
    display: none;
}
.mob-hide {
    display: block;
}
.trade-credit {
    display: flex;
    /* align-items: center; */
    margin-top: 100px;
    color: white;
    /* margin-bottom: 100px; */
}
.trade-credit__left,
.trade-credit__right {
    flex-basis: 50%;
    height: 492px;
}
.trade-credit__left {
    text-align: right;
    background-image: url(../img/left-desc.webp);
    background-repeat: no-repeat;
    background-size: cover;
}
.trade-credit__left-wrapper,
.trade-credit__right-wrapper {
    padding: 37px 50px;
}
.trade-credit__right {
    background-image: url(../img/right-desc.webp);
    background-size: cover;
    background-repeat: no-repeat;
}
.trade-credit__left-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
    text-align: right;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.trade-credit__left-subtitle {
    font-size: 22px;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 25px;
}
.trade-credit__left-svgs {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 33px;
    margin-bottom: 20px;
}
.trade-credit__left-svgs-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.trade-credit__left-svgs-item p {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
}
.trade-credit__left-list {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    max-width: max-content;
    gap: 8px;
    text-align: left;
    margin-left: auto;
    margin-bottom: 45px;
}
.trade-credit__left-list-item {
    list-style: disc;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
}
.trade-credit__left-btn {
    margin-left: auto;
    max-width: 228px;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #356875;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
}
.trade-credit__right-btn {
    max-width: 228px;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #356875;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
}
.trade-credit__right-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 15px;
    text-transform: uppercase;
    margin-bottom: 17px;
}
.trade-credit__right-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-left: 20px;
    margin-bottom: 100px;
}
.trade-credit__right-list-item {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    list-style: none;
    position: relative;
}
.trade-credit__right-list-item::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translate(0, -50%);
}
@media (max-width: 768px) {
    .desc-hide {
        display: block;
    }
    .mob-hide {
        display: none;
    }
    .trade-credit {
        flex-direction: column;
        margin-top: 30px;
        /* margin-bottom: 30px; */
    }
    .trade-credit__left,
    .trade-credit__right {
        height: 645px;
    }
    .trade-credit__left {
        background-image: url(../img/left-mob.webp);
        text-align: left;
    }
    .trade-credit__right {
        background-image: url(../img/right-mob.webp);
    }
    .trade-credit__left-title {
        font-size: 19px;
        font-weight: 700;
        line-height: 22px;
        text-align: left;
        text-transform: unset;
        margin-top: 168px;
        order: 1;
        margin-bottom: 40px;
    }

    .trade-credit__left-wrapper,
    .trade-credit__right-wrapper {
        padding: 20px;
    }
    .trade-credit__left-wrapper {
        display: flex;
        flex-direction: column;
    }
    .trade-credit__left-list {
        order: 2;
        margin-left: 20px;
        gap: 0;
        margin-bottom: 13px;
    }
    .trade-credit__left-subtitle {
        order: 3;
        font-size: 16px;
        font-weight: 700;
        line-height: 18px;
        margin-bottom: 10px;
    }
    .trade-credit__left-svgs {
        order: 4;
        justify-content: space-between;
    }
    .trade-credit__left-svgs-item:first-child svg {
        width: 30px;
        height: 40px;
    }
    .trade-credit__left-svgs-item:last-child svg {
        width: 35px;
        height: 22px;
    }
    .trade-credit__left .popup__form {
        order: 5;
    }
    .trade-credit__left-list-item {
        font-size: 14px;
        font-weight: 400;
        line-height: 32px;
    }
    .trade-credit__left-svgs-item {
        gap: 20px;
    }
    .trade-credit__left-svgs-item p {
        font-size: 14px;
        font-weight: 400;
        line-height: 16px;
    }
    .trade-credit .popup__form {
        width: unset;
    }
    .trade-credit ._border._inversion {
        border: none;
        background-color: #fff;
        color: #356875;
        font-family: Arial;
        font-size: 12px;
        font-weight: 400;
        line-height: 14px;
        text-transform: uppercase;
    }
    .trade-credit__right-title {
        font-size: 20px;
        font-weight: 700;
        line-height: 22px;
        text-align: left;
        margin-bottom: 189px;
    }
    .trade-credit__right-list-item {
        font-size: 14px;
        font-weight: 400;
        line-height: 32px;
        text-align: left;
    }
    .trade-credit__right-list-item::before {
        top: 16px;
        left: -16px;
    }
    .trade-credit__right-list {
        gap: 10px;
        margin-bottom: 40px;
    }
    .main-banner__sub-title {
        font-size: 16px;
        padding: 8px 11px;
        width: 100%;
        line-height: 130%;
    }
}

@media (max-width:1620px){
.trade-credit__left{
    background-image: url(../img/left-n.webp);
}
}
@media (max-width:768px){
.trade-credit__left{
    background-position: unset;
    background-image: url(../img/left-mob.webp);
}
}
#map{
    position: absolute;
    top: 0;right: 0;
    width: 50%;
    height: 386px;
}
.ymaps-2-1-79-map-copyrights-promo{
    display: none !important;
}
@media(max-width: 768px){
#map{
    width: 100%;
    position: relative;
}
}

@media (max-width: 768px) {
  #autocredit {
    scroll-margin-bottom: 6000px;
  }
}
