/*NOTE: This file is intended for programmers. Aspro technical support is not advised to work with him.*/

/* Examples (uncomment to use):*/

/* Expand site width */
/* body .wrapper { max-width: 1400px !important;  } */

/* Set site background image */
/* body {  background: url(image_source) top no-repeat; }

/* Hide compare button */
/* a.compare_item { display: none !important;  }*/

.font_13 {
    font-weight: 400;
}
.font_uppercase {
    text-transform: uppercase;
}
.header__top-part {
    display: none;
}
.footer-contacts{
    display: flex;
    flex-direction: column;
    gap: 19px;
}
.footer-contacts__info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.footer-buttons {
    display: flex;
    flex-direction: column;
    width: 200px;
    gap: 10px;
}
.footer-lang {
    margin-top: 20px;
}
.footer-search {
    margin-top: 46px;
}
.footer__bottom-part {
    background-color: red;
}
.footer__bottom-part-items-wrapper p {
    color: #ededed;
}

.index-block__part--right {
    padding: 12px 23px;
    background: red;
    transition: background-color 0.4ms;
}
.index-block__part--right a {
    color: #fff;
    font-weight: 600;
    transition: color 0.4ms;
}
.index-block__link.right_link_block:hover {
    color: aliceblue;
}
/* --- ЗАГОЛОВОК --- */
.main-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* --- БЛОК ФИЛЬТРА --- */
.smart-filter-wrapper {
    background-color: #d93636; /* Основной красный цвет */
    color: white;
    border-radius: 8px;
    overflow: hidden; /* Чтобы скруглить углы и у контента */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* --- НАВИГАЦИЯ ТАБОВ (КРАСНАЯ ПАНЕЛЬ) --- */
.tabs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    flex-wrap: wrap; /* Для мобильных устройств */
}

.tabs-header .filter-title {
    font-size: 24px;
    font-weight: 500;
    margin-right: 20px;
}

.tabs-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Для мобильных устройств */
}

.tab-link {
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    transition: opacity 0.2s ease;
    text-transform: uppercase;
}

.tab-link:hover {
    opacity: 0.85;
}

.tab-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

/* Стили для неактивного таба */
.tab-link .tab-icon {
    border: 2px solid rgba(255, 255, 255, 0.7);
}

/* Стили для активного таба */
.tab-link.active .tab-icon {
    background-color: white;
    color: #d93636;
    transform: rotate(90deg);
}

.tabs-content-wrapper {
    background-color: #2c3e50; /* Темно-синий/серый цвет */
    padding: 30px;
}

.tab-content {
    display: none; /* Скрываем все табы по умолчанию */
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block; /* Показываем только активный */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 12px;
    color: #bdc3c7; /* Светло-серый для текста */
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group input,
.form-group select {
    background-color: #ecf0f1;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 16px;
    color: #34495e;
    width: 100%;
    box-sizing: border-box; /* Важно для правильного расчета ширины */
}

.form-group select {
    /* Для кастомной стрелки, если нужно */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2334495e' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}

/* Скрытие стандартных стрелок у input[type=number] */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}


/* --- НИЖНЯЯ ЧАСТЬ ФОРМЫ --- */
.form-footer {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Для мобильных */
    gap: 20px;
}

.info-note {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.5;
    flex-basis: 60%; /* Занимает большую часть */
    min-width: 300px;
}

.submit-btn {
    background-color: #d93636;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.submit-btn:hover {
    background-color: #c0392b; /* Более темный красный при наведении */
}
.line-block{
    /*gap: 60px;*/
}
.header__block-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header__block-contacts .header__block_phone a{
    text-transform: uppercase;
    color: var(--dark);
    font-size: 20px;
}
.header__block-contacts .header__block_email a{
    text-transform: uppercase;
    color: var(--dark);
    font-size: 12px;
}
.index-block__subtitle--margined-f992 {
    display: none !important;
}
.has-riple {
    background-color: red;
}
.has-riple a {
    padding: 18px 33px !important;
    text-transform: uppercase;
    color: #fff !important;
    border: none;
}
.btn-custom-gray {
    background-color: #2f3d4a;
}
.btn-custom-gray a {
    padding: 18px 33px !important;
    text-transform: uppercase;
    color: #fff !important;
    border-color: transparent !important;
}

.technologies-card__image {
    height: 325px;
    width: 100%;


}
.btn-custom-gray-footer a {
    padding: 18px 28px !important;
    text-transform: uppercase;
    color: #fff !important;
    border-color: transparent !important;
}
.footer-lang a {
    color: var(--fill_dark_light);
}
.header-cabinet {
    background-color: red;
}
.header-cabinet a {
    color: #fff;
    padding: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.header-cabinet a:hover{
    color: #fff;
}
.fill-theme-hover:hover{
    fill: #ffffff !important;
}