:root {
    --color-primary: #3180C1;
    --color-primary-dark: #24628f;
    --color-dark: #2A2A2A;
    --color-text: #4E4E4E;
    --color-gray: #989898;
    --color-border: #CACACA;
    --color-bg-light: #F2F6FB;
    --color-navy: #0C2742;
    --color-red: #E5482F;
    --color-yellow: #E0A32E;
    --color-green: #27C06A;
    --color-blue-gray: #9FB1C4;
    --color-blue-gray-2: #647689;
    --color-blue-gray-3: #8294A6;

    --container-width: 1415px;
    --radius: 12px;
    --font-main: 'Onest', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--color-dark);
    font-size: 16px;
    line-height: 1.4;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (min-width: 1450px) {
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
    width: 1415px;
}
}
/* ---------- Общие элементы ---------- */

.section-eyebrow {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #727272;
    margin-bottom: 10px;
}

.section-eyebrow--red {
    color: #E5482F;
}

.section-eyebrow.section-eyebrow--light {
    color: #fff;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: #2A2A2A;
}

.section-title.section-title--light {
    color: #fff;
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-gray);
    margin-bottom: 32px;
    max-width: 640px;
}

.link-arrow {
    display: inline-block;
    transition: transform .2s ease;
}

a:hover .link-arrow {
    transform: translateX(3px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-primary);
    color: #fff;
}

.btn--primary:hover {
    background: var(--color-primary-dark);
}

.btn--outline {
    background: transparent;
    color: var(--color-dark);
    border-color: var(--color-border);
}

.btn--outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn--white {
    background: #fff;
    color: var(--color-primary);
}

.btn--white:hover {
    background: var(--color-bg-light);
}

.btn--pill {
    border-radius: 999px;
    padding: 10px 22px;
    font-size: 14px;
}

.btn--full {
    width: 100%;
}

.btn__arrow {
    display: inline-block;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.header {
    box-shadow: none;
}
.header-top {
    background: var(--color-bg-light);
    font-size: 13px;
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.header-menu ul,
.header-bottom-menu ul {
    display: flex;
    gap: 24px;
}

.header-menu > ul > li {
    margin-right: 0;
}

.header-menu a,
.header-bottom-menu a {
    color: var(--color-dark);
    font-size: 14px;
}

.header-top__right-text {
    color: var(--color-dark);
    font-size: 14px;
}
.header-top__right-text::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #27C06A;
  border-radius: 50%;
  margin-right: 8px; 
  vertical-align: middle; 
}


.header-middle {
    padding: 16px 0;
}

.header-middle .container {
    display: flex;
    align-items: center;
    gap: 24px;
        justify-content: space-between;
}

.header-logo img {
    height: 50px;
    margin-right: 0;
}
.header-logo {
    margin-right: 0;
}

.catalog-btn {
    background: var(--color-primary);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__container .sidebar-search input[type=text] {
    min-width: 540px;
    padding: 16px 18px;
    color: var(--color-gray);
    font-size: 15px;
    background: #F2F6FB;
    border: #E3EAF2;
    border-radius: 14px;
}
.sidebar-search [type=submit] {
    opacity: 1;
    background: #3180C1;
    background: #3180C1 url(../images/search-icon2.svg) 50% 50% / 24px 24px no-repeat;
    top: 5px;
    right: 18px;
    text-indent: -100000px;
    height: 40px;
    width: 62px;
    border-radius: 10px;
}
.sidebar-search {
    margin-bottom: 0;
}
.header-phone a{
    font-size: 20px;
    font-weight: 900;
    color: #2a2a2a;
}

.call-time {
    font-size: 12px;
    color: var(--color-gray);
    line-height: 15px;
    text-align: right;
}

.header-favorites {
    margin-left: 0px;
    padding: 12px;
    border: 1px solid #E3EAF2;
    border-radius: 12px;
}
.header-favorites svg {
    width: 22px;
}
.header-favorites .favorites_count {
    top: -16px;
    right: -16px;
    background: #3180C1;
}
.header-favorites-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    cursor: pointer;
}

.header-favorites-icon {
    position: relative;
    color: var(--color-dark);
}

.favorites_count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--color-red);
    color: #fff;
    font-size: 10px;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-favorites-text {
    font-size: 11px;
    color: var(--color-gray);
}

.header-bottom {
    padding: 25px 0;
}
.header-bottom-menu ul {
    display: flex;
    gap: 24px;
    justify-content: space-around;
}
.header-bottom-menu ul li a{
    font-size: 15px;
    font-weight: 600;
    color: var(--color-navy);
}

/* Бургер-кнопка */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
}

.burger-menu__line {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Мобильное меню */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: #fff;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-menu__title {
    font-size: 18px;
    font-weight: 600;
}

.mobile-menu__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #333;
}

.mobile-menu__body {
    padding: 20px;
}

.mobile-menu__contacts {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-menu__phone {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.mobile-menu__time,
.mobile-menu__address {
    font-size: 14px;
    color: #666;
    margin-bottom: 3px;
}

.mobile-menu__section-title {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    margin: 20px 0 10px;
}

.mobile-menu__nav {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.mobile-menu__item {
    margin-bottom: 2px;
}

.mobile-menu__link {
    display: block;
    padding: 10px 0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu__btn {
    margin-top: 20px;
}

/* Адаптив */
@media (max-width: 1024px) {
    .burger-menu {
        display: flex;
        order: -1;
    }
    
    .header-top,
    .header-bottom,
    .catalog-btn,
    .header-phone-wrapper,
    .header-search-wrapper {
        display: none;
    }
    
    .header-middle .container {
        flex-wrap: wrap;
    }
    
    .header-search-wrapper.mobile-visible {
        display: block;
        width: 100%;
        order: 1;
        margin-top: 10px;
    }
    body {
            padding-top: 140px;
    }
}

@media (min-width: 1025px) {
    .mobile-menu {
        display: none !important;
    }
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero-section {
    padding: 32px 0 48px;
}

.hero {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 360px;
    padding: 48px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 660px;
}

.hero-title {
    color: #fff;
    font-size: 40px;
    letter-spacing: -1.5px;
    font-weight: 800;
    line-height: 49px;
    margin-bottom: 16px;
}

.hero-text {
    color: #EFEFEF;
    font-size: 19px;
    line-height: 28px;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-buttons .btn--outline {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-color: rgba(255, 255, 255, .18);
}

.hero-buttons .btn--outline:hover {
    border-color: #fff;
    color: #fff;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .9;
}

/* ==========================================================================
   FORMATS (Форматы сотрудничества)
   ========================================================================== */

.formats-section {
    padding: 48px 0;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 10px;
}

.format-card {
    gap: 10px;
    display: flex;
    background: #F2F6FB;
    border-radius: var(--radius);
    padding: 14px 17px 11px 16px;
    flex-direction: column;
    align-items: flex-start;
     transition: all .2s ease;
}

.format-card:hover {
    background: #6987AD;
    color: #fff;
}

.format-card__badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background: #3180C1;
    padding: 8px 17px;
    border-radius: 999px;
    margin-bottom: 7px;
    transition: all .2s ease;
}

.format-card:hover .format-card__badge {
    color: #2A2A2A;
    background: #F2F6FB;
}

.format-card__title {
    font-size: 22px;
    font-weight: 800;
    line-height: 22px;
    margin-bottom: 2px;
    color: #060404;
    transition: all .2s ease;
}

.format-card:hover .format-card__title {
    color: #fff;
}

.format-card__text {
    max-width: 270px;
    font-size: 15px;
    color: #647689;
    transition: all .2s ease;
    margin-bottom: 0px;
}

.format-card:hover .format-card__text {
    color: rgba(255, 255, 255, .85);
}

.format-card__link {
    font-size: 13px;
    font-weight: 400;
    transition: all .2s ease;
    color: #060404;
    text-align: right;
    margin-left: auto;
}

.format-card:hover .format-card__link {
    color: #fff;
}

/* ==========================================================================
   OFFERS (Спецпредложения)
   ========================================================================== */

.offers-section {
    padding: 48px 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.product-card {
    position: relative;
    border: 1px solid #E8F0F9;
    border-radius: var(--radius);
    padding: 13px;
    display: flex;
    flex-direction: column;
}

.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-red);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 6px;
    z-index: 2;
}

.product-card__fav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--color-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.product-card__image {
    border-radius: 8px;
    margin-bottom: 12px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card__rating {
    font-size: 14px;
    color: #2A2A2A;
    line-height: 19px;
    margin-bottom: 8px;
}

.product-card__sku {
    font-size: 12px;
    color: #989898;
    margin-bottom: 6px;
}

.product-card__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 20px;
    color: #2A2A2A;
    min-height: 40px;
}

.product-card__specs {
    font-size: 12px;
    color: var(--color-gray);
    margin-bottom: 20px;
}

.product-card__specs li {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 3px 0;
    border-bottom: 1px dashed var(--color-border);
    color: #989898;
}

.product-card__specs b {
    color: #4E4E4E;
    font-weight: 500;
    text-align: right;
}

.product-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
    justify-content: center;
}

.price-new {
    font-size: 21px;
    font-weight: 700;
    color: #2a2a2a;
}

.price-old {
    font-size: 14px;
    color: #989898;
    text-decoration: line-through;
}

.product-card .btn{
    max-width: 250px;
    margin: auto;
}
.offers-footer2 {
    background: #F2F6FB;
    border: 1px solid #E8F0F9;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 12px 20px;
    border-radius:  120px;
}

.brands-list {
    align-items: center;
    
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: var(--color-gray);
    justify-content: space-between;
    width: 100%;
}
 .brands-list span{
     color: #9FB1C4;
     font-size: 16px;
     font-weight: 800;
 }
/* ==========================================================================
   CATALOG (Каталог по направлениям)
   ========================================================================== */

.catalog-section {
    padding: 48px 0;
}

.catalog-collage {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 25px;
    margin-bottom: 32px;
}

.catalog-collage__main,
.catalog-collage__item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}
.catalog-collage__main:hover,
.catalog-collage__item:hover {
transform: scale(1.05);
}

.catalog-collage__main img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
}

.catalog-collage__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.catalog-collage__item img {
    width: 100%;
    height: 100%;
    min-height: 168px;
    object-fit: cover;
}

.catalog-collage__label {
    padding: 8px 20px;
    border-radius: 12px;
    position: absolute;
    right: 32px;
    bottom: 20px;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    background: #3180C1;
    width: 230px;
    text-align: center;
}
.catalog-collage__main .catalog-collage__label {
    left: 32px;
}

.catalog-directions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.catalog-directions__item {
    background: var(--color-bg-light);
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
}

.catalog-directions__item:hover {
    background: var(--color-primary);
    color: #fff;
}

.catalog-section__all,.reviews-section__all,.news-section__all {
    display: flex;
    font-weight: 700;
    color: #3180C1;
    font-size: 15px;
    margin-left: auto;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   PARTNER (Партнёр, который остаётся после поставки)
   ========================================================================== */

.partner-section {
    position: relative;
    padding: 105px 0 95px;
    color: #fff;
    overflow: hidden;
}

.partner-section__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}



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

.partner-section .container {
    position: relative;
    z-index: 1;
}

.partner-section-title {
    color: #2A2A2A;
    font-size: 40px;
    line-height: 44px;
    font-weight: 800;
    margin-bottom: 88px ;
}
.partner-grid {
       max-width: 760px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}



.partner-item__title {
    color: #2A2A2A;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.partner-item__text {
    font-size: 15px;
    color: #647689;
    line-height: 20px;
}

/* ==========================================================================
   GOV (Госзакупки)
   ========================================================================== */

.gov-section {
    background: var(--color-primary);
    color: #fff;
    padding: 24px 0 38px;
}
.gov-section__title {
    font-size: 36px;
    color: #fff;
    line-height: 40px;
    margin-bottom: 10px;
}
.gov-section__text {
    font-size: 16px;
    line-height: 24px;
    color: #DFDFDF;
    max-width: 1000px;
    margin-bottom: 24px;
}

.gov-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.gov-logos span {
    background: #F2F6FB;
    border: 1px solid #1D4063;
    padding: 14px 4px;
    color: #2A2A2A;
    font-size: 14px;
    font-weight: 600;
    width: 158px;
    border-radius: 12px;
    text-align: center;
}

/* ==========================================================================
   REVIEWS (Отзывы)
   ========================================================================== */

.reviews-section {
    padding: 48px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

.review-quote {
    background: #F2F6FB;
border: 1px solid #E8F0F9;
    border-radius: 20px;
    padding: 30px 60px 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.review-quote__text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
   color: #2B4660;
    margin: 10px 0;
}

.review-quote__author {
    font-weight: 700;
    font-size: 16px;
    color: #0C2742
}

.review-quote__role {
    font-size: 14px;
    color: #8294A6;
}

.review-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.review-card {
    display: flex;
    gap: 16px;
    align-items: center;
    border: 1px solid #E8F0F9;
    border-radius: 18px;
    padding: 21px;
}
.review-card__inner {
display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.review-card__image {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

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

.review-card__meta {
    font-size: 12px;
    color: #8294A6;
    margin-bottom: 15px;
}

.review-card__title {
    color: #0C2742;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 20px;
}

.review-card__link {
    font-size: 14px;
    font-weight: 700;
    color: #3180C1;
}

.reviews-section__all {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 15px;
}

/* ==========================================================================
   NEWS (Новости и обзоры)
   ========================================================================== */

.news-section {
    padding: 48px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    margin-bottom: 20px;
}

.news-card {
    display: block;
    border-radius: 18px;
border: 1px solid #E8F0F9;
padding: 0 14px;
}

.news-card__image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 22px;
    height: 180px;
    widht: 100%;
}

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

.news-card__tag {
    color: #3180C1;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px

}

.news-card__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
    color: #0C2742;
    margin-bottom: 15px;
}

.news-card__meta {
    font-size: 13px;
    color: #8294A6;
}



/* ==========================================================================
   CTA (Подберём оборудование)
   ========================================================================== */

.cta-section {
    padding: 0 0 48px;
}

.cta {
    background: var(--color-primary);
    border-radius: var(--radius);
    padding: 50px;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    color: #fff;
    max-width: 1220px;
    width: 100%;
    margin: auto;
}

.cta__title {
    font-size: 32px;
    line-height: 38px;
    font-weight: 800;
    margin-bottom: 15px;

}

.cta__text {
    font-size: 16px;
    line-height: 24px;
    color: #D0E0F6;
    max-width: 440px;

}

.cta__text-block {
    width: calc(50% - 10px);
}
.cta__actions {
    width: calc(50% - 90px);
}

.cta__actions > a {
	width: 100%;
	font-size: 17px;
	padding: 17px 28px;
}
.cta__actions {
    display: flex;
    align-items: center;
    gap: 17px;
    flex-shrink: 0;
    flex-direction: column;
}

.cta__phone {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 800;
    white-space: nowrap;
padding: 17px 28px;
    border-radius: 14px;

    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.25);
}

/* ==========================================================================
   footer2
   ========================================================================== */

.footer2 {
    background: #313131;
    color: #fff;
    padding: 48px 0 24px;
}

.footer2-top {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr) 1.2fr;
    gap: 24px;
    padding-bottom: 32px;

}
.footer2-about {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer2-logo {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.footer2-about__text {
    font-size: 14px;
    line-height: 23px;
    color: #CACACA;
}
.footer2-politika {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
.footer2-politika a {
    font-size: 14px;
    line-height: 23px;
}
.footer2-politika a:hover {
    color: #3180C1;
}
.footer2-col__title {
    color: #cacaca;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 17px;
    text-transform: uppercase;
}

.footer2-col__list li {
    margin-bottom: 10px;
}

.footer2-col__list a {
    font-size: 15px;
color: #fff;
}


.footer2-contacts__phone {
    display: block;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}

.footer2-contacts__time {
    font-size: 13px;
    margin-bottom: 12px;
    color: #cacaca;
}

.footer2-contacts__address {
    font-size: 14px;
    line-height: 21px;
    color: #cacaca;
    margin-bottom: 16px;
}

.footer2-bottom {
    padding-top: 20px;
    font-size: 14px;
line-height: 23px;
color: #cacaca;
    display: flex;
    gap: 21px;
    align-items: center;
    justify-content: flex-start;
}

.footer2-bottom__links a{
 color: #cacaca;
line-height: 23px;
font-size: 14px;
margin-top: 7px;
display: block;
}

.footer2-bottom__links a:hover {
    color: #fff;
}



/* ==========================================================================
   RESPONSIVE
   ========================================================================== */



@media (max-width: 1100px) {
    .offers-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer2-top {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .formats-grid,
    .partner-grid,
    .reviews-grid,
    .catalog-collage {
        grid-template-columns: 1fr;
    }

    .hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-image {
        position: relative;
        width: 100%;
        margin-top: 24px;
    }

    .cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .offers-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer2-top {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 26px;
    }
    .header-bottom,.header-top,.catalog-btn{
	display: none;
    }
    .hero {
        background: none;
	padding: 0;
    }
    .hero-title {
    color: #2a2a2a;
    font-size: 28px;
    letter-spacing: auto;
    font-weight: 800;
    line-height: 33px;
    margin-bottom: 12px;
    }
    .hero-text {
	color: #4e4e4e;
    font-size: 16px;
    letter-spacing: auto;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 21px;	
}
    .hero-buttons {
    
        gap: 12px;
        flex-wrap: wrap;
    }
     .hero-buttons .btn {
    	width: 100%;
    }
       .hero-buttons .btn .btn__arrow {
    	display: none
    }
    .hero-buttons .btn--outline {
    	border: 1px solid #3180C1;
    color: #3180C1;
    }
    .section-eyebrow {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #727272;
        margin-bottom: 12px;
    }
    .section-title {
        font-size: 28px;
        font-weight: 800;
    line-height: 33px;
        color: #2A2A2A;
    }
    .catalog-collage__grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .catalog-collage__main img {
        width: 100%;
        height: 100%;
        min-height: unset;
    }
    .catalog-collage__label, .catalog-collage__main .catalog-collage__label {
    
        right: calc(50% - 115px);
    }
    .catalog-collage__main .catalog-collage__label {
        left: unset;
    }
        
    .hero {
        min-height: unset;
        border-radius: unset;
    }
    .hero-section {
        padding-bottom: 0;
    }
    .formats-section {
        padding: 35px 0;
    }
    .offers-section {
        padding: 0 0 35px;
    }
    .formats-grid {
    gap: 18px;
    }
    .section-eyebrow--red {
        color: #E5482F;
    }
    .offers-footer2 {
        display: none;
    }
    .catalog-section{
        padding: 0 0 35px;
    }
    .offers-grid {
        margin-bottom: 0;
    }
    .partner-section {
        padding: 0 0 35px;
    }
    .partner-section__bg {
        display: none;
    }
    .partner-section-title {
    	font-size: 28px;
        line-height: 30px;
        margin-bottom: 12px;
    }
    .partner-grid {
        margin: 0;
        gap: 12px;
    }
    .gov-section {
        padding: 48px 0;
    }
    .gov-section .section-eyebrow {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .gov-section .section-title {
        font-size: 24px;
        line-height: 28px;
    }
    .gov-section__text {
        display: none;
    }
    .gov-logos {
        gap: 8px;
    }
    .gov-logos span {
        width: calc(50% - 4px);
    }
    .review-quote {
        padding: 20px;
    }
    .review-quote__text {
        font-size: 15px;
        line-height: 22px;
        margin: 16px 0;
    }
    .review-quote__author {
        color: #3180C1;
    }
    .review-cards, .reviews-section__all, .news-section {
        display: none;
    }
    .reviews-section {
        padding: 26px 0 20px;
    }
    .cta-section {
        padding: 0 0 35px;
    }
    .cta {
        width: 100%;
    }
    .cta {
        background: none;
        border-radius: unset;
        padding: 0;
        display: flex;
        flex: 1;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        color: #fff;
        width: auto;
        margin: auto;
    }
    .cta-section {
        background: var(--color-primary);
        padding: 48px 0;
        margin-bottom: 20px;
    }
    .cta__text-block, .cta__actions {
        width: 100%;
    }
    .cta__text {
        display: none;
    }
    .cta__title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 24px;
    }
    .cta__phone {
        order: 2;
        background: unset;
        border: none;
    }
    .cta__phone svg {
        display: none;
    }
    .cta__actions > .btn--white {
        order: 1;
    }
    .cta__actions {
        display: flex;
        align-items: center;
        gap: 0;
    }
    .header-logo img {
        width: 180px;
    height: auto;
    }
}