* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
	--black: #313438;
	--black-80: #65676a;
	--black-50: #9fa0a2;
	--white: #fff;
	--white-80: #f2f2f2;
	--white-50: rgba(255, 255, 255, 0.5);
	--blue: #4eb1e9;
	--blue-hover: #61bff4;
	--dark-blue: #2ca3e6;
	--light-blue: #ebf6ff;
	--border: #dedede;
	--grey: #fafafa;
	--grey-hover: #f5f5f5;
	--gray-2: #f5f5f5;
	--system-green: #3ad108;
	--system-light-green: #e8fae1;
	--system-red: #ff4a32;
	--system-light-red: #ffedea;
	--system-yellow: #ffc144;
	--system-light-yellow: #fff9ec;
	--color-400: rgba(14, 137, 207, 0.4);
    --font-family: "IBM Plex Sans", sans-serif;
    --second-family: "Inter Tight", sans-serif;
    --third-family: "Manrope", sans-serif;
    --font3: "Inter", sans-serif;
    --font4: "IBM Plex Mono", sans-serif;
    --font5: "Source Sans Pro", sans-serif;
}

.container {
    max-width: 1280px;
    width: 100%;
    /* padding-left: 80px;
    padding-right: 80px; */
    margin: 0 auto;
}

.body-grey {
    background: var(--grey);
}

.section-blue {
    background: linear-gradient(338deg, #92d8ff 0%, #0e8dd4 100%), radial-gradient(108.37% 124.85% at 81.83% 3.49%, #fff 0%, #0098ee 100%);
    border-radius: 24px;
    padding: 80px 60px;
}

a, button {
    cursor: pointer;
}

h1 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 48px;
    line-height: 117%;
    letter-spacing: -0.02em;
    color: #3e4145;
    margin-bottom: 40px;
}

/* Header styles */

.top-banner_main {
    height: 100vh;
    
}

.top-banner_slider-container {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.top-banner_slider .top-banner_slider-item {
    background-image: url(/images/main-banner_top.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
}

.top-banner_slider .top-banner_slider-item img {
    height: 785px;
}

.top-banner_slider-content {
    display: flex;
    align-items: center;
}

.top-banner_slider .slick-list, .top-banner_slider .slick-track {
    height: 100% !important;
}

.top-banner_container , .top-banner_slider {
    height: 100%;
}

.top-banner_slider-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 48px;
    line-height: 117%;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-top: 20px;
    margin-bottom: 20px;
}

.top-banner_slider-subtitle {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--white-80);
    margin-bottom: 48px;
}

.top-banner_slider-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Контейнер с прогресс-линией под dots */
.top-banner_slider-dots-wrap {
    position: absolute;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 77px;
}

.top-banner_slider-dots-wrap .slick-dots {
    display: flex;
    gap: 10px;
    justify-content: space-between; 
    list-style: none;
    max-width: 390px;
    justify-self: self-end;
    width: 100%;
    margin-bottom: 8px;
}

.top-banner_slider-dots-wrap .slick-dots li {
    flex-grow: 1;
    flex-basis: 30%;
}

.top-banner_slider-dots-wrap .slick-dots button {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    background-color: transparent;
    border: none;
    color: var(--white-80);
}

/* сама линия */
.top-banner_slider-progress {
    height: 2px;
    background: var(--white-50);
    max-width: 390px;
    justify-self: self-end;
    width: 100%;
}

/* заполнение */
.top-banner_slider-progress .bar {
  height: 100%;
  width: 0%;
  background: var(--white);
  transition: width .35s ease;
}

.top-banner_slider .top-banner_statistic {
    width: fit-content;
    display: flex;
    gap: 20px;
}

.top-banner_slider .top-banner_statistic .top-banner_statistic-big {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    color: var(--white);
    margin-bottom: 8px;
}

.top-banner_slider .top-banner_statistic .top-banner_statistic-small {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--white-80);
    margin: 0;
}

.top-banner_slider-bottom {
    margin-bottom: 80px;
}

.header {
    padding-top: 12px;
    padding-bottom: 20px;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.header_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.header_container .header_logo {
    display: inline-block;
    width: 155px;
    flex-shrink: 0;
}

.header_container .header_logo img {
    width: 100%;
}

.header_search .search {
    width: 95%;
    height: 100%;
    outline: none;
    background: no-repeat;
    border: none;
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: #fff;
    padding: 6px 12px;
}

.header_search .search::placeholder {
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: #fff;
}

.header_search {
    position: relative;
    border: 1.50px solid #e6e6e6;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    height: 36px;
    backdrop-filter: blur(4px);
}

.header_search::before {
    content: "";
    position: absolute;
    background-image: url(/images/icons/search-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    right: 6px;
    top: 5px;
}

.header_right {
    display: flex;
    gap: 32px;
    align-items: center;
}

.header_btns {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header_btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
}

.header_btn-cart {
    position: relative;
}

.header_btn-cart_count {
    display: block;
    background: var(--dark-blue);
    border-radius: 100px;
    padding: 1px 5px;
    width: 16px;
    height: 16px;
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 12px;
    line-height: 117%;
    color: var(--white);
    position: absolute;
    top: 0;
    right: 0;
}


.all-content_blue {
    padding-top: 120px;
    padding-bottom: 120px;
    margin-top: 120px;
    background: linear-gradient(338deg, #92d8ff 0%, #0e8dd4 100%), radial-gradient(31.43% 73.32% at 42.93% 32.62%, #fff 0%, #0098ee 100%), linear-gradient(170deg, rgba(78, 177, 233, 0.5) 0%, rgba(0, 103, 162, 0.5) 100%);
}

section {
    margin-top: 120px;
}

.cards-grey_flex {
    display: flex;
    gap: 20px;
}

.cards-grey_flex .cards-grey_item {
    border-radius: 20px;
    background: var(--grey);
    padding: 24px;
    flex-grow: 1;
    flex-basis: 30%;
}

.cards-grey_flex .cards-grey_top {
    position: relative;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 32px;
    line-height: 125%;
    letter-spacing: 0.01em;
    color: #3e4145;
    margin-bottom: 55px;
}

.cards-grey_flex .cards-grey_top span {
    font-family: var(--font4);
    font-weight: 600;
    font-size: 14px;
    line-height: 114%;
    letter-spacing: 0.01em;
    color: var(--black-50);
    position:absolute;
    top: -4px;
    right: -4px;
}

.cards-grey_flex .cards-grey_text {
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: #3e4145;
    max-width: 295px;
}

.f_def-white {
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.01em;
    color: var(--white);
}

h2 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    margin-bottom: 48px;
}

h2.h2_white {
    color: var(--white);
}

.title_flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title_flex-container .f_def-white {
    max-width: 847px;
}

.why-choose-us .title_flex-container .f_def-white, .section-blue .title_flex-container .f_def-white {
    max-width: 570px;
}

.product-cards {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.product-cards .product-card {
    flex-grow: 1;
    flex-basis: 30%;
    border-radius: 20px;
    padding: 32px;
    position: relative;
    background: var(--white);
    text-decoration: none;
    height: 320px;
    overflow: hidden;
}

.product-card .product-card_name {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: 0.01em;
    color: var(--black);
    position: relative;
    z-index: 1;
}

.product-cards .product-card img {
    max-height: 320px;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.banner-bottom {
    border-radius: 20px;
    padding: 60px;
    background: var(--grey);
    background-image: url(/images/main-banner-form-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 376px;
}

.banner-bottom .banner-bottom_title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    color: var(--white);
    margin-bottom: 40px;
}

.banner-bottom .banner-bottom_text {
    margin-bottom: 48px;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--white);
    max-width: 490px;
}

.btn-blue {
    background: var(--blue);
    border-radius: 16px;
    padding: 10px 24px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    border: none;
    color: var(--white);
}

.btn-blue:hover {
    background: var(--blue-hover);
}

.btn-blue:active {
    background: var(--dark-blue);
}

.btn-underline {
    border: 1.50px solid var(--white-50);
    border-radius: 16px;
    padding: 10px 24px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--white);
    background-color: transparent;
}

.link_show-all {
    position: relative;
    font-family: var(--font-family);
    text-decoration: none;
    padding-right: 32px;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
    white-space: nowrap;
}

.link_show-all::before {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    background-image: url(/images/icons/black-icon.svg);
    right: 0;
}

.link_show-all:hover {
    color: var(--blue-hover);
    transition: color .3s ease-in-out;
}

.link_show-all:hover::before {
    background-image: url(/images/icons/blue-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image .3s ease-in-out;
}

.blog-list {
    display: flex;
    gap: 20px;
}

.blog-list .blog-list_item {
    flex-grow: 1;
    flex-basis: 30%;
}

.blog-list .blog-list_item img {
    height: 230px;
    display: block;
    border-radius: 20px;
    margin-bottom: 12px;
}

.blog-list .blog-list_item-name {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: 0.01em;
    color: var(--black);
    margin-bottom: 8px;
}

.blog-list .blog-list_item-descr {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--black-80);
    margin-bottom: 12px;
}

.blog-list_item-link {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
    position: relative;
    display: block;
    width: fit-content;
}

.blog-list_item-link::before {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    background-image: url(/images/icons/black-icon.svg);
    right: -26px;
}

.header_links-container {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.header_links-container .header_burger {
    border-radius: 12px;
    padding: 8px 16px 8px 12px;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--white);
    background: var(--blue);
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header_links {
    display: flex;
    gap: 48px;
    align-items: center;
    list-style-type: none;
}

.header_links a {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--white-80);
    text-decoration: none;
}


.block_two-col {
    display: flex;
    gap: 40px;
}

.block_two-col .block_two-col_item {
    flex-grow: 1;
    flex-basis: 40%;
}

.block_two-col .block_two-col_item.block_two-col_flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.block_two-col .block_two-col_item img {
    max-width: 640px;
    border-radius: 20px;
}

.block_two-col .block_two-col_item p {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--black-80);
    margin-bottom: 12px;
}

.block_two-col .block_two-col_item .btn-blue {
    margin-top: 48px;
    width: fit-content;
}

.product-card_btn {
    width: 100%;
    margin-top: 48px;
}

.product-card_btn button {
    margin: 0 auto;
    display: block;
}

.btn_white {
    border-radius: 16px;
    border: none;
    padding: 10px 24px;
    background: var(--white);
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
    width: fit-content;
}

.why-choose-us {
    border-radius: 24px;
    padding: 80px 60px;
    background: linear-gradient(338deg, #92d8ff 0%, #0e8dd4 100%), radial-gradient(43.87% 42.62% at 52.7% 69.92%, #fff 0%, #0098ee 100%), linear-gradient(161deg, rgba(78, 177, 233, 0.5) 0%, rgba(0, 103, 162, 0.5) 100%);
}

.title_flex-container {
    align-items: center;
    margin-bottom: 48px;
}

.h-mb0 {
    margin-bottom: 0 !important;
}

.why-choose-us_cards {
    display: flex;
    gap: 16px;
}

.why-choose-us_cards .why-choose-us_card {
    flex-grow: 1;
    flex-basis: 20%;
    background: var(--color-400);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.why-choose-us_cards .why-choose-us_card-name {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: 0.01em;
    text-align: center;
    color: var(--white);
}

.producers-list {
    display: flex;
    flex-wrap: wrap;
}

.producers-list .producers-list_item {
    padding: 39px 30px;
    flex-grow: 1;
    flex-basis: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.all-content_gray {
    padding-top: 120px;
    padding-bottom: 120px;
    margin-top: 120px;
    background: var(--grey);   
}

.info-cards_icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.info-cards_icons .info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    flex-basis: 20%;
}

.info-cards_icons .info-card .info-card_icon {
    width: 68px;
    height: 68px;
    border-radius: 100%;
    background: linear-gradient(145deg, #92d8ff 0%, #4eb1e9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.info-cards_icons .info-card .info-card_title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: 0.01em;
    text-align: center;
    color: var(--black);
    margin-bottom: 8px;
}

.info-cards_icons .info-card .info-card_subtitle {
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    text-align: center;
    color: var(--black);
} 


.header_select.lang-select {
    position: relative;
    max-width: 60px;
}

.header_select .lang-current {
    cursor: pointer;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--white-80);
    display: flex;
    align-items: center;
    gap: 8px;
}

.header_select.lang-select.active .arrow {
    transform: rotate(180deg);
}

.lang-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    border-top: none;
    background: white;
    z-index: 10;
}

.header_select-container {
    display: flex;
    align-items: center;
    gap: 24px;
}

.faq-container {
    display: flex;
    justify-content: space-between;
}

.faq-container .faq-left {
    width: 185px;
}

.faq-container .faq-right {
    width: 850px;
}

.faq-navigation {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-navigation .faq-navigation_item {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--black-80);
}

.faq-navigation .faq-navigation_item.active {
    font-weight: 700;
    color: var(--black);
}


.faq-tab { display: none; }
.faq-tab.active { display: block; }

.faq-navigation_item.active {
  /* стиль активной кнопки по желанию */
  font-weight: 700;
}

.faq-container .spoilers {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-container .spoilers .spoiler {
    border-radius: 12px;
    padding: 24px;
    background: var(--grey);
}

.faq-container .spoilers .spoiler .spoiler-head {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: 0.01em;
    color: var(--black);
    list-style-type: none;
    position: relative;
    cursor: pointer;
}

.faq-container .spoilers .spoiler .spoiler-content {
    margin-top: 16px;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
}

.spoiler-head::before {
    content: "";
    position: absolute;
    display: block;
    width: 32px;
    height: 32px;
    background-image: url(/images/icons/faq-plus.svg);
    transition: background-image .3s ease-in-out;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-position: center;
    background-repeat: no-repeat;
}

.spoiler[open] .spoiler-head::before {
    background-image: url(/images/icons/faq-minus.svg);
    transition: background-image .3s ease-in-out;
    background-position: center;
    background-repeat: no-repeat;
}

.footer {
    background: var(--black);
    padding-top: 80px;
    padding-bottom: 100px;
    margin-top: 120px;
}

.footer .footer_content-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer .footer_content-top .footer_content-logo {
    max-width: 305px;
}

.footer .footer_content-top .footer_content-logo img {
    width: 100%;
}

.footer .footer_content-top  p {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--white-80);
}

.footer_content-menu.footer-menu  {
    display: flex;
    margin-top: 40px;
}

.footer_content-menu.footer-menu .footer-menu_item {
    flex-grow: 1;
    flex-basis: 20%;
    max-width: 320px;
}

.footer-menu .footer-menu_title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: 0.01em;
    color: var(--white);
    margin-bottom: 24px;
}

.footer_content-menu .footer-menu_links {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer_content-menu .footer-menu_links a {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--white-80);
    text-decoration: none;
}

.footer-menu_contacts .footer-menu_text {
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--white-80);
    margin-bottom: 16px;
}

.blue-link_text {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--blue);
    text-decoration: none;
}

.footer-menu_icons {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 24px;
}

.footer_content-bottom {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}

.footer_content-bottom p {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--white-50);
}

.header.header-white {
    position: relative;
    border-bottom: 1px solid var(--border);
    padding: 12px 80px 16px;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.1);
    background: var(--white);
} 

.header.header-white .header_search {
    border: 1.50px solid #e6e6e6;
}
.header.header-white .header_search .search {
    /* background: var(--grey); */
    color: var(--black-50);
}

.header.header-white .header_search .search::placeholder {
    color: var(--black-50);
}

.header.header-white .header_search::before {
    background-image: url(/images/icons/search-grey.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.header.header-white .header_select .lang-current {
    color: var(--black);
}

.header.header-white .header_links a {
    color: var(--black);
}

.product-card_h1 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    color: var(--black);
    margin-bottom: 24px;
}

.product-card_container {
    display: flex;
    justify-content: space-between;
    gap: 52px;
    margin-top: 56px;
}

.product-card_left {
    width: 600px;
}
.product-card_right {
    width: 630px;
}

.product-card_char-def {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
}
.product-card_chars .product-card_char {
    display: flex;
    gap: 8px;
    align-items: baseline;
    margin-bottom: 8px;
}

.product-delivery_current {
    backdrop-filter: blur(4px);
    border: 1.50px solid var(--border);
    border-radius: 12px;
    padding: 10px 10px 10px 14px;
    min-width: 240px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.product-delivery_select {
    position: relative;
}

.product-delivery_current .product-delivery_selected {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: #3e4145;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-delivery_select.active .product-delivery_selected {
    color: var(--black-50);
}

.product-delivery_selected img, .product-delivery_list img {
    width: 25px;
}

.product-delivery_select.active .product-delivery_current svg {
    transform: rotate(180deg);
}

.product-card_char-days {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
}

.product-card_char-shipping {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card_char-service {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--black);
}
.product-delivery_list {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 10;
    border: 1.50px solid #e6e6e6;
    border-radius: 12px;
    background: var(--white);
    width: 240px;
    height: 220px;
    padding: 3px 0;
    padding-right: 8px;
}

.product-delivery_list-content {
    overflow-y: auto;
    height: 100%;
}

.product-delivery_list-content::-webkit-scrollbar {
    width: 3px;       
}
.product-delivery_list-content::-webkit-scrollbar-track {
    background: transparent;  
}
.product-delivery_list-content::-webkit-scrollbar-thumb {
    background-color: #e6e6e6;  
    border-radius: 4px;  
}

.shipping-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shipping-flags {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shipping-flags span {
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: #3e4145;
    border: 1px solid #ededed;
    border-radius: 8px;
    padding: 2px 8px;
}

.shipping-container .link-shipping {
    padding: 12px 16px;
    font-family: var(--third-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.01em;
    color: var(--blue);
    display: flex;
    text-decoration: none;
    gap: 8px;
}
.product-delivery_list .product-delivery_item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: #3e4145;
    padding: 12px;
    cursor: pointer;
}

.product-delivery_list .product-delivery_item:hover {
    background: var(--grey);
    border-radius: 8px;
}
.product-card_char-name {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
    width: 140px;
    padding: 8px;
}

.product-card_availability {
    position: relative;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--system-green);
    padding-left: 15px;
    white-space: nowrap;
}

.product-card_availability::before {
    content: "";
    position: absolute;
    border-radius: 100px;
    width: 8px;
    height: 8px;
    background: var(--system-green);
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.product-card_condition {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--blue);
    border-radius: 8px;
    padding: 4px 8px;
    backdrop-filter: blur(4px);
    background: var(--light-blue);
}

.product-card_payment {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-card_char-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card_char-price .product-card_price {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 32px;
    line-height: 125%;
    letter-spacing: 0.01em;
    color: var(--black);
}

.product-card_char-price .product-card_price-last {
    font-family: var(--third-family);
    font-weight: 300;
    font-size: 24px;
    line-height: 167%;
    letter-spacing: 0.01em;
    text-decoration: line-through;
    color: var(--black-50);
}

.product-card_char-price .product-card_price-label {
    border-radius: 8px;
    padding: 4px 8px;
    width: 83px;
    height: 28px;
    backdrop-filter: blur(4px);
    background: var(--system-light-red);
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--system-red);
    margin-left: 4px;
}

.product-card_btns {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
}

.btn-icon {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.btn-lightblue {
    border-radius: 16px;
    padding: 10px 24px;
    border-radius: 16px;
    padding: 10px 24px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
    background: var(--light-blue);
    border: none;
}

.product-card_info {
    margin-top: 80px;
}

/* .company-info_cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
} */

.company-info_cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 колонки */
    grid-auto-rows: auto;
    gap: 16px;
}
.company-info_card:nth-child(1) { grid-column: 1; grid-row: 1; }
.company-info_card:nth-child(2) { grid-column: 2; grid-row: 1; }
.company-info_card:nth-child(3) { grid-column: 3; grid-row: 1; }
.company-info_card-image { grid-column: 1; grid-row: 2; }
.company-info_card-form { 
    grid-column: 2 / span 2; grid-row: 2; 
    border-radius: 20px;
    padding: 40px;
    background: var(--white);
    min-height: 520px;
}

.company-info_card-image img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-info_cards .company-info_card {
    border-radius: 20px;
    padding: 20px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 415px;
    flex-grow: 1;
    flex-basis: 30%;
    justify-content: space-between;
}

.company-info_cards .company-info_label {
    border: 1px solid var(--white-80);
    border-radius: 100px;
    padding: 4px 20px;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: #3e4145;
}

.company-info_cards .company-info_img {
    border-radius: 100px;
    padding: 12px;
    background: var(--grey);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-info_cards .company-info_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.company-info_bottom a {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--blue);
    text-decoration: none;
}

.company-info_bottom span {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: #3e4145;
}

.container_text-page {
    margin-top: 40px;
}

.company-info_form .company-info_form-title {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 32px;
    line-height: 125%;
    letter-spacing: 0.01em;
    color: #021c3d;
    margin-bottom: 12px;
}

.company-info_form .company-info_form-subtitle {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--black-80);
    margin-bottom: 32px;
}

.company-info_form .company-info_form-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

/* .company-info_form label span {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: #3e4145;
} */

.company-info_form .text-input {
    border: 1.50px solid #e6e6e6;
    border-radius: 12px;
    padding: 10px 10px 10px 12px;
    width: 240px;
    height: 40px;
    backdrop-filter: blur(4px);
    background: var(--grey);
    outline: none;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--black-50);
}

.company-info_form textarea {
    border: 1.50px solid #e6e6e6;
    border-radius: 12px;
    padding: 10px 10px 10px 12px;
    width: 100%;
    height: 95px;
    backdrop-filter: blur(4px);
    background: var(--grey);
    overflow: hidden;  /* скрыть скролл */
    resize: none;
    outline: none;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--black-50);
}

.company-info_form .text-input::placeholder, .company-info_form .textarea::placeholder {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--black-50);
}

.company-info_contact-chcks {
    display: flex;
    align-items: center;
    gap: 16px;
}

.company-info_contact-chcks .chk, .company-info_contact-bottom .chk.chk_not-robot {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    cursor: pointer;
}

.chk input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.company-info_contact-chcks .chk-label, .company-info_contact-bottom .chk.chk_not-robot .chk-label {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: var(--black);
}

.company-info_contact-bottom .chk.chk_not-robot a {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: var(--blue);
    text-decoration: none;
}
.chk .box {
    cursor: pointer;
    height: 16px;
    width: 16px;
    position: relative;
    border-radius: 4px;
    background-color: var(--white);
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.chk .check {
    display: block;
    position: absolute;
    background-image: url(/images/icons/check.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    opacity: 0;
    top: -2px;
}

.chk input:checked+.box {
    border: 1px solid var(--blue);
    background: var(--blue);
}

.chk input:checked+.box .check {
    opacity: 1;
}

.company-info_contact-type {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
}

.company-info_contact-type .company-info_contact-text {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: #3e4145;
}

.company-info_contact-bottom {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.company-info_contact-bottom .btn-blue {
    padding: 12px 48px;
}

.product-card_info .product-card_char-name {
    max-width: 300px;
    width: 100%;
    padding-left: 0;
}

.product-card_info h2 {
    margin-bottom: 40px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 32px;
    line-height: 125%;
    letter-spacing: 0.01em;
    color: var(--black);
}
.product-card_info-text {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--black-80);
    max-width: 800px;
    margin-bottom: 16px;
}

.product-card_info-content h3 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: 0.01em;
    color: var(--black);
    margin-bottom: 24px;
}

.product-card_tech-table .tech-table_head {
    padding: 20px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--black-50);
}

.product-card_tech-table .tech-table_head:not(:first-child) {
    border-top: 1.50px solid var(--border);
}
.product-card_tech-table.tech-table {
    border-radius: 16px;
    border: 1.50px solid var(--border);
}

.product-card_tech-table .tech-table_row {
    display: flex;
    border-top: 1.50px solid var(--border);
}

.tech-table_row .tech-table_char {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--black-80);
    padding: 20px;
    flex-basis: 30%;
    flex-grow: 1;
    max-width: 305px;
    align-self: center;
    
}

.tech-table_value {
    border-left: 1.50px solid var(--border);
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--black-80);
    padding: 20px;
    flex-basis: 60%;
    flex-grow: 1;
}

.product-card_info-about .product-card_chars {
    margin-bottom: 48px;
}

.product-card_info .info-tab_content, .products-tabs .products-tab_content {
    display: none;
}

.product-card_info .info-tab_content.active, .products-tabs .products-tab_content.active {
    display: block;
}

.product-card_info-content {
    display: flex;
    gap: 20px;
}
.product-card_contacts {
    border-radius: 16px;
    padding: 24px;
    background: var(--grey);
    margin-bottom: 24px;
}

.product-card_contacts-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: 0.01em;
    color: var(--black);
    margin-bottom: 16px;
}

.product-card_info-left {
    max-width: 955px;
    width: 100%;
}

.product-card_info-right {
    width: 100%;
    max-width: 305px;
}

.product-card_contacts-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card_contacts button {
    margin-top: 24px;
    width: 100%;
}

.product-card_contacts-links a {
    width: 32px;
    height: 32px;
}

.product-card_info-tabs.info-tabs, .products-tabs_navigation {
    display: flex;
    align-items: center;
    border-bottom: 1.50px solid var(--border);
    margin-bottom: 48px;
}

.product-card_info-tabs .product-card_info-tab, .products-tabs_navigation .products-tab {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 160%;
    text-transform: capitalize;
    color: rgba(62, 65, 69, 0.5);
    padding: 16px 24px;
    cursor: pointer;
    white-space: nowrap;
}

.product-card_info-tabs .product-card_info-tab.is-active, .products-tabs_navigation .products-tab.is-active {
    text-transform: capitalize;
    color: var(--black);
    position: relative;
}

.product-card_info-tabs .product-card_info-tab.is-active::before, .products-tabs_navigation .products-tab.is-active::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--blue);
    bottom: 0;
    left: 0;
}

.product-card_info-block {
    margin-bottom: 32px;
}

.product-card_info-block .product-card_text {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
}

.ol-numbs {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 8px;
}

.ol-numbs li {
    counter-increment: step;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
}

.ol-numbs li::before{
    content: counter(step) ".";
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
}

.f-w600 {
    font-weight: 600 !important;
}

.h-mb16 {
    margin-bottom: 16px;
}

.about-company_container {
    display: flex;
    gap: 20px;
}

.about-company_container .about-company_left , .about-company_container .about-company_right {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 20px;
    flex-basis: 40%;
    max-width: 630px;
}

.about-company_image-block {
    position: relative;
    max-height: 502px;
    min-height: 430px;
}

.about-company_image-block .about-company_image-blur {
    position: absolute;
    border-radius: 12px;
    padding: 16px;
    width: 614px;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.2);
    bottom: 8px;
    left: 8px;
    right: 8px;
    display: flex;
    flex-direction: column;
}

.about-company_block-blue {
    border-radius: 16px;
    padding: 24px;
    background: linear-gradient(195deg, #89d4ff 0%, #4eb1e9 100%);
}

.about-company_block.about-company_block-light {
    background: var(--light-blue);
    border-radius: 16px;
    padding: 24px;
}

.about-company_block-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.about-company_container .about-company_title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 32px;
    line-height: 125%;
    letter-spacing: 0.01em;
    color: var(--white);
    margin-bottom: 12px;
}

.about-company_container .about-company_subtitle {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--white-80);
}

.about-company_block.about-company_block-light .about-company_title {
    color: var(--black);
}

.about-company_block.about-company_block-light .about-company_subtitle {
    color: var(--black-80);
}

.about-company_image-block img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.product_catalog-item {
    background: var(--grey);
    border-radius: 16px;
    padding: 8px;
}
.product_catalog-item_name {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
    margin-bottom: 8px;
}

.product_catalog-item_descr {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: var(--black-80);
}

.product_catalog-item_label {
    backdrop-filter: blur(4px);
    background: var(--system-light-red);
    border-radius: 8px;
    padding: 4px 8px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--system-red);
    position: absolute;
    left: 6px;
    top: 6px;
}

.product_catalog-item_label-blue {
    background: var(--light-blue);
    color: var(--blue);
}

.product_catalog-item_fav {
    color: #2CA3E6; 
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/images/icons/fav-icon_outlined.svg);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0px;
    right: 0px;
}

.product_catalog-item_fav:hover, .product_catalog-item_fav.active-fav {
    background-image: url(/images/icons/fav-icon_filled.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.product_catalog-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.product_catalog_top {
    height: 240px;
    position: relative;
    margin-bottom: 20px;
}

.product_catalog_top img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.product_catalog-item_bottom .price-block_actual {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 32px;
    line-height: 125%;
    letter-spacing: 0.01em;
    color: var(--black);
}

.product_catalog-item_bottom .price-block_last {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    letter-spacing: 0.01em;
    text-decoration: line-through;
    color: var(--black-50);
}

.product_catalog-item_center {
    padding: 0 12px;
}
.product_catalog-item_bottom {
    margin-top: 16px;
    padding: 0 12px 12px;
}

.product_catalog-item_bottom .product_catalog-item_price {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 16px;
}

.product-card_availability.product-card_noavailability {
    color: var(--system-yellow);
}

.product-card_availability.product-card_noavailability::before {
    background-color: var(--system-yellow);
}

.h-w100 {
    width: 100%;
}

.product-goods_slider .slick-list {
    margin-right: -20px;
}

.product-goods_slider .slick-slide {
    margin-right: 20px;
}

.product-goods_slider {
    position: relative;
}

.product-goods_slider .slick-arrow {
    position: absolute;
    top: -80px;
    width: 48px;
    height: 48px;
    background-color: transparent;
    border: none;
}

.product-goods_slider .slick-arrow.slick-next {
    right: 0;
    background-position: center;
    background-image: url(/images/icons/slider-next.png);
    background-repeat: no-repeat;
}
.product-goods_slider .slick-arrow.slick-prev {
    right: 50px;
    background-position: center;
    background-image: url(/images/icons/slider-prev.png);
    background-repeat: no-repeat;
}


.product-card_quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-card_quantity button {
    border-radius: 8px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background-color: var(--light-blue);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card_quantity .product-card_quantity-count {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: var(--black);
}

.certificates-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.cisco-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 16px;
}

.cisco-products .cisco-products_item {
    border-radius: 20px;
    background: var(--white);
    padding: 32px;
}

.cisco-products .cisco-products_image {
    height: 250px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cisco-products .cisco-products_name {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: 0.01em;
    color: var(--black);
    margin-bottom: 8px;
}

.cisco-products .cisco-products_descr {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 24px;
    color: var(--black-80);
    height: 100px;
}

.cisco-products .cisco-products_link-blue {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--blue);
    text-decoration: none;
}

.cisco-products .cisco-products_links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--black-80);
}
.cisco-products .cisco-products_image img {
    width: 100%;
}

.cisco-products .link_show-all {
    margin-top: 24px;
    display: block;
    width: fit-content;
}

.products-tabs_navigation {
    justify-content: space-between;
}

.products-tabs_btn button {
    margin: 48px auto 0;
    padding: 12px 50px;
}

.advantages-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.advantages-cards .advantages-card {
    background: var(--grey);
    border-radius: 12px;
    padding: 32px;
    flex-grow: 1;
    flex-basis: 30%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.advantages-card .advantages-card_text {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: 0.01em;
    text-align: center;
    color: #3e4145;
    max-width: 320px;
}

.about_accent-text {
    max-width: 840px;
    margin: 0 auto;
}

.about_accent-text .accent-text {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    text-align: center;
    color: var(--black);
}

.f-blue {
    color: var(--blue);
}

.about_brands-container {
    display: flex;
    max-width: 840px;
    align-items: center;
    justify-content: center;
    margin: 60px auto 0;
}

.about_brands-container .about_brands-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
}

.about_choose-card_title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: 0.01em;
    color: var(--white);
    margin-bottom: 12px;
}

.about_choose-image {
    position: relative;
    width: 725px;
    border-radius: 20px;
}

.about_choose-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.about_choose-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}


.about_choose-image .about_choose-card_content {
    position: absolute;
    bottom: 32px;
    left: 32px;
    max-width: 610px;
}

.about_choose-card_text {
    margin-bottom: 8px;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--white-80);
}

.about_choose-text {
    background: var(--color-400);
    border-radius: 20px;
    max-width: 415px;
    padding: 32px;
}

.ul_white li, .ul_blue li {
    position: relative;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: var(--white);
    list-style-type: none;
    padding-left: 10px;
    margin-bottom: 5px;
}

.ul_white li::before, .ul_blue li::before {
    content: "";
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--white);
    left: 0;
    top: 8px;
}

.ul_blue li::before {
    background: var(--blue);
}

.product-card_gallery {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.card_gallery-main {
    position: relative;
}
.card_gallery-main::before {
    cursor: pointer;
    content: "";
    position: absolute;
    display: block;
    width: 48px;
    height: 48px;
    background-image: url(/images/icons/product-img-icon.png);
    background-position: center;
    background-repeat: no-repeat;
    top: 8px;
    right: 8px;

}

.card-gallery_thumb-slider {
    width: 100px;
    width: 90px;
    height: 450px; /* видно 4.5 слайда */
}

.card-gallery_thumb-slider::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -24px; 
    width: 100%;
    height: 30px;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.8) 100%
    );
}

.thumb-slider .slick-list {
    height: 450px !important;
}

.card-gallery_thumb-slider .slick-list {
    margin-bottom: -8px;
}

.card-gallery_thumb-slider .thumb-item {
    width: 88px !important;
    height: 91px !important;
    border: 1.50px solid var(--border) !important;
    border-radius: 12px;
    margin-bottom: 8px;
    cursor: pointer;
}

.card-gallery_thumb-slider .thumb-item img {
    width: 100%;
    height: 100%;
    max-height: 85px;
    object-fit: contain;
}

.card-gallery_thumb-slider .thumb-item.active {
    border: 1.50px solid var(--blue) !important;
}

.product-card_gallery {
    width: 600px;
}

.card_gallery-main {
    border: 1.50px solid var(--border);
    border-radius: 16px;
    width: 490px;
    height: 490px;
    display: flex;
    align-items: center;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-gallery_thumb-slider .slick-prev {
    height: 16px;
    width: 16px;
    margin: 0 auto;
    display: block;
    margin-bottom: 8px;
    border: none;
    background-color: transparent;
    background-image: url(/images/icons/CaretUp.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.card-gallery_thumb-slider .slick-next {
    height: 16px;
    width: 16px;
    margin: 0 auto;
    display: block;
    margin-top: 14px;
    border: none;
    background-color: transparent;
    background-image: url(/images/icons/CaretDown.svg);
    background-position: center;
    background-repeat: no-repeat;
}
.card_info-currency_container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.card_info-currency-label {
    background: var(--grey);
    border-radius: 8px;
    padding: 2px 8px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
}

.currency-table .currency-table_head {
    display: flex;
    border-bottom: 1.50px solid var(--grey-hover);
}

.currency-table .currency-table_head span {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--black-80);
    padding: 20px;
    flex-grow: 1;
    flex-basis: 30%;
}

.currency-table .currency-table_head span:first-child, .currency-table_row .currency-table_first {
    flex-basis: 35%;
    flex-grow: 1;
    padding: 20px;
}

.currency-table_row .currency-table_first {
    display: flex;
    gap: 10px;
    align-items: center;
}

.currency-table_row {
    display: flex;
    border-bottom: 1.50px solid var(--grey-hover);
}

.currency-table_row > span {
    padding: 20px;
}
.currency-table_row span {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--black-80);
    flex-basis: 30%;
    flex-grow: 1;
}

.currency-table_row .currency-table_first span {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
}

.product-card_right .breadcrumbs {
    margin-bottom: 16px;
}

.container_text-page .breadcrumbs {
    margin-bottom: 24px;
}

.breadcrumbs .breadcrumbs-ul {
    display: flex;
    list-style-type: none;
    gap: 5px;
}

.breadcrumbs .breadcrumbs-ul a {
    text-decoration: none;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--black-80);    
}

.breadcrumbs .breadcrumbs-ul span {
    font-family: var(--third-family);
    color: var(--blue);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.catalog-search {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.catalog-search .catalog-search_btn {
    max-width: 200px;
    flex-grow: 1;
    flex-basis: 20%;
}

.catalog-search .catalog-search_input {
    backdrop-filter: blur(4px);
    background: var(--grey);
    border: 1.50px solid var(--border);
    border-radius: 12px;
    padding: 12px 10px 12px 45px;
    flex-grow: 1;
    flex-basis: 75%;
    background-image: url(/images/icons/search-grey.svg);
    background-repeat: no-repeat;
    background-position: 12px center;
}

.catalog-search .catalog-search_input::placeholder {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--black-50);
}

.catalog-tabs_circled {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.catalog-tabs_circled .tab_circled {
    backdrop-filter: blur(4px);
    background: var(--light-blue);
    border-radius: 48px;
    padding: 10px 24px;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--black);
    cursor: pointer;
}

.tab_circled-more {
    background-color: transparent;
    border: none;
    padding: 12px 8px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 143%;
    color: var(--black);
}
.catalog-tabs_circled .tab_circled-hidden.hide {
    display: none;
}

.catalog-group_items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}
.catalog-group_items .catalog-item {
    background: var(--grey);
    border-radius: 20px;
    padding: 32px 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.catalog-item_flex {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.catalog-group_items .catalog-item .catalog-item_name {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
}

.catalog-group_items .catalog-item .catalog-item_count {
    background: var(--white);
    border-radius: 100px;
    padding: 2px;
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 143%;
    color: var(--black-80);
}

.catalog-tabs_container .catalog {
    margin-top: 40px;
}

.catalog-tabs_container .catalog .catalog-item img {
    height: 40px;
    width: 100%;
}
.catalog-group_letter {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 32px;
    line-height: 125%;
    letter-spacing: 0.01em;
    color: var(--black);
    margin-bottom: 24px;
}

.catalog-tabs_circled .tab_circled.active {
    backdrop-filter: blur(4px);
    border: 1px solid var(--blue);
    border-radius: 48px;
    padding: 10px 24px;
    color: var(--blue);
    background-color: transparent;
}

.catalog-tabs_content {
    display: none;
}

.catalog-tabs_content.active {
    display: block;
}

.hide {
    display: none;
}

.tab_circled,
.catalog-alphabet_item {
    cursor: pointer;
}

.catalog-tabs_content-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.catalog-alphabet {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}
.catalog-alphabet_item.catalog-alphabet_item-nums {
    text-align: right;
    flex-grow: 1;
}

.catalog-alphabet .catalog-alphabet_item {
    padding: 5px 10px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
}

.catalog-alphabet .catalog-alphabet_item.active {
    color: var(--blue);
}
.tab_circled.active {
    background: #313438;
    color: #fff;
}

.catalog-alphabet_item.disable {
    color: rgba(159, 160, 162, 0.5);
    pointer-events: none;
}

.login-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(39, 39, 39, 0.5);
    z-index: 1000;
}
.login-modal.active {
    display: flex;
}
.login-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 535px;
    background: #fff;
    border-radius: 12px;
    padding: 32px;
}
.login-modal__close {
    position: absolute;
    border: none;
    background: transparent;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 4px;
    right: 4px;
}
.login-modal__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 32px;
    line-height: 125%;
    letter-spacing: 0.01em;
    color: var(--black);
    margin-bottom: 16px;
    text-align: center;
    margin-top: 40px;
}
.login-modal__subtitle {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
    margin-bottom: 24px;
    text-align: center;
}
.login-form__group {
    margin-bottom: 20px;
}
.login-form__label {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: #3e4145;
    display: inline-block;
    margin-bottom: 8px;
}
.login-form__label span {
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--system-red);
}
.login-form__input {
    backdrop-filter: blur(4px);
    background: var(--grey);
    border: 1.50px solid #e6e6e6;
    border-radius: 12px;
    padding: 10px 10px 10px 12px;
    width: 100%;
    height: 40px;
    outline: none;
}
.login-form__input::placeholder {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--black-50);
}
.login-form__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.login-form__checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}
.login-form__checkbox .chk-label {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: var(--black);
}
.login-form__forgot {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: var(--blue);color: #45aaf2;
    text-decoration: none;
}
.login-form__submit {
    width: 100%;
}
.login-form__divider {
    position: relative;
    margin: 32px 0 24px;
    text-align: center;
}
.login-form__divider::before,
.login-form__divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--black-50);
}
.login-form__divider::before {
    left: 0;
}
.login-form__divider::after {
    right: 0;
}
.login-form__divider span {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: var(--black-50);
}

.login-social {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.login-social__btn {
    background: var(--grey-hover);
    flex: 1;
    height: 48px;
    border-radius: 6px;
    padding: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--black-80);
}
.login-form__register {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
    text-align: center;
}
.login-form__register .register-link {
    font-family: var(--font5);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: var(--blue);    
    text-decoration: none;
}
.cart {
    display: flex;
    gap: 20px;
    margin: 32px auto;
}
.cart .cart-content {
    border-radius: 12px;
    padding: 32px;
    flex-grow: 1;
    flex-basis: 65%;
    max-width: 850px;
    background: var(--white);
    height: fit-content;
}
.cart-head {
    display: grid;
    grid-template-columns: 2fr .8fr .8fr .8fr;
    margin-bottom: 20px;
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 143%;
    color: var(--black-80);
}
.cart-head>div:last-child {
    text-align: right;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr .8fr .8fr .8fr;
    align-items: center;
    gap: 20px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

/* PRODUCT */

.cart-product {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-product__image {
    width: 95px;
    height: 100%;
    flex-shrink: 0;
}
.cart-product__image img {
    width: 100%;
    display: block;
}

.cart-product__content {
    display: flex;
    flex-direction: column;
}

.cart-product__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
    text-decoration: none;
    margin-bottom: 4px;
}
.cart-product__content span {
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--black-80);
    margin-bottom: 2px;
}
.cart-price {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #3e4145;
}
.cart-subtotal {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: right;
    color: #3e4145;
}
.cart-row {
    margin-bottom: 20px;
}
.cart-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.cart-actions button {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    cursor: pointer;
}

.cart-bottom {
    display: flex;
    justify-content: flex-end;
    margin-top: 32px;
}

.continue-btn {
    background: var(--light-blue);
    border-radius: 12px;
    padding: 10px 24px;
    height: 46px;
    border: none;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 143%;
    color: var(--black);
}
h1.cart-title {
    margin-bottom: 24px;
}
.cart-subtitle {
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--black-80);
}
.cart-summary {
    border-radius: 12px;
    padding: 32px 24px;
    max-width: 415px;
    flex-grow: 1;
    flex-basis: 30%;
    background: var(--white);
    height: fit-content;
}
.cart-summary__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: 0.01em;
    color: var(--black);
    margin-bottom: 20px;
}

.summary-list {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.summary-row:not(:last-child) {
    margin-bottom: 12px;
}
.summary-row span:first-child {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--black-80);
}
.summary-row span:last-child {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #3e4145;
}
.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    color: var(--black);
    margin-bottom: 32px;
}

.cart-summary .checkout-btn {
    margin-bottom: 20px;
    width: 100%;
}
.cart-summary .quote-btn {
    width: 100%;
    margin-bottom: 32px;
}
.cart-summary .express p {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
    margin-bottom: 8px;
}
.express-list {
    display: flex;
    gap: 16px;
    align-items: center;
}
.express-list button {
    height: 54px;
    border-radius: 8px;
    padding: 16px;
    background: var(--grey-hover);
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-summary__select {
    border-radius: 12px;
    width: 100%;
    position: relative;
    background: var(--grey-hover);
    cursor: pointer;
    margin-bottom: 20px;
}
.cart-summary__select-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 143%;
    color: #3e4145;
}

.cart-summary__select.active svg {
    transform: rotate(-180deg);
}
.cart-summary__select-list {
    position: absolute;
    width: 100%;
    z-index: 10;
    display: none;
    border: 1px solid var(--grey-hover);
    background:#fff;
}
.cart-summary__select-item {
    padding: 5px;
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 143%;
    color: #3e4145;
}
.cart-row_bottom {
    display: flex;
    gap: 50px;
    justify-content: right;
}
.cart-edit-box {
    display:none;
    width: 100%;
    max-width: 525px;
    margin-top: 12px;
    position: relative;
}
.cart_btn-edit.active {
    opacity: .5;
}

.cart-edit-box.active {
    display:block;
}

.cart-edit-box textarea {
    border: 1.50px solid #e6e6e6;
    border-radius: 12px;
    padding: 10px 10px 10px 12px;
    width: 100%;
    height: 80px;
    resize: none;
    outline: none;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--black);
}
.cancel-btn {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--blue);
    background-color: transparent;
    border: none;
    position: absolute;
    bottom: 8px;
    right: 10px;
}

.quote-form .form-group, .shipping-form .form-group, .card-fields .form-group, .company-info_form .form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.quote-form .form-group label, .shipping-form .form-group label, .card-fields .form-group label, .company-info_form .form-group label {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    margin-bottom: 8px;
    color: #3e4145;
}

.quote-form .form-group label span, .shipping-form .form-group label span, .card-fields .form-group label span, .company-info_form .form-group label span {
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--system-red);
}

.quote-form .form-group_flex {
    display: flex;
    gap: 16px;
}

.input-default, .textarea-default {
    border: 1.50px solid #e6e6e6;
    border-radius: 12px;
    padding: 10px 10px 10px 12px;
    height: 40px;
    backdrop-filter: blur(4px);
    background: var(--grey);
    outline: none;
    width: 100%;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: #3e4145;
}

.quote-form .cart-summary__select-head, .shipping-form .cart-summary__select-head {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--black-50);
}

.textarea-default {
    resize: none;
    height: 105px;
}

.input-default::placeholder, .textarea-default::placeholder {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--black-50);
}

.shipping-address {
    max-width: 1280px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
}

.shipping-address__title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.checkout-content_title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    color: var(--black);
}

.shipping-form, .shipping-list {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.shipping-form .shipping-form_col3, .shipping-form .shipping-form_col2 {
    display: flex;
    gap: 20px;   
}

.shipping-form .shipping-form_col2 {
    flex-wrap: wrap;
    margin-top: 20px;
}

.shipping-form .shipping-form_col3 .form-group {
    flex-grow: 1;
    flex-basis: 30%;
}

.shipping-form .form-group, .shipping-form .cart-summary__select, .payment-method__content .form-group {
    margin: 0;
}

.shipping-form .shipping-form_col2 .form-group {
    flex-grow: 1;
    flex-basis: 45%;
}
.shipping-methods {
    margin-top: 32px;
    background: var(--grey);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}
.shipping-methods_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.shipping-methods_title .shipping-methods_weight {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    text-align: right;
    color: var(--black-80);
}
.shipping-option {
    display: flex;
    align-items: center;
    gap: 20px;
}
.shipping-option:not(:last-child) {
    margin-bottom: 20px;
}
.shipping-option input[type="radio"] {
    margin: 0;
    cursor: pointer;
}
.shipping-option .price {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
}
.shipping-option .method {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    text-align: right;
    color: var(--black-80);
}
.shipping-option:has(input:checked) {
    border-color: var(--blue);
    background: #f5f9ff;
}
.cart-summary_product {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.cart-summary_product {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.cart-summary_product:last-child {
    margin-bottom: 32px;
}
.cart-summary_product img {
  width: 75px;
  object-fit: cover;
}
.cart-summary_product-grey {
    display: block;
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--black-80);
    margin-bottom: 2px;
}

.cart-summary_product-name {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
    margin-bottom: 4px;
}
.cart-summary_product-price {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #3e4145;
    margin-top: 6px;
}
.checkout-content_subtitle {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--black-50);
    margin-top: 8px;
}
.payment-method {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    padding-top: 20px;
}
.payment-method__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.payment-method__label {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
}
.payment-option {
  display: block;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 12px;
  cursor: pointer;
}
.card-fields {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}
.payment-method__content .chk-label {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: var(--black);
}
.payment-method__content .chk {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-logos {
    display: flex;
    align-items: center;
    gap: 8px;
}
.card-logos_item {
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    width: 45px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-logos_item.card-logos_item-blue {
    background: #1f72cd;
}
.header-mobile_content {
    display: none;
}
.cart-mobile {
    display: none;
}
@media (max-width: 1300px) {
    .catalog-alphabet {
        flex-wrap: wrap;
    }
    .catalog-alphabet_item.catalog-alphabet_item-nums {
        flex-grow: unset;
    }
    .container, .top-banner_slider-container, .top-banner_slider-dots-wrap {
        max-width: 945px;
    }
    .top-banner_slider .top-banner_slider-item img {
        width: 550px;
    }
    .top-banner_slider-title {
        margin-bottom: 16px;
    }
    .top-banner_slider-subtitle {
        margin-bottom: 40px;
    }
    .all-content_blue, .all-content_gray {
        margin-top: 80px;
        padding-top: 80px;
        padding-bottom: 80px;
    }
    section {
        margin-top: 80px;
    }
    .title_flex-container .f_def-white {
        max-width: 620px;
    }
    .title_flex-container {
        margin-bottom: 40px;
    }
    .product-cards .product-card {
        height: 300px;
    }
    .product-card_btn {
        margin-top: 40px;
    }
    .block_two-col .block_two-col_item img {
        width: 450px;
        height: 450px;
        object-fit: cover;
    }
    h2 {
        margin-bottom: 40px;
    }
    .why-choose-us .title_flex-container .f_def-white {
        max-width: 410px;
    }
    .why-choose-us_cards .why-choose-us_card {
        padding: 20px;
    }
    .why-choose-us_cards .why-choose-us_card img {
        width: 90px;
    }
    .producers-list .producers-list_item {
        padding: 15px;
    }
    .blog-list .blog-list_item img {
        height: 167px;
    }
    .faq-container {
        gap: 50px;
    }
    .faq-container .faq-right {
        width: 100%;
    }
    .banner-bottom {
        height: 360px;
        background-size: cover;
    }
    .banner-bottom .banner-bottom_title {
        margin-bottom: 24px;
    }
    .footer {
        margin-top: 80px;
        padding-bottom: 80px;
    }
    .header_container {
        gap: 48px;
    }
    .header.header-white {
        padding: 12px 40px 16px;
    }
    .company-info_form .text-input {
        width: 100%;
    }
    h1 {
        margin-bottom: 32px;
    }
    .company-info_contact-bottom {
        margin-top: 32px;
    }
    .company-info_card-form {
        min-height: unset;
        padding: 32px;
    }
    .company-info_contact-bottom .chk.chk_not-robot {
        max-width: 300px;
    }
    .about_choose-image img {
        object-fit: cover;
    }
    .why-choose-us .title_flex-container .f_def-white, .section-blue .title_flex-container .f_def-white {
        max-width: 400px;
    }
    .about_choose-text {
        padding: 24px;
    }
    .about_choose-image .about_choose-card_content {
        left: 24px;
        right: 24px;
    }
    .certificates-container {
        display: flex;
        overflow: auto;
    }
    ::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }
    ::-webkit-scrollbar-track {
        background: transparent;
    }
    ::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.2);
        border-radius: 20px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: rgba(255,255,255,0.35);
    }
    .about-company_image-block .about-company_image-blur {
        width: fit-content;
    }
    .about-company_container .about-company_title {
        font-size: 28px;
    }
    .about-company_image-block img {
        object-fit: cover;
    }
    .about-company_image-block {
        max-height: unset;
        min-height: unset;
        height: 100%;
    }
    .products-tabs_navigation {
        overflow: auto;
    }
    .cart {
        flex-direction: column;
    }
    .cart .cart-content {
        max-width: unset;
    }
    .cart-summary {
        max-width: unset;
    }
    .express-list button {
        flex-basis: 30%;
        flex-grow: 1;
    }
    .summary_btns {
        display: flex;
        gap: 20px;
        align-items: baseline;
    }
    .quote-form {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }
    .quote-form .form-group:first-child {
        flex-basis: 30%;
    }
    .quote-form .form-group_flex {
        flex-basis: 60%;
        flex-grow: 1;
    }
    .quote-form .form-group {
        flex-grow: 1;
        margin: 0;
    }
    .quote-form .form-group:nth-child(4), .quote-form .form-group:nth-child(3) {
        flex-basis: 40%;
    }
    .quote-form .cart-summary__select {
        margin: 0;
    }
    .card_gallery-main {
        width: 380px;
        height: 380px;
    }
    .product-card_gallery {
        width: unset;
        flex-direction: column-reverse;
    }
    .product-card_left, .product-card_right {
        width: unset;
    }
    .product-card_container {
        gap: 20px;
        margin-top: 48px;
    }
    .card-gallery_thumb-slider {
        width: 380px;
        height: unset;
        max-height: 80px;
    }       
    .product-card_info {
        margin-top: 56px;
    }
    .thumb-slider .slick-list {
        height: 95px !important;
    }  
    .card-gallery_thumb-slider .thumb-item {
        width: 60px !important;
        height: 60px !important;
        margin-right: 8px;
    }       
    .card-gallery_thumb-slider .slick-prev {
        margin: 0;
        position: absolute;
        left: 0;
        top: 50%;
        z-index: 100;
        transform: translateY(-50%) rotate(270deg);
    }
}

@media (max-width: 900px) {
    .product-card_btns button {
        flex-basis: 40%;
        flex-grow: 1;
    }
    .product-card_h1 {
        font-size: 36px;
    }
    .product-card_info-content {
        flex-direction: column;
        gap: 40px;
    }
    .product-card_info-right {
        max-width: unset;
        display: flex;
        gap: 20px;
    }
    .product-card_contacts {
        width: 100%;
    }
    .container, .top-banner_slider-container {
        max-width: 690px;
        position: relative;
    }
    .top-banner_slider .top-banner_slider-item {
        overflow: hidden;
    }
    .cards-grey_flex {
        flex-direction: column;
    }
    .cards-grey_flex .cards-grey_top {
        margin-bottom: 8px;
        font-size: 28px;
    }
    .cards-grey_flex .cards-grey_top p br {
        display: none;
    }
    .cards-grey_flex .cards-grey_text {
        max-width: 100%;
    }
    .title_flex-container {
        margin-bottom: 32px;
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    .product-cards .product-card img {
        max-height: 200px;
        top: unset;
    }
    .product-cards .product-card {
        height: 240px;
        padding: 24px 20px;
    }
    .product-card .product-card_name {
        font-size: 20px;
    }
    .product-card_btn {
        margin-top: 32px;
    }
    .block_two-col .block_two-col_item img {
        width: 100%;
    }
    .block_two-col {
        flex-direction: column;
    }
    .block_two-col .block_two-col_item .btn-blue {
        margin-top: 32px;
    }
    h2 {
        margin-bottom: 32px;
        font-size: 36px;
    }
    .why-choose-us_cards {
        flex-wrap: wrap;
    }
    .why-choose-us_cards .why-choose-us_card {
        flex-basis: 40%;
    }
    .why-choose-us_cards .why-choose-us_card-name {
        font-size: 20px;
    }
    .producers-list .producers-list_item {
        justify-content: flex-start;
    }
    .info-cards_icons .info-card {
        flex-basis: 40%;
    }
    .info-cards_icons {
        gap: 32px 20px;
    }
    .blog-list {
        overflow: scroll;
    }
    * {
        scrollbar-width: thin;
        scrollbar-color: rgba(255,255,255,0.2) transparent;
    }
    ::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }
    ::-webkit-scrollbar-track {
        background: transparent;
    }
    ::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.2);
        border-radius: 20px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: rgba(255,255,255,0.35);
    }
    .faq-container {
        flex-direction: column;
        gap: 24px;
    }
    .faq-container .faq-left {
        width: 100%;
    }
    .faq-navigation {
        flex-direction: row;
        gap: 16px;
        overflow: scroll;
    }
    .faq-navigation .faq-navigation_item {
        white-space: nowrap;
    }
    .faq-container .spoilers .spoiler .spoiler-head {
        font-size: 20px;
    }
    .banner-bottom {
        padding: 40px 32px;
        height: fit-content;
    }
    .banner-bottom .banner-bottom_title {
        font-size: 36px;
    }
    .top-banner_slider-title {
        font-size: 40px;
    }
    .block_two-col.about-us_top {
        flex-direction: column-reverse;
    }
    .block_two-col.about-us_top .block_two-col_item img {
        max-width: unset;
    }
    .block_two-col.about-us_top .btns-container {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
    }
    .block_two-col.about-us_top .btns-container button {
        width: 100%;
        margin: 0;
    }
    .about_accent-text .accent-text {
        font-size: 36px;
    }
    .about_brands-container {
        margin-top: 40px;
    }
    .section-blue {
        padding: 80px 32px;
    }
    .title_flex-container.link-flex-container {
        flex-direction: row;
        align-items: center;
    }
    .cisco-products {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    .products_image  {
        margin-bottom: 20px;
        height: 220px;
    }
    .cisco-products .cisco-products_item {
        padding: 24px;
    }
    .product_catalog-item_bottom .price-block_actual {
        font-size: 28px;
    }
    .product_catalog-item_bottom .price-block {
        display: flex;
        flex-direction: column;
    }
    .advantages-cards .advantages-card {
        flex-basis: 40%;
        padding: 24px;
    }
    .advantages-card .advantages-card_text {
        font-size: 20px;
    }
    .company-info_cards {
        display: flex;
        flex-wrap: wrap;
    }
    .company-info_cards .company-info_card {
        flex-grow: 1;
        flex-basis: 40%;
        max-width: unset;
    }
    .company-info_cards .company-info_card:last-child {
        flex-basis: 100%;
    }
    .company-info_cards .company-info_card-image, .company-info_cards .company-info_card-form {
        flex-grow: 1;
        flex-basis: 100%;
    }
    .company-info_cards .company-info_card-image {
        order: 1;
        max-height: 515px;
    }
    .header_links, .header_links-container {
        gap: 32px;
    }
    .top-banner_slider .top-banner_slider-item img {
        width: 400px;
        height: 100%;
    }
    .top-banner_slider-right {
        position: absolute;
        right: -125px;
        bottom: 22%;
    }
    .top-banner_slider-content button {
        width: 100%;
    }
    .footer {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .footer .footer_content-top {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
    .footer_content-menu.footer-menu {
        row-gap: 32px;
        flex-wrap: wrap;
    }
    .footer_content-menu.footer-menu .footer-menu_item {
        flex-basis: 40%;
    }
    .catalog-group_items .catalog-item {
        padding: 24px 32px;
    }
    .catalog-group_items {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .catalog-group_letter {
        font-size: 28px;
    }
    h1 {
        font-size: 40px;
    }
    .top-banner_slider-content {
        max-width: 415px;
    }
    .payment-method__content .card-fields {
        flex-wrap: wrap;
    }
    .payment-method__content .form-group {
        flex-grow: 1;
    }
    .cart-desktop {
        display: none;
    }
    .cart-mobile {
        display: block;
    }
    .cart-mobile .cart-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 0;
        border-top: none;
    }
    .cart-mobile .cart-item_content {
        width: 100%;
    }
    .cart-mobile .cart-row:not(:first-child) .cart-item {
        border-top: 1px solid var(--border);
        padding-top: 20px;
    }
    .cart-mobile .cart-item_top {
        margin-bottom: 12px;
        display: flex;
        align-items: start;
        justify-content: space-between;
        gap: 24px;
    }
    .cart-mobile .cart-item_bottom {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }
    .cart-item_bottom-col {
        flex-grow: 1;
        flex-basis: 30%;
        gap: 5px;
        display: flex;
        flex-direction: column;
    }
    .cart-mobile .cart-item_head {
        font-family: var(--second-family);
        font-weight: 600;
        font-size: 14px;
        line-height: 143%;
        color: var(--black-80);
    }
    .cart-mobile .cart-price {
        display: flex;
        align-items: center;
        height: 100%;
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
        color: #3e4145;
    }
    .cart-item_bottom-col:last-child {
        align-items: flex-end;
    }
    .cart-item_bottom-col:last-child .cart-price {
        font-weight: 600;
    }
    .header-white .header_btns {
        gap: 8px;
    }
    .header-white .header_right, .header-white .header_select-container {
        gap: 20px;
    }
    .product-card_container {
        flex-direction: column;
        gap: 40px;
        position: relative;
    }
    .product-card_left {
        padding-top: 45px;
    }
    .product-card_container .breadcrumbs {
        position: absolute;
        top: 0;
    }
    .shipping-container {
        flex-direction: column;
        gap: 5px;
        align-items: start;
    }
    .product-card_info h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }
    .product-card_info-tabs.info-tabs, .products-tabs_navigation {
        margin-bottom: 32px;
    }
    .product-card_info-content h3, .product-card_contacts-title {
        font-size: 20px;
    }
    .product-card_contacts {
        padding: 24px 20px;
        justify-content: space-between;
        display: flex;
        flex-direction: column;
        margin: 0;
    }
    .card_gallery-main {
        height: 700px;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .slider-title {
        max-width: 220px;
    }
    .product-card_info-tabs .product-card_info-tab {
        font-size: 18px;
        padding: 10px;
    }
    .product-card_info-right {
        flex-direction: column;
    }
    .product-card_tech-table .tech-table_row {
        flex-direction: column;
        padding: 16px;
    }
    .tech-table_row .tech-table_char, .tech-table_value {
        max-width: unset;
        align-self: flex-start;
        padding: 0;
    }
    .product-card_info .product-card_char-name, .product-card_char-def {
        max-width: unset;
        width: unset;
        padding-left: 0;
        flex-basis: 40%;
        flex-grow: 1;
    }
    h1 {
        margin-bottom: 16px;
    }
    .block_two-col .block_two-col_item img {
        max-height: 320px;
    }
    .block_two-col .block_two-col_item .btn-blue {
        margin-top: 24px;
    }
    .block_two-col.about-us_top .block_two-col_item img {
        height: 330px;
    }
    .block_two-col.about-us_top .btns-container {
        margin-top: 32px;
    }
    .block_two-col.about-us_top {
        gap: 32px;
    }
    .about_brands-container {
        flex-direction: column;
        margin-top: 20px;
    }
    .about_choose-cards {
        flex-direction: column;
    }
    .about_choose-image {
        width: 100%;
        height: 340px;
    }
    .about_choose-text img {
        height: 60px;
        margin-bottom: 20px;
    }
    .about_choose-card_title {
        font-size: 20px;
    }
    .section-blue {
        padding: 64px 20px 20px;
    }
    .about-company_container {
        flex-direction: column;
    }
    .about-company_image-block {
        height: 370px;
    }
    .about-company_container .about-company_right {
        flex-direction: column-reverse;
    }
    .producers-list .producers-list_item img {
        width: 130px;
    }
    .container {
        max-width: 335px;
    }
    .cisco-products .cisco-products_image {
        max-height: 220px;
        margin-bottom: 0;
    }
    .btn-blue {
        font-size: 14px;
    }
    .advantages-cards .advantages-card {
        flex-basis: 100%;
        padding: 20px;
        gap: 16px;
    }
    .company-info_cards .company-info_card-form {
        padding: 20px;
    }
    .company-info_cards .company-info_card-image {
        padding: 0;
        max-height: 300px;
    }
    .company-info_form .company-info_form-title {
        font-size: 28px;
    }
    .company-info_form .company-info_form-row {
        flex-direction: column;
    }
    .company-info_form .company-info_form-row .form-group {
        width: 100%;
    }
    .shipping-form .form-group, .company-info_form .form-group {
        margin-bottom: 12px;
    }
    .company-info_contact-type {
        flex-direction: column;
        gap: 12px;
        align-items: start;
    }
    .company-info_contact-bottom {
        margin-top: 24px;
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
    .login-modal {
        inset: unset;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }
    .login-modal__dialog {
        max-width: unset;
        height: 100%;
        border-radius: 0;
    }
    .footer {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .container, .top-banner_slider-container {
        max-width: 335px;
    }
    .product-cards {
        overflow: auto;
        flex-wrap: nowrap;
    }
    .product-cards .product-card {
        min-width: 218px;
    }
    .product-card_btn button {
        width: 100%;
    }
    .all-content_blue, .all-content_gray {
        padding-top: 64px;
        padding-bottom: 64px;
        margin-top: 64px;
    }
    .block_two-col .block_two-col_item img {
        height: 330px;
    }
    section {
        margin-top: 64px;
    }
    .why-choose-us {
        padding: 64px 10px;
    }
    .why-choose-us_cards {
        flex-wrap: nowrap;
        overflow: scroll;
    }
    .why-choose-us_cards .why-choose-us_card {
        min-width: 200px;
    }
    .producers-list .producers-list_item img {
        max-width: 120px;
    }
    .info-cards_icons {
        overflow: auto;
        flex-wrap: nowrap;
    }
    .info-cards_icons .info-card {
        min-width: 200px;
    }
    .header_links-container {
        display: none;
    }
    .container_text-page {
        margin-top: 24px;
    }
    h1 {
        margin-bottom: 24px;
    }
    .catalog-search {
        margin-bottom: 24px;
    }
    .catalog-tabs_circled {
        margin-bottom: 16px;
    }
    .catalog-alphabet {
        gap: 8px;
        flex-wrap: wrap;
    }
    .catalog-tabs_container .catalog {
        margin-top: 32px;
    }
    .banner-bottom .banner-bottom_text {
        margin-bottom: 32px;
    }
    .catalog-group_letter, .banner-bottom .banner-bottom_title {
        margin-bottom: 20px;
    }
    .banner-bottom {
        height: 500px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .top-banner_slider-right {
        display: none;
    }
    .top-banner_slider-container, .top-banner_slider-dots-wrap {
        max-width: 335px;
    }
    .top-banner_slider .top-banner_statistic {
        flex-wrap: wrap;
    }
    .faq-container .spoilers .spoiler .spoiler-head h3 {
        max-width: 250px;
    }
    .top-banner_slider-subtitle {
        margin-bottom: 32px;
    }
    .top-banner_slider .top-banner_statistic .top-banner_statistic-big {
        font-size: 32px;
        margin-bottom: 4px;
    }
    .top-banner_slider-bottom {
        margin: 0;
    }
    .top-banner_slider-container {
        gap: 20px;
    }
    .top-banner_slider-dots-wrap {
        bottom: 24px;
    }
    .header_search, .header_right {
        display: none;
    }
    .header-mobile_content {
        display: block;
    }
    .header-mobile_content {
        display: flex;
        gap: 5px;
        align-items: center;
        min-width: 150px;
    }
    .header-mobile_burger {
        background: var(--blue);
        padding: 8px;
        border-radius: 12px;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        margin-left: 10px;
    }
    .header_container {
        gap: 10px;
    }
    .cart .cart-content {
        padding: 24px;
    }
    .shipping-form .shipping-form_col3, .shipping-form .shipping-form_col2 {
        flex-direction: column;
        gap: 16px;
    }
    .shipping-form .shipping-form_col3 .form-group {
        margin: 0;
    }
    .shipping-form .shipping-form_col2 {
        margin-top: 16px;
    }
    .shipping-methods {
        padding: 16px;
    }
    .shipping-methods_title {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .shipping-option {
        flex-wrap: wrap;
        margin-bottom: 16px;
        gap: 0 8px;
    }
    .shipping-option .method {
        flex-grow: 1;
        flex-basis: 100%;
        text-align: left;
        margin-left: 22px;
    }
    .payment-method__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .payment-method__header-paypal {
        flex-direction: row;
        align-items: center;
    }
    .cart-mobile.cart-content {
        padding: 20px;
        padding-top: 0;
    }
    .cart-mobile .cart-item {
        flex-direction: column;
        gap: 12px;
        position: relative;
        padding-top: 20px;
    }
    .cart-mobile .cart-actions {
        position: absolute;
        right: 0;
        top: 20px;
    }
    .cart-mobile .cart-item_head {
        display: none;
    }
    .quote-form, .quote-form .form-group_flex {
        flex-direction: column;
    }
    .summary-total {
        margin-bottom: 24px;
        font-size: 16px;
    }
    .cart-summary__title {
        font-size: 20px;
    }
    .header.header-white {
        padding: 12px 20px 16px;
    }
    .cart-summary .summary_btns {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }
    .cart-summary .summary_btns button {
        margin: 0;
        padding: 10px;
    }
    .express-list button img {
        height: 30px;
        width: 100%;
        object-fit: contain;
    }
    .cart-item_mob-hide {
        display: none;
    }
    .catalog-group_items {
        margin-bottom: 32px;
    }
}