

/* Start:/bitrix/templates/simai_webstudio_v2/css/main-styles.css?176554797561441*/
/**
 * ЕДИНЫЙ ФАЙЛ СТИЛЕЙ ШАБЛОНА
 * Объединяет все стили и устраняет конфликты
 * Версия: 2.0
 * 
 * ВАЖНО: Этот файл заменяет все предыдущие файлы стилей.
 * Если Bitrix автоматически загружает template_styles.css,
 * этот файл должен загружаться ПОСЛЕ него для переопределения.
 */

/* ===================================
   МЕНЮ - ПОЛНАЯ ПЕРЕРАБОТКА
   =================================== */

/* ===================================
   CSS ПЕРЕМЕННЫЕ - Единая система
   =================================== */
:root {
    /* Цвета */
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --accent-color: #ef4444;
    --accent-hover: #dc2626;
    
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --text-white: #ffffff;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --bg-dark: #111827;
    --bg-overlay: rgba(0, 0, 0, 0.5);
    
    --border-color: #e5e7eb;
    --border-dark: #d1d5db;
    
    /* Тени */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Скругления */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Переходы */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Отступы */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
}

/* ===================================
   СБРОС И БАЗОВЫЕ СТИЛИ
   =================================== */
* {
    box-sizing: border-box;
}

/* Предотвращение горизонтальной прокрутки */
html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Ограничение ширины для всех элементов */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-primary);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* ===================================
   ТИПОГРАФИКА
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

.lead {
    font-size: 1.4em;
    line-height: 1.5em;
    margin-bottom: 0.5em;
    color: var(--text-secondary);
}

/* ===================================
   КОНТЕЙНЕРЫ И СЕТКА
   =================================== */
#wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
}

#wrapper.boxed {
    width: 1230px;
    overflow: visible;
    margin: 0 auto;
    padding: 0;
    background: var(--bg-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
}

.row {
    margin: 0 -20px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 40px);
    max-width: 100%;
    box-sizing: border-box;
}

/* Исправление для menu-top row */
.menu-top .row {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
}

@media (max-width: 768px) {
    .row {
        margin-left: -10px;
        margin-right: -10px;
        width: calc(100% + 20px);
    }
    
    .menu-top .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }
}

.row.nomargin {
    margin-bottom: 0;
}

.row.bread {
    margin: 0;
}

[class*="span"] {
    padding: 0 20px;
    box-sizing: border-box;
}

.span12 { width: 100%; }
.span8 { width: 66.666%; }
.span6 { width: 50%; }
.span4 { width: 33.333%; }
.span3 { width: 25%; }

@media (max-width: 991px) {
    .span8, .span6, .span4, .span3 {
        width: 100%;
    }
}

/* ===================================
   ШАПКА САЙТА
   =================================== */
header {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    margin: 0;
    padding: 0;
}

header .container {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Компактная шапка - горизонтальное расположение */
.header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 0;
    padding: 1.5rem 0;
    min-height: 80px;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}

/* Стили для логотипа внутри header-logo (любая вложенность) */
.header-logo img,
.header-logo .logo-image {
    width: 150px;
    max-width: 150px;
    height: auto;
    display: block;
    object-fit: contain;
}

.header-logo a,
.header-logo .logo-link {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
    transition: opacity 0.3s ease;
    vertical-align: middle;
}

.header-logo a:hover,
.header-logo .logo-link:hover {
    opacity: 0.85;
}

.header-logo .logo-link {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
    transition: opacity 0.3s ease;
    vertical-align: middle;
}

.header-logo .logo-link:hover {
    opacity: 0.85;
}

.header-logo .logo-image {
    width: 150px;
    max-width: 150px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Поддержка старого формата с span (если используется) */
.header-logo .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-logo .logo a {
    text-decoration: none !important;
    display: inline-block;
    line-height: 1;
}

.header-logo .logo span {
    font-size: 49px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    display: inline-block;
}

/* Стили для текста справа от логотипа */
.header-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    text-align: left;
    flex: 1;
    min-width: 0;
}

.header-text-line {
    line-height: 1.5;
    margin: 0;
}

.header-text-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.01em;
}

.header-text-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-secondary);
}

@media screen and (max-width: 991px) {
    .header-content {
        gap: 2rem;
        padding: 1.25rem 0;
    }
    
    .header-text-title {
        font-size: 1.5rem;
    }
    
    .header-text-subtitle {
        font-size: 1.0625rem;
    }
    
    .header-logo img,
    .header-logo .logo-image {
        width: 130px;
        max-width: 130px;
    }
    
    .header-logo .logo span {
        font-size: 42px;
    }
}

@media screen and (max-width: 767px) {
    .header-content {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        padding: 1.5rem 0;
        text-align: center;
    }
    
    .header-logo {
        justify-content: center;
        width: 100%;
    }
    
    .header-logo a,
    .header-logo .logo-link {
        display: flex;
        justify-content: center;
    }
    
    .header-logo img,
    .header-logo .logo-image {
        width: 120px;
        max-width: 120px;
    }
    
    .header-logo .logo {
        justify-content: center;
    }
    
    .header-text {
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .header-text-title {
        font-size: 1.375rem;
    }
    
    .header-text-subtitle {
        font-size: 1rem;
    }
    
    .header-logo .logo span {
        font-size: 36px;
    }
}

@media screen and (max-width: 500px) {
    .header-logo img,
    .header-logo .logo-image {
        width: 100px;
        max-width: 100px;
    }
    
    .header-logo .logo span {
        font-size: 30px !important;
    }
    
    .header-text-title {
        font-size: 1.25rem;
    }
    
    .header-text-subtitle {
        font-size: 0.9375rem;
    }
}

.phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    min-width: fit-content;
}

.phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
    text-decoration: none;
}

.phone span {
    display: inline-block;
    font-size: 1.125rem;
    margin: 0;
    line-height: 1.2;
}

.phone span i {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}


.center {
    text-align: center;
}

/* ===================================
   МЕНЮ - СОВРЕМЕННАЯ ВЕРСИЯ БЕЗ ЛЕГАСИ
   =================================== */

/* Контейнер меню */
.menu-top {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin: 1rem 0;
    padding: 0;
    position: relative;
    overflow: visible;
    z-index: 100;
    width: 100%;
    box-sizing: border-box;
}

.menu-top .row,
.menu-top .container,
.menu-top .span12 {
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
}

.menu-top .row {
    margin: 0;
    width: 100%;
}

.menu-top .container {
    padding: 0 20px;
}

.menu-top .span12 {
    padding: 0;
}

/* Основное меню */
.main-menu {
    width: 100%;
}

.main-menu__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

/* Пункты меню первого уровня */
.main-menu__item {
    position: relative;
    margin: 0;
}

/* Ссылки первого уровня */
.main-menu__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 1rem 0.75rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 8px;
}

.main-menu__link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.main-menu__item--active .main-menu__link {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

/* Подчеркивание активного пункта */
.main-menu__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: white;
    border-radius: 3px 3px 0 0;
    transition: width 0.3s ease;
}

.main-menu__link:hover::after,
.main-menu__item--active .main-menu__link::after {
    width: 80%;
}

/* Текст и иконка */
.main-menu__text {
    display: inline-block;
}

.main-menu__icon {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
    color: currentColor;
}

/* Выпадающее меню */
.main-menu__submenu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
    margin: 0;
    min-width: 220px;
    max-width: 300px;
    opacity: 0;
    visibility: hidden;
    list-style: none;
    z-index: 10000;
    overflow: visible;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Стрелка вверх */
.main-menu__submenu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    z-index: 10001;
}

/* Показываем меню при hover */
.main-menu__item--dropdown:hover .main-menu__submenu,
.main-menu__item--dropdown:hover > .main-menu__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Удерживаем меню открытым при наведении на само меню */
.main-menu__submenu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Поворачиваем иконку при hover */
.main-menu__item--dropdown:hover .main-menu__icon {
    transform: rotate(180deg);
}

/* Пункты подменю */
.main-menu__subitem {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Ссылки подменю */
.main-menu__sublink {
    display: block;
    color: var(--text-primary);
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.main-menu__sublink:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
    padding-left: 2rem;
    border-left-color: var(--primary-color);
}

/* Адаптивность */
@media (max-width: 1200px) {
    .main-menu__link {
        padding: 1rem 0.5rem;
        font-size: 0.8125rem;
    }
}

/* Мобильная версия */
@media (max-width: 991px) {
    .menu-top {
        border-radius: 0;
        margin: 0;
    }
    
    .menu-top .container {
        padding: 0;
    }
    
    .main-menu__list {
        flex-direction: column;
        align-items: stretch;
    }
    
    .main-menu__item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .main-menu__item:last-child {
        border-bottom: none;
    }
    
    .main-menu__link {
        padding: 1.25rem 1.5rem;
        width: 100%;
        justify-content: space-between;
        font-size: 0.875rem;
        border-radius: 0;
    }
    
    .main-menu__link::after {
        display: none;
    }
    
    /* Подменю в мобильной версии - аккордеон */
    .main-menu__submenu {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        background: rgba(0, 0, 0, 0.15);
        min-width: auto;
        max-width: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: all 0.3s ease;
    }
    
    .main-menu__submenu::before {
        display: none;
    }
    
    /* Показываем при активном состоянии */
    .main-menu__item--dropdown.main-menu__item--active .main-menu__submenu {
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
        padding: 0.5rem 0;
    }
    
    .main-menu__subitem {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-menu__subitem:last-child {
        border-bottom: none;
    }
    
    .main-menu__sublink {
        color: rgba(255, 255, 255, 0.95);
        padding: 0.875rem 1.5rem 0.875rem 3rem;
        font-size: 0.8125rem;
        border-left: none;
    }
    
    .main-menu__sublink:hover {
        color: white;
        background: rgba(255, 255, 255, 0.1);
        padding-left: 3.5rem;
    }
    
    /* Иконка в мобильной версии */
    .main-menu__item--dropdown.main-menu__item--active .main-menu__icon {
        transform: rotate(180deg);
    }
}

@media (max-width: 768px) {
    .menu-top .container {
        padding: 0 10px;
    }
    
    .main-menu__link {
        font-size: 0.75rem;
        padding: 0.875rem 1rem;
    }
}

/* ===================================
   КОНТЕНТ
   =================================== */
#content {
    padding: var(--spacing-xl) 0;
    min-height: 60vh;
}

#inner-breadcrumb {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: var(--spacing-lg);
}

.inner-heading {
    margin-bottom: var(--spacing-xl);
}

.inner-heading h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-light);
}

.breadcrumb .separator {
    margin: 0 var(--spacing-xs);
    color: var(--text-light);
}

/* ===================================
   КАРТОЧКИ И БЛОКИ
   =================================== */
.box,
.well,
.catalog-item,
.card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.box:hover,
.well:hover,
.catalog-item:hover,
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.catalog-item {
    position: relative;
    overflow: hidden;
}

.catalog-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.catalog-item:hover img {
    transform: scale(1.05);
}

.catitems {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.catitems .span3 {
    margin-bottom: 20px;
}

/* ===================================
   КНОПКИ
   =================================== */
.btn,
button,
input[type="submit"],
input[type="button"],
.catalog-item-buy {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    font-family: inherit;
}

.btn-primary,
.catalog-item-buy {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
}

.btn-primary:hover,
.catalog-item-buy:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
    text-decoration: none;
}

.catalog-item-in-the-cart {
    background: #ccc !important;
    color: #f3f3f3 !important;
    border: 1px solid #ccc !important;
    cursor: not-allowed;
}

.action {
    float: right;
    border-bottom: 1px dashed var(--accent-color);
    text-decoration: none !important;
    color: var(--accent-color);
    transition: var(--transition);
}

.action:hover {
    border-bottom-color: var(--accent-hover);
    color: var(--accent-hover);
}

/* ===================================
   ФОРМЫ
   =================================== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

/* ===================================
   СЛАЙДЕРЫ
   =================================== */
#featured {
    background: var(--bg-secondary);
    position: relative;
    margin: 0;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.fotorama {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.fotorama img {
    width: 100%;
    height: auto;
}

.flexslider {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: var(--spacing-xl) 0;
}

.flexslider .slides img {
    width: 100%;
    height: auto;
    display: block;
}

.flexslider .slide-caption {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    color: var(--text-white);
    position: absolute;
    left: 10px;
    bottom: -30px;
    width: 30%;
    z-index: 99;
}

.flexslider .slide-caption h3 {
    font-weight: 700;
    color: #f4f4f4;
    font-size: 22px;
    margin-bottom: var(--spacing-sm);
}

.flexslider .slide-caption p {
    font-size: 14px !important;
    line-height: 22px;
    font-weight: 300;
    color: #f0f0f0 !important;
    margin-bottom: 15px;
}

.flexslider .slide-caption span a {
    padding: 7px 15px;
    float: left;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.flexslider .slide-caption span a:hover {
    opacity: 0.9;
    background: var(--primary-dark);
}

/* Nivo Slider */
.nivo-slider {
    background: #fbfbfb;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.nivoSlider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0;
}

.nivoSlider img {
    position: absolute;
    top: 0px;
    left: 0px;
    max-width: none;
}

.nivo-main-image {
    display: block !important;
    position: relative !important;
    width: 100% !important;
}

.nivo-caption {
    position: absolute;
    left: 0;
    bottom: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    width: 40%;
    z-index: 8;
    padding: 20px;
    overflow: hidden;
    display: none;
    border-radius: var(--radius-md);
}

.nivo-caption h2 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
}

.nivo-caption p {
    margin: 0;
    font-size: 0.875rem;
}

/* Fancybox */
.fancybox {
    transition: var(--transition);
}

.fancybox:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* JCarousel */
.jcarousel {
    position: relative;
    overflow: hidden;
}

.jcarousel ul {
    width: 20000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel li {
    float: left;
}

.jcarousel-prev,
.jcarousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jcarousel-prev:hover,
.jcarousel-next:hover {
    background: var(--primary-color);
    opacity: 1;
}

.jcarousel-prev {
    left: 10px;
}

.jcarousel-next {
    right: 10px;
}

/* ===================================
   ФУТЕР
   =================================== */
footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1f2937 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-2xl) 0 var(--spacing-md);
    margin-top: var(--spacing-2xl);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
}

footer .widget {
    margin-bottom: var(--spacing-lg);
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

footer ul.link-list li a:hover {
    color: white !important;
}

#sub-footer {
    background: rgba(0, 0, 0, 0.3);
    padding: var(--spacing-lg) 0;
    margin-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.social-right {
    text-align: right;
}

.social-right a {
    display: inline-block;
    margin-left: var(--spacing-sm);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-right a:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   БОКОВАЯ ПАНЕЛЬ
   =================================== */
.r-panel {
    position: fixed;
    right: 0;
    top: 45%;
    z-index: 99;
    border-right: 0;
}

.r-panel .item {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white !important;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1px;
    right: -149px;
    position: relative;
    width: 180px;
    height: 35px;
    float: right;
    text-decoration: none;
}

.r-panel .item:hover {
    right: 0 !important;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    box-shadow: var(--shadow-xl);
}

.r-panel .calme {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
}

.r-panel .calme:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-color) 100%);
}

.r-panel .item i {
    font-size: 1.5rem;
    color: white !important;
}

.r-panel .item span {
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

/* ===================================
   КНОПКА ПРОКРУТКИ ВВЕРХ
   =================================== */
.scrollup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    text-decoration: none;
}

.scrollup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scrollup:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.scrollup i {
    font-size: 1.5rem;
}

/* ===================================
   АККОРДЕОНЫ
   =================================== */
.accordion,
.accordion-vacancy {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.accordion-group {
    border-bottom: 1px solid var(--border-color);
}

.accordion-group:last-child {
    border-bottom: none;
}

.accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--bg-secondary);
    border: none;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.accordion-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
}

.accordion-toggle.active {
    background: var(--primary-color);
    color: white;
}

.accordion-body {
    padding: var(--spacing-lg);
    background: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================
   ПАГИНАЦИЯ
   =================================== */
.bx-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xs);
    margin: var(--spacing-xl) 0;
    flex-wrap: wrap;
}

.bx-pagination a,
.bx-pagination span {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    min-width: 40px;
    text-align: center;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.bx-pagination a {
    color: var(--text-primary);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.bx-pagination a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.bx-pagination .bx-active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border-color: var(--primary-color);
}

/* ===================================
   МОДАЛЬНЫЕ ОКНА
   =================================== */
.modal-content {
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: var(--spacing-lg);
}

.modal-header h4 {
    color: white;
    font-weight: 700;
    margin: 0;
}

.modal-body {
    padding: var(--spacing-xl);
    max-height: 540px;
    overflow-y: auto;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-lg) var(--spacing-xl);
}

/* ===================================
   УТИЛИТЫ
   =================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }

.mb-0 { margin-bottom: 0; }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

.hidden { display: none; }
.visible { display: block; }

.bordered {
    border-bottom: 1px solid var(--border-color);
}

.colored {
    font-weight: 100 !important;
    color: #000;
}

.order_site {
    border-bottom: none !important;
}

/* ===================================
   АДАПТИВНОСТЬ
   =================================== */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .container {
        padding: 0 var(--spacing-sm);
        max-width: 100%;
    }
    
    .catitems {
        grid-template-columns: 1fr;
    }
    
    .scrollup {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .r-panel {
        display: none;
    }
    
    /* Предотвращение горизонтальной прокрутки */
    body {
        overflow-x: hidden;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        margin: var(--spacing-md);
    }
    
    .modal-body {
        padding: var(--spacing-md);
    }
}

/* ===================================
   СПЕЦИФИЧНЫЕ СТИЛИ ДЛЯ СОВМЕСТИМОСТИ
   =================================== */
.no-photo {
    background: url(/bitrix/templates/simai_webstudio_v2/css/img/no-photo.png) no-repeat 50% 50%;
    background-size: 100% 150%;
}

.margin-bottom {
    margin-bottom: 20px;
}

.carousel-control.left,
.carousel-control.right {
    border-radius: 0;
    border: 0;
    color: white;
    opacity: 0.5;
    background: rgba(0, 0, 0, 0.7);
    top: 50%;
    margin-top: -20px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 24px;
}

.carousel-control.left {
    left: 0;
}

.carousel-control.right {
    right: 0;
}

.carousel-control.left:hover,
.carousel-control.right:hover {
    opacity: 1;
}

.opis {
    font-size: 16px;
    margin-bottom: 5px;
}

.cost {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: bold;
    float: left;
}

.cat .active a {
    font-weight: bold;
}

.catitems .cartblock img {
    margin-bottom: 20px;
}

td.cart-item-name a {
    font-weight: normal !important;
}

.cart-item-quantity input {
    margin: 0 !important;
    width: 40px;
}

.line-height td {
    line-height: 30px !important;
}

.opener {
    text-align: right;
}

#client-full {
    margin-left: 30px;
}

.mobilever {
    display: none;
}

@media (max-width: 400px) {
    .mobilever {
        background: none;
        border: none;
        margin-left: -21px;
        display: block;
        float: right;
        margin-top: -26px;
        z-index: 80;
        position: relative;
    }
    
    .pcver {
        display: none !important;
    }
}

/* ===================================
   ДОПОЛНИТЕЛЬНЫЕ КОМПОНЕНТЫ
   =================================== */

/* Контрастная версия */
.contrast-version {
    border-bottom: 1px solid #009055;
    text-align: center;
    display: block;
    height: 22px;
    line-height: 22px;
}

.contrast-version span {
    color: #009055;
    font-size: 14px;
    font-weight: bold;
    padding: 0 0 0 28px;
    height: 22px;
    display: inline-block;
    background: url("/bitrix/templates/simai_webstudio_v2/css/../images/icons.png") 0 4px no-repeat;
    text-transform: uppercase;
}

.contrast-version:hover {
    border-bottom: 1px solid #000;
}

.contrast-version:hover span {
    background: url("/bitrix/templates/simai_webstudio_v2/css/../images/icons.png") 0 -682px no-repeat;
    color: #000;
}

/* Стили для карточек клиентов */
.c-name a.name {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 14px;
    color: #4D4D4D;
    text-decoration: none;
    transition: var(--transition);
}

.c-name a.name:hover {
    color: #CD0000;
}

.c-item {
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.c-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.imgs {
    width: 251px;
    height: 170px;
    float: left;
    text-align: center;
    background-image: url('/bitrix/templates/simai_webstudio_v2/css/img/c-l-bg.png');
    background-size: cover;
    background-position: center;
}

.imgs a {
    display: block;
    width: 251px;
    height: 170px;
    background-position: center;
    background-repeat: no-repeat;
}

.c-name {
    position: absolute;
    height: 30px;
    background-image: url('/bitrix/templates/simai_webstudio_v2/css/img/tick.png');
    width: 678px;
    left: 251px;
    top: 50%;
    margin-top: -15px;
    padding-left: 25px;
    background-repeat: no-repeat;
    line-height: 30px;
}

.c-name .name:hover {
    color: #CD0000;
    text-shadow: 0 0 1px #CD0000;
}

.c-link {
    float: right;
    padding-left: 30px;
    padding-right: 15px;
    background-image: url('/bitrix/templates/simai_webstudio_v2/css/img/linkbg.png');
    min-width: 50px;
    background-repeat: no-repeat;
    background-color: #fff;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.c-link:hover {
    background: #B60000;
}

.c-link:hover a {
    color: white;
    background-image: url('/bitrix/templates/simai_webstudio_v2/css/img/link-ah.png');
}

.c-link a {
    color: #A90000;
    font-family: Tahoma, sans-serif;
    font-size: 12px;
    padding-right: 20px;
    text-decoration: none;
    background-image: url('/bitrix/templates/simai_webstudio_v2/css/img/link-a.png');
    background-repeat: no-repeat;
    background-position: center right;
}

.sfera {
    float: right;
    margin-top: 20px;
    max-width: 690px;
    font-family: Tahoma, sans-serif;
    font-size: 10px;
    color: #7F7F7F;
}

.sfera a {
    padding-left: 10px;
    color: #333333;
}

.jobs {
    position: absolute;
    left: 251px;
    bottom: 30px;
    padding-left: 20px;
    max-width: 650px;
    font-family: Tahoma, sans-serif;
    font-size: 10px;
    color: #7F7F7F;
}

.jobs a {
    padding-left: 10px;
    color: #333333;
}

.txe {
    display: block;
}

.b-window .center ul {
    margin: 0;
    padding: 0;
}

#am-container a {
    margin-left: 30px !important;
    margin-bottom: 30px !important;
    display: block;
    float: left;
}

/* Вакансии - улучшенные стили */
.accordion-vacancy .accordion-group {
    margin: 20px 0;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.accordion-vacancy .accordion-group .block-heading {
    overflow: hidden;
}

.accordion-vacancy .accordion-heading {
    padding: 15px 15px 10px;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.accordion-vacancy .accordion-heading .accordion-toggle {
    text-align: center;
    margin: 0 0 -43px;
    z-index: 10;
    position: relative;
    flex: 1;
    background: transparent;
    padding: 0;
}

.accordion-vacancy .accordion-heading img {
    float: left;
    margin-right: 10px;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.accordion-vacancy .accordion-group:nth-child(2n) img {
    float: right;
}

/* Фотогалерея */
.photogallery-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.photogallery-list ul li {
    overflow: hidden;
    margin: 0 0 20px;
}

.photogallery-list ul ul li {
    float: left;
    border: 4px solid #5c6470;
    margin: 15px 10px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.photogallery-list ul li h6 small {
    font-size: 70%;
}

.photogallery-list ul ul li:hover {
    border: 4px solid #cd0000;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.photogallery-inner-list ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.photogallery-inner-list ul li {
    color: #cb1103;
}

.photogallery-inner-list ul li.pil-top {
    clear: both;
    margin: 0 0 2em;
    overflow: hidden;
}

.photogallery-inner-list ul ul li {
    float: left;
    border: 4px solid #5c6470;
    margin: 15px 10px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.photogallery-inner-list ul li h6 {
    margin-bottom: 10px;
}

.photogallery-inner-list ul li h6 small {
    font-size: 70%;
}

.photogallery-inner-list ul ul li:hover {
    border: 4px solid #cd0000;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Социальные закладки */
.bookmarkers {
    position: absolute;
    top: 0;
    left: 40px;
}

.bookmarkers .icon {
    display: inline-block;
}

.bookmarkers .icon a {
    display: block;
    height: 40px;
    width: 37px;
    background: url("/bitrix/templates/simai_webstudio_v2/css/img/social.png") 0 0 no-repeat;
    transition: var(--transition);
}

.bookmarkers .icon a.twitter {
    background-position: -38px 0;
}

.bookmarkers .icon a.vk {
    background-position: -76px 0;
}

.bookmarkers .icon a.lj {
    background-position: -114px 0;
}

.bookmarkers .icon a.facebook:hover {
    background-position: 0 -40px;
}

.bookmarkers .icon a.twitter:hover {
    background-position: -38px -40px;
}

.bookmarkers .icon a.vk:hover {
    background-position: -76px -40px;
}

.bookmarkers .icon a.lj:hover {
    background-position: -114px -40px;
}

/* Новости и статьи - списки */
.news-list,
.article-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.news-item,
.article-item {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.news-item:hover,
.article-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.news-item img,
.article-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-item-content,
.article-item-content {
    padding: var(--spacing-lg);
}

.news-item-title,
.article-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.news-item-title a,
.article-item-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.news-item-title a:hover,
.article-item-title a:hover {
    color: var(--primary-color);
}

.news-item-date,
.article-item-date {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.news-item-text,
.article-item-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

/* Поповеры */
.popover-content ul li a {
    font-weight: normal !important;
    font-size: 14px !important;
}

.popover-title {
    display: none;
}

.popover-content {
    padding: 0;
}

.popover-content li {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    transition: var(--transition);
}

.popover-content li:hover {
    background: #efefef;
}

.popover-content li {
    display: block !important;
    margin-left: 0 !important;
}

/* Табы */
.nav-tabs li a {
    color: #555555;
    font-weight: normal;
}

.nav-tabs .active a {
    font-weight: bold;
}

/* Бейджи */
.badge {
    margin-left: -25px;
    padding: 2px;
    border-radius: 50%;
    font-size: 9px !important;
    margin-right: 48px;
    padding-left: 7px;
    padding-right: 7px;
    background: white;
    color: black;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.tep .badge {
    margin-left: -48px;
}

/* Дополнительные утилиты */
.clear {
    clear: both;
    height: 30px;
}

.clear a {
    color: #919191;
}

.clear a:hover {
    color: #fff;
    text-decoration: underline;
}

.border {
    border-bottom: 1px solid #DDDDDD;
}

.sto {
    width: 91%;
}

.dots {
    margin-left: 10px;
    margin-right: 10px;
}

/* Сайдбары */
.left-sidebar,
.right-sidebar {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    border: 1px solid var(--border-color);
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list > li {
    margin-bottom: 2px;
}

.nav-list a {
    color: #353535;
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-list a:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
}

.nav-list > .active > a,
.nav-list > .active > a:hover,
.nav-list > .active > a:focus {
    background: #cb1103;
    color: white;
}

/* Разделители */
.solidline {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-color) 50%, transparent 100%);
    margin: var(--spacing-xl) 0;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
    margin: var(--spacing-xl) 0;
    border-radius: var(--radius-full);
}

/* Видео и карты */
.video-container,
.map-container,
.embed-container {
    position: relative;
    margin: 0 0 15px 0;
    padding-bottom: 51%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    border: none;
    border-radius: var(--radius-md);
}

.embed-container iframe,
.embed-container object,
.embed-container embed,
.video-container iframe,
.map-container iframe,
.map-container object,
.map-container embed,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

iframe {
    border: none;
}

img.img-polaroid {
    margin: 0 0 20px 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.img-box {
    max-width: 100%;
}

/* Форма поиска */
.form-search {
    position: relative;
}

.form-search .search-query {
    padding-right: 40px;
}

.form-search .search-button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border: none;
    background: transparent;
    padding: 0 var(--spacing-md);
    cursor: pointer;
    color: var(--text-secondary);
}

.form-search .search-button:hover {
    color: var(--primary-color);
}

@media (max-width: 700px) {
    .navbar-static-top .navigation {
        width: 100%;
    }
    
    .form-search {
        width: 100%;
    }
    
    .form-search .search-query {
        width: 83% !important;
    }
}

@media (max-width: 400px) {
    .form-search .search-query {
        width: 89% !important;
    }
}

/* Дополнительные элементы */
.selectmenu {
    display: none;
}

@media (max-width: 991px) {
    .selectmenu {
        display: block;
        width: 100%;
        padding: var(--spacing-sm) var(--spacing-md);
        border: 2px solid var(--border-color);
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        font-size: 0.875rem;
    }
}

/* Таблицы в корзине и заказах */
.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.cart-item-quantity input {
    width: 60px;
    text-align: center;
}

/* Адаптивность для новых компонентов */
@media (max-width: 768px) {
    .news-list,
    .article-list {
        grid-template-columns: 1fr;
    }
    
    .c-name {
        position: static;
        width: 100%;
        left: 0;
        margin-top: 0;
        padding-left: 0;
    }
    
    .imgs {
        width: 100%;
        float: none;
    }
    
    .accordion-vacancy .accordion-heading {
        flex-direction: column;
        text-align: center;
    }
    
    .accordion-vacancy .accordion-heading img {
        margin: 0 auto;
        float: none;
    }
    
    .left-sidebar,
    .right-sidebar {
        margin-bottom: var(--spacing-lg);
    }
}

/* ===================================
   ДАТАПИКЕР И ФОРМЫ
   =================================== */
.datepicker-dropdown {
    background: #F5F5F5 !important;
    padding: 7px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.day {
    cursor: pointer;
    text-align: center;
    padding: 5px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.day:hover {
    color: white;
    background: #CB1103;
    text-align: center;
}

.day.active {
    color: white;
    background: #CB1103;
    text-align: center;
}

.datep {
    float: right;
}

#dp3,
#dp4 {
    margin-right: 4px;
}

#dp3 .span1 {
    width: 79px;
}

#dp4 .span1 {
    width: 79px;
}

@media (min-width: 1200px) {
    .datep {
        width: 300px;
    }
}

/* Формы мастера */
.wizard_field_name {
    float: left;
    margin-right: 20px;
    min-width: 211px;
}

.wizard_sections input {
    float: left;
    margin-right: 10px;
}

.wizard textarea {
    width: 500px;
}

/* Фильтры */
.filter select {
    float: right;
    margin-right: 20px;
}

.filter-list {
    margin-bottom: var(--spacing-lg);
}

.add-on {
    cursor: pointer;
}

.add-on i {
    margin-right: 0 !important;
}

/* Секции контента */
section.callaction {
    background: #f9f9f9;
    padding: 50px 0 0 0;
}

.post-heading h3 a {
    font-weight: normal !important;
    font-size: 30px;
}

#inner-breadcrumb + .row {
    margin-bottom: 0;
}

#content img {
    margin: 5px;
    height: auto;
    border-radius: var(--radius-sm);
}

.image {
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.image img {
    display: block;
}

.image:before {
    content: attr(title);
    box-sizing: border-box;
    width: 100%;
    padding: 25px;
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    color: #fff;
    font: 11px/16px Tahoma, sans-serif;
}

/* Call to action */
.cta-text {
    float: left;
    margin-top: 10px;
}

.big-cta .cta {
    margin-top: 10px;
}

#bottom {
    background: #fcfcfc;
    padding: 50px 0 0;
}

/* Twitter */
#twitter-wrapper {
    text-align: center;
    width: 70%;
    margin: 0 auto;
}

#twitter em {
    font-style: normal;
    font-size: 13px;
}

/* Nivo control nav */
.nivo-controlNav {
    text-align: center;
    padding: var(--spacing-md) 0;
}

.nivo-controlNav a {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url(/bitrix/templates/simai_webstudio_v2/css/img/nivo-bullets.png) no-repeat;
    text-indent: -9999px;
    border: 0;
    margin: 0 2px;
    transition: var(--transition);
}

.nivo-control.active {
    background-position: 0 0;
}

.nivo-controlNav a:hover {
    opacity: 0.7;
}

/* Дополнительные утилиты */
.sto {
    width: 91%;
}

.dots {
    margin-left: 10px;
    margin-right: 10px;
}

.bx-core-waitwindow {
    display: none !important;
}

#ajax_w_form_9 {
    padding-top: 15px;
}

.well {
    overflow: hidden;
    padding-bottom: 10px;
    min-height: auto !important;
}

/* Адаптивность для форм */
@media (max-width: 768px) {
    .wizard textarea {
        width: 100%;
    }
    
    .wizard_field_name {
        width: 100%;
        margin-bottom: var(--spacing-sm);
    }
    
    .filter select {
        float: none;
        width: 100%;
        margin-bottom: var(--spacing-sm);
    }
    
    .datep {
        float: none;
        width: 100%;
    }
}

/* ===================================
   ЖУРНАЛЫ - СПИСОК СЕКЦИЙ
   =================================== */
.journal-sections {
    width: 100%;
    margin: 2rem 0;
}

.journal-sections__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
}

.journal-sections__item {
    position: relative;
    width: 100%;
}

.journal-sections__link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.journal-sections__link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.journal-sections__image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 140%;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.journal-sections__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.journal-sections__link:hover .journal-sections__image {
    transform: scale(1.05);
}

.journal-sections__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.journal-sections__link:hover .journal-sections__overlay {
    opacity: 1;
}

.journal-sections__content {
    padding: 1.25rem;
}

.journal-sections__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.journal-sections__link:hover .journal-sections__title {
    color: var(--primary-color);
}

.journal-sections__count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.journal-sections__count-number {
    font-weight: 600;
    color: var(--primary-color);
}

.journal-sections__count-text {
    color: var(--text-secondary);
}

@media (max-width: 1200px) {
    .journal-sections__grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .journal-sections {
        margin: 1.5rem 0;
    }
    
    .journal-sections__grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.25rem;
    }
    
    .journal-sections__content {
        padding: 1rem;
    }
    
    .journal-sections__title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .journal-sections__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .journal-sections__image-wrapper {
        padding-top: 120%;
    }
}

/* ===================================
   КАТАЛОГ ЖУРНАЛОВ - УЛУЧШЕННЫЕ СТИЛИ
   =================================== */

/* Основной контейнер каталога */
.bx_catalog_list_home {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
    border-bottom: none !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Карточка товара */
.bx_catalog_list_home .bx_catalog_item {
    float: none !important;
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.bx_catalog_list_home .bx_catalog_item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

/* Изображение товара */
.bx_catalog_list_home .bx_catalog_item_images,
.bx_catalog_list_home .bx_catalog_item_images_double {
    border-radius: 12px 12px 0 0 !important;
    background-color: #f3f4f6 !important;
}

.bx_catalog_list_home .bx_catalog_item:hover .bx_catalog_item_images {
    transform: scale(1.05) !important;
}

/* Заголовок товара - убираем дублирование */
.bx_catalog_list_home .bx_catalog_item_title {
    padding: 1rem 1.25rem 0.5rem !important;
    white-space: normal !important;
}

.bx_catalog_list_home .bx_catalog_item_title a {
    color: var(--text-primary) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.bx_catalog_list_home .bx_catalog_item_title a:hover {
    color: var(--primary-color) !important;
}

/* Убираем дублирование h2 внутри заголовка */
.bx_catalog_list_home .bx_catalog_item_title h2 {
    margin: 0 !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    display: inline !important;
}

/* Цена */
.bx_catalog_list_home .bx_catalog_item_price {
    padding: 0 1.25rem !important;
    margin-bottom: 0.75rem !important;
}

.bx_catalog_list_home .bx_catalog_item_price .bx_price {
    font-size: 1.25rem !important;
    color: var(--primary-color) !important;
}

/* Элементы управления */
.bx_catalog_list_home .bx_catalog_item_controls {
    padding: 0 1.25rem 1.25rem !important;
    opacity: 1 !important;
}

.bx_catalog_list_home .bx_catalog_item_controls_blocktwo {
    display: flex !important;
    gap: 0.5rem !important;
    flex-wrap: wrap !important;
}

.bx_catalog_list_home .bx_catalog_item_controls_blocktwo a {
    flex: 1 !important;
    min-width: 120px !important;
    padding: 0.625rem 1rem !important;
    border-radius: 8px !important;
    height: auto !important;
    margin: 0 !important;
}

.bx_catalog_list_home .bx_catalog_item_controls_blocktwo .bx_bt_button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%) !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3) !important;
}

.bx_catalog_list_home .bx_catalog_item_controls_blocktwo .bx_bt_button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4) !important;
}

.bx_catalog_list_home .bx_catalog_item_controls_blocktwo .bx_bt_button_type_2 {
    background: white !important;
    border: 2px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

.bx_catalog_list_home .bx_catalog_item_controls_blocktwo .bx_bt_button_type_2:hover {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    background: rgba(37, 99, 235, 0.05) !important;
}

@media (max-width: 1200px) {
    .bx_catalog_list_home {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .bx_catalog_list_home {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
        gap: 1.25rem !important;
    }
    
    .bx_catalog_list_home .bx_catalog_item_controls_blocktwo {
        flex-direction: column !important;
    }
    
    .bx_catalog_list_home .bx_catalog_item_controls_blocktwo a {
        width: 100% !important;
        min-width: auto !important;
    }
}

@media (max-width: 480px) {
    .bx_catalog_list_home {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

/* PDF просмотр на всю ширину экрана */
.journal-pdf-viewer {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
}

.journal-pdf-embed,
.journal-pdf-embed embed {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

/* Убираем дублирование названия в заголовках */
.bx_catalog_list_home .bx_catalog_item_title h2 {
    display: inline !important;
    margin: 0 !important;
    font-size: inherit !important;
    font-weight: inherit !important;
}


/* End */


/* Start:/bitrix/templates/simai_webstudio_v2/colorpicker/css/colorpicker.css?16159235923346*/
.colorpicker {
	width: 356px;
	height: 176px;
	overflow: hidden;
	position: absolute;
	background: url(/bitrix/templates/simai_webstudio_v2/colorpicker/css/../images/colorpicker_background.png);
	font-family: Arial, Helvetica, sans-serif;
	display: none;
}
.colorpicker_color {
	width: 150px;
	height: 150px;
	left: 14px;
	top: 13px;
	position: absolute;
	background: #f00;
	overflow: hidden;
	cursor: crosshair;
}
.colorpicker_color div {
	position: absolute;
	top: 0;
	left: 0;
	width: 150px;
	height: 150px;
	background: url(/bitrix/templates/simai_webstudio_v2/colorpicker/css/../images/colorpicker_overlay.png);
}
.colorpicker_color div div {
	position: absolute;
	top: 0;
	left: 0;
	width: 11px;
	height: 11px;
	overflow: hidden;
	background: url(/bitrix/templates/simai_webstudio_v2/colorpicker/css/../images/colorpicker_select.gif);
	margin: -5px 0 0 -5px;
}
.colorpicker_hue {
	position: absolute;
	top: 13px;
	left: 171px;
	width: 35px;
	height: 150px;
	cursor: n-resize;
}
.colorpicker_hue div {
	position: absolute;
	width: 35px;
	height: 9px;
	overflow: hidden;
	background: url(/bitrix/templates/simai_webstudio_v2/colorpicker/css/../images/colorpicker_indic.gif) left top;
	margin: -4px 0 0 0;
	left: 0px;
}
.colorpicker_new_color {
	position: absolute;
	width: 60px;
	height: 30px;
	left: 213px;
	top: 13px;
	background: #f00;
}
.colorpicker_current_color {
	position: absolute;
	width: 60px;
	height: 30px;
	left: 283px;
	top: 13px;
	background: #f00;
}
.colorpicker input {
	background-color: transparent !important;
	border: 1px solid transparent !important;
	position: absolute !important;
	font-size: 10px !important;
	font-family: Arial, Helvetica, sans-serif;
	color: #898989 !important;
	top: 4px!important;
	right: 11px !important;
	text-align: right;
	margin: 0 !important;
	padding: 0 !important;
	height: 11px !important;
	width:30px !important;
	line-height:11px !important;
}
.colorpicker_hex {
	position: absolute;
	width: 72px;
	height: 22px;
	background: url(/bitrix/templates/simai_webstudio_v2/colorpicker/css/../images/colorpicker_hex.png) top;
	left: 212px;
	top: 142px;
}
.colorpicker_hex input {
	right: 6px;
}
.colorpicker_field {
	height: 22px;
	width: 62px;
	background-position: top;
	position: absolute;
}
.colorpicker_field span {
	position: absolute;
	width: 12px;
	height: 22px;
	overflow: hidden;
	top: 0;
	right: 0;
	cursor: n-resize;
}
.colorpicker_rgb_r {
	background-image: url(/bitrix/templates/simai_webstudio_v2/colorpicker/css/../images/colorpicker_rgb_r.png);
	top: 52px;
	left: 212px;
}
.colorpicker_rgb_g {
	background-image: url(/bitrix/templates/simai_webstudio_v2/colorpicker/css/../images/colorpicker_rgb_g.png);
	top: 82px;
	left: 212px;
}
.colorpicker_rgb_b {
	background-image: url(/bitrix/templates/simai_webstudio_v2/colorpicker/css/../images/colorpicker_rgb_b.png);
	top: 112px;
	left: 212px;
}
.colorpicker_hsb_h {
	background-image: url(/bitrix/templates/simai_webstudio_v2/colorpicker/css/../images/colorpicker_hsb_h.png);
	top: 52px;
	left: 282px;
}
.colorpicker_hsb_s {
	background-image: url(/bitrix/templates/simai_webstudio_v2/colorpicker/css/../images/colorpicker_hsb_s.png);
	top: 82px;
	left: 282px;
}
.colorpicker_hsb_b {
	background-image: url(/bitrix/templates/simai_webstudio_v2/colorpicker/css/../images/colorpicker_hsb_b.png);
	top: 112px;
	left: 282px;
}
.colorpicker_submit {
	position: absolute;
	width: 22px;
	height: 22px;
	background: url(/bitrix/templates/simai_webstudio_v2/colorpicker/css/../images/colorpicker_submit.png) top;
	left: 322px;
	top: 142px;
	overflow: hidden;
}
.colorpicker_focus {
	background-position: center;
}
.colorpicker_hex.colorpicker_focus {
	background-position: bottom;
}
.colorpicker_submit.colorpicker_focus {
	background-position: bottom;
}
.colorpicker_slider {
	background-position: bottom;
}

/* End */


/* Start:/bitrix/templates/simai_webstudio_v2/js/tiptip.css?16159235921830*/
/* TipTip CSS - Version 1.2 */

#tiptip_holder  {
	display: none;
	position: absolute;
	top: 10px;
	left: 0;
	z-index: 99999;	
}

#tiptip_holder.tip_top {
	padding-bottom: 5px;
}

#tiptip_holder.tip_bottom {
	padding-top: 5px;
}

#tiptip_holder.tip_right {
	padding-left: 5px;
}

#tiptip_holder.tip_left {
	padding-right: 5px;
}

#tiptip_content {
	font-size: 10px;
	color: #737373;
	padding: 4px 8px;
	border: 1px solid #d1d1d1;
	background-color: #fff;
	border-radius: 3px;

	
	
}

#tiptip_arrow, #tiptip_arrow_inner {
	position: absolute;
	border-color: transparent;
	border-style: solid;
	border-width: 6px;	
	height: 0;
	width: 0;
}

#tiptip_holder.tip_top #tiptip_arrow {
	border-top-color: #fff;
	border-top-color: rgba(255,255,255,0.35);
}

#tiptip_holder.tip_bottom #tiptip_arrow {
	border-bottom-color: #fff;
	border-bottom-color: rgba(255,255,255,0.35);
}

#tiptip_holder.tip_right #tiptip_arrow {
	border-right-color: #fff;
	border-right-color: rgba(255,255,255,0.35);
}

#tiptip_holder.tip_left #tiptip_arrow {
	border-left-color: #fff;
	border-left-color: rgba(255,255,255,0.35);
}

#tiptip_holder.tip_top #tiptip_arrow_inner {
	margin-top: -7px;
	margin-left: -6px;
	border-top-color: #fff;
	border-top-color: #fff;
}

#tiptip_holder.tip_bottom #tiptip_arrow_inner {
	margin-top: -5px;
	margin-left: -6px;
	border-bottom-color: rgb(25,25,25);
	border-bottom-color: rgba(25,25,25,0.92);
}

#tiptip_holder.tip_right #tiptip_arrow_inner {
	margin-top: -6px;
	margin-left: -5px;
	border-right-color: rgb(25,25,25);
	border-right-color: rgba(25,25,25,0.92);
}

#tiptip_holder.tip_left #tiptip_arrow_inner {
	margin-top: -6px;
	margin-left: -7px;
	border-left-color: rgb(25,25,25);
	border-left-color: rgba(25,25,25,0.92);
}


/* End */


/* Start:/bitrix/templates/simai_webstudio_v2/styles.css?16159235924337*/
.contrast-version { border-bottom: 1px solid #009055; text-align: center; display: block; height: 22px; line-height: 22px; }
.contrast-version span { color: #009055; font-size: 14px; font-weight: bold; padding: 0 0 0 28px; height: 22px; display: inline-block; background: url("/bitrix/templates/simai_webstudio_v2/../images/icons.png") 0 4px no-repeat; text-transform: uppercase; }
.contrast-version:hover { border-bottom: 1px solid #000; }
.contrast-version:hover span { background: url("/bitrix/templates/simai_webstudio_v2/../images/icons.png") 0 -682px no-repeat; color: #000; }




h1, h2, h3, h4, h5, h6
{
  font-family: 'Open Sans','Roboto', sans-serif;
}
/* Bootstrap fix */
 .lead {color:#353535;}

.c-name a.name {font-family:Georgia; font-style:italic; font-size:14px;color:#4D4D4D;
    text-decoration:none; }
.c-name a.name:hover {color:#CD0000; }
.c-item {margin-bottom:10px; overflow:hidden; position:relative;}
.imgs {width:251px; height:170px; float:left; text-align:center; background-image:url('/bitrix/templates/simai_webstudio_v2/img/c-l-bg.png');}
.imgs a {display:block; width:251px; height:170px; background-position:center; background-repeat:no-repeat;}
.c-name {position: absolute;
    height: 30px;
    background-image: url('/bitrix/templates/simai_webstudio_v2/img/tick.png');
    width: 678px;
    left: 251px;
    top: 50%;
    margin-top: -15px; padding-left:25px;background-repeat:no-repeat; line-height:30px;}
	#am-container a {margin-left:30px !important; margin-bottom:30px !important; display:block; float:left;} 
.c-link {float:right; padding-left:30px; padding-right:15px; background-image:url('/bitrix/templates/simai_webstudio_v2/img/linkbg.png');min-width: 50px; background-repeat:no-repeat;background-color:#fff;}
.c-link:hover {background:#B60000;}
.c-link:hover a {color:white;background-image:url('/bitrix/templates/simai_webstudio_v2/img/link-ah.png');}
.c-link a {color:#A90000; font-family:Tahoma;font-size:12px; padding-right:20px; text-decoration:none; background-image:url('/bitrix/templates/simai_webstudio_v2/img/link-a.png'); background-repeat:no-repeat; background-position:center right;}
.sfera {float:right; margin-top:20px; max-width: 690px;font-family:Tahoma; font-size:10px; color:#7F7F7F; }
.sfera a {padding-left:10px; color:#333333;}
.jobs {position: absolute;
    left: 251px;
    bottom: 30px;
    padding-left: 20px;
    max-width: 650px;
    font-family:Tahoma; font-size:10px; color:#7F7F7F;}
.jobs a {padding-left:10px; color:#333333;}
.c-name .name:hover {color:#CD0000; text-shadow:0 0 1px #CD0000 }
.txe {display:block;}
.b-window .center ul {
    margin: 0;
    padding: 0;
}
.accordion-vacancy .accordion-group {margin: 20px 0;}
.accordion-vacancy .accordion-group .block-heading {overflow: hidden;}
.accordion-vacancy .accordion-heading {padding: 15px 15px 10px;}
.accordion-vacancy .accordion-heading .accordion-toggle {text-align: center;margin: 0 0 -43px;z-index:10;position: relative;}
.accordion-vacancy .accordion-heading img {float:left; margin-right:10px;}
.accordion-vacancy .accordion-group:nth-child(2n) img {float:right;}
.photogallery-list ul {list-style: none;margin: 0;}
.photogallery-list ul li {overflow: hidden;margin: 0 0 20px;}
.photogallery-list ul ul li {float: left;border: 4px solid #5c6470;margin: 15px 10px 0;}
.photogallery-list ul li h6 small{font-size: 70%;}
.photogallery-list ul ul li:hover {float: left;border: 4px solid #cd0000;}
.photogallery-inner-list ul {list-style-type: none;margin: 0; padding: 0;}
.photogallery-inner-list ul li {color: #cb1103;}
.photogallery-inner-list ul li.pil-top {clear: both;margin: 0 0 2em;overflow: hidden;}
.photogallery-inner-list ul ul li {float: left;border: 4px solid #5c6470;margin: 15px 10px 0;}
.photogallery-inner-list ul li h6 {margin-bottom: 10px;}
.photogallery-inner-list ul li h6 small{font-size: 70%;}
.photogallery-inner-list ul ul li:hover {float: left;border: 4px solid #cd0000;}
.bookmarkers {position: absolute;top: 0;left: 40px;}
.bookmarkers .icon {display: inline-block;}
.bookmarkers .icon a {display: block;height: 40px; width: 37px;background: url("/bitrix/templates/simai_webstudio_v2/img/social.png")  0 0 no-repeat;}
.bookmarkers .icon a.twitter {background-position: -38px 0;}
.bookmarkers .icon a.vk {background-position: -76px 0;}
.bookmarkers .icon a.lj {background-position: -114px 0;}
.bookmarkers .icon a.facebook:hover {background-position: 0 -40px;}
.bookmarkers .icon a.twitter:hover {background-position: -38px -40px;}
.bookmarkers .icon a.vk:hover {background-position: -76px -40px;}
.bookmarkers .icon a.lj:hover {background-position: -114px -40px;}
/* End */


/* Start:/bitrix/templates/simai_webstudio_v2/template_styles.css?176552823454369*/
/* ==== Google font ==== */
@import url('http://fonts.googleapis.com/css?family=Roboto:400,100,300,500&subset=latin,cyrillic-ext');

/* Table of content */
/*===================================
1. General
2. layout
3. Responsive media
4. Header
5. Section: Featured
6. Sliders
7. Intro
8. Section: Content
9. Section: Bottom
10. Inner - Section: page headline
11. Forms
12. Portfolio
13. Elements
14. Blog & article
15. Aside, sidebar
16. Footer
17. Divider, Line & Misc
18. Position & alignment
19. More icon from custom font icon
20. Spacer, margin
21. Media queries
==================================== */
/* ===================================
1. General
==================================== */

.logo a {text-decoration:none !important}
.logo span {font-size:49px; font-weight:bold;}

 @media screen and (max-width: 500px) {
    .logo span {
	font-size:30px !important;
} 
   }

.colored {font-weight:100 !important;color: #000;}
.order_site {border-bottom:none !important}
.topnav li:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem;
}
.topnav li:hover a {color:white !important;}
body {background:white;}
.menu-top {
    /* Фон теперь задается в modern-styles.css с градиентом */
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
}
.dropdown:hover .dropdown-menu {visibility: visible;  transition-delay: 0s, 0s, 0.3s;}
.menu-top .navbar .nav > li > a {color:#fff;text-transform:uppercase; font-size:14px; margin-right: 20px;}
.menu-top .navbar .nav > li {line-height:50px;}
.menu-top .dropdown-menu a {text-transform:uppercase;}
#wrapper.boxed {
width: 1230px !important;
overflow: hidden !important;
margin: 0 auto !important;
padding: 0 !important;
background: #fff;
}
.opener {text-align:right;}
#client-full {margin-left: 30px;}
.line-height td {line-height: 30px !important;
}
@media (max-width: 767px) {.phone {margin-top:30px !important;}}
.phone {width: 213px;
margin: auto;}
.center {text-align:center;}
.phone span {display:block;font-size: 25px; margin-bottom:5px; margin-top:-20px;}
.phone span i {float: left;
margin-right: 10px;
margin-top: 3px;}
/*.photogallery-list ul ul {height: 128px;*/
/*overflow: hidden;}*/
td.cart-item-name a {font-weight:normal !important}
.cart-item-quantity input {margin:0 !important}
.opis {font-size:16px;margin-bottom:5px;}
.cost {font-size: 16px;
margin-bottom: 5px;
font-weight: bold;
float: left;}
.catalog-item-in-the-cart {background:#ccc !important; color:#f3f3f3 !important; border:1px solid #ccc !important;}
.catitems .span3 {margin-bottom:20px;}
.cat .active a {font-weight:bold;}
.catitems .cartblock img {margin-bottom:20px;}
.r-panel {position: fixed;
right: 0;
top: 45%;
z-index: 99;
border-right: 0;

}
.action {float:right; border-bottom:1px dashed #cb1103; text-decoration:none !important }
.bordered {border-bottom:1px solid #ccc;}
.mobilever {display:none}

.popover-content ul li a {font-weight:normal !important; font-size:14px !important;}
@media (max-width: 700px) {.navbar-static-top .navigation {width: 100%;} .form-search {width: 100%;} .form-search .search-query {width:83% !important}}
.calme {border:none !important}


.popover-title {display:none;}
.popover-content {padding:0;}
.popover-content li {padding-left:10px; padding-right:10px; padding-top:5px; padding-bottom:5px;} 
.popover-content li:hover {background:#efefef}
.clear a:hover {
color: #fff; text-decoration:underline;}
@media (max-width: 400px) {.mobilever {background: none;
border: none;
margin-left: -21px;

display: block;
float: right;
margin-top: -26px;
z-index: 80;
position: relative;} .pcver {display:none !important;}
.form-search .search-query {width:89% !important;}
}
footer ul.link-list li a:hover {color:white !important; text-decoration:underline;}
.catitems .span3 {margin-bottom:40px;}
.catalog-item-buy {float:right;}
.catalog-item-in-the-cart {float:right;}
.cart-item-quantity input {width:40px;}
.popover-content li {display:block !important; margin-left:0 !important}
a[data-toggle="modal"] {border-bottom:1px dashed #cb1103; text-decoration:none !important}
a[rel="popover"] {border-bottom:1px dashed #cb1103; text-decoration:none !important; cursor:pointer}

.tep .badge {margin-left: -25px;
margin-left: -48px;
padding: 2px;
border-radius: 50%;
font-size: 9px !important;
margin-right: 48px;
padding-left: 7px;
padding-right: 7px;
background: white;
color:black;
box-shadow: 1px 1px 3px rgba(0,0,0, 0.5);
}
.nav-tabs li a {color:#555555; font-weight:normal;}
.nav-tabs .active a {font-weight:bold;}
#callManager .modal-body {max-height: 540px !important;}
.bx-core-waitwindow{
   display: none !important;
}
#ajax_w_form_9{padding-top: 15px;}
.well { overflow: hidden;
padding-bottom: 10px; min-height:auto !important}
.add-on i {margin-right:0 !important}
.datep {float:right;}
.clear {clear:both; height:30px;}
.border {border-bottom: 1px solid #DDDDDD;}
.sto {width:91%;}
.dots {margin-left:10px; margin-right:10px;}
.clear a {color: #919191;}
@media (min-width: 1200px) {.datep {width:300px;}}
#dp3 {margin-right:4px;}
#dp3 .span1 {width:79px}
#dp4 .span1 {width:79px}
.wizard_field_name {float: left;
margin-right: 20px;min-width: 211px}
.wizard_sections input {float:left; margin-right:10px;}
.wizard textarea {width: 500px;}
.filter select {float:right; margin-right:20px;}
.add-on {cursor:pointer;}
.day {cursor:pointer; text-align:center;}
.day:hover {color:white; background:#CB1103; text-align:center;}
.day.active {color:white; background:#CB1103; text-align:center;}
.datepicker-dropdown {background:#F5F5F5 !important; padding:7px; border:1px solid #ccc; border-radius:4px; box-shadow:0 2px 2px rgba(0,0,0, 0.2)}
.tp {
height: 40px;
margin-top: 1px;
}

.calme {transition: width 0.5s;}
.soc {transition: width 0.5s;}
.tep {margin-bottom:1px;transition: right 0.5s; right:-149px !important;}
.r-panel .calme:hover {right:0px !important}
.r-panel .tep:hover {right:0px !important}
.r-panel .soc:hover {right:0px !important}

.r-panel .item span {display:inline-block;vertical-align:top;padding-top: 3px;
font-size: 16px;}
.r-panel .item {color:black;transition: right 0.5s;padding-left: 12px; right: -149px; position:relative;width:180px;color:white !important;height: 35px;float: right;
padding-top: 5px; display:block;  text-decoration:none;}
.r-panel .item i {font-size:24px; padding:0; color:white !important;}
a:active {
	outline:0;
}

.clear {
	clear:both;
}

/* ===================================
2. layout
==================================== */

.container{
	padding:0 20px 0 20px;
	position:relative;
	overflow: visible; /* Для отображения выпадающих меню */
}

/* Убираем overflow на контейнерах меню */
.menu-top .container,
.menu-top .row,
.menu-top .span12 {
	overflow: visible !important;
}

#wrapper{
	width:100%;
	margin:0;
	padding:0;
	overflow: visible; /* Для отображения выпадающих меню */
}

#wrapper.boxed{
	width:90%;
	overflow:hidden;
	margin:0 auto;
	padding:0;
	background:#fff;
}

.row {
	margin-bottom:30px;
}

.row.bread {
    margin: 0px;

}

.row .row{
	margin-bottom:30px;
}

.row.nomargin {
	margin-bottom:0;
}

#inner-headline .form-search {
    float: right;
    margin-top: 46px;
    margin-bottom: 0;
}

#inner-breadcrumb
{
  background: #f9f9f9;
}


.nav-list > .active > a, .nav-list > .active > a:hover, .nav-list > .active > a:focus {background: #cb1103;}
.nav-list a {color: #353535;}
/* ===================================
3. Responsive media
==================================== */

.video-container,.map-container,.embed-container 		{ position:relative; margin:0 0 15px 0;	padding-bottom:51%; padding-top:30px; height:0; overflow:hidden; border:none; }
.embed-container iframe,
.embed-container object,
.embed-container embed,
.video-container iframe,
.map-container iframe,
.map-container object,
.map-container embed,
.video-container object,
.video-container embed 					{ position:absolute; top:0; left:0; width:100%; height:100%; }
iframe {
	border:none;
}

img.img-polaroid {
	margin:0 0 20px 0;
}
.img-box {
	max-width:100%;
}
/* ===================================
4. Header
==================================== */

/* --- hidden top area --- */

 .hidden-top {
   height: 0;
   color:#fff;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;

}

.hidden-top-inner  ul{
	list-style:none;
	margin-top:30px;
	margin-left:0;
}

.hidden-top-inner  ul li {
	display:inline;
	margin:0 20px 0 0;
}
 .hidden-top.toggle-link-open {
  padding: 10px 0;
}
.hidden-top a {
  color: #ffffff;
}

#header-hidden-link {
  position: absolute;
  right: 20px;
  top: 0px;

}
#header-hidden-link a.toggle-link,
#header-hidden-link a.top-link {
	outline:0;
  font-size: 0;
  line-height: 1;
  padding: 5px 10px;
  height: 20px;
  display: block;
  text-align: center;
  color: #fefefe;
  text-decoration: none;
}

#header-hidden-link a.toggle-link:active,#header-hidden-link a.toggle-link:focus,#header-hidden-link a.toggle-link:hover {
	outline:0;
}

#header-hidden-link a.toggle-link i,
#header-hidden-link a.top-link i {
  font-size: 16px;
  line-height: 1;
}
#header-hidden-link a.toggle-link:hover,
#header-hidden-link a.top-link:hover {
  text-decoration: none;
  color: #ffffff;
}
#header-hidden-link a.toggle-link > i:before {
  content: "\f067";
  font-family: 'FontAwesome';
  font-size: 13px;
  font-weight:normal;
  font-style: normal;
}
#header-hidden-link a.toggle-link.open {
  text-decoration: none;
}
#header-hidden-link a.toggle-link.open > i:before {
  content: "\f068";
}
.toggle-link-open {
  height: auto !important;
  min-height: 40px;
  max-height: 40000px;
}
.toggle-link-close {
  height: 0;
  overflow: hidden;
}

/* --- modal signup & signin form --- */
/* modal styled */
.modal.styled .modal-header h4 {
  color: #fff;
}


/* --- header -- */
header{
	background: #fff;
	margin:0;
	padding:0;
	position:relative;
}

 @media screen and (min-width: 1280px) {
     header .logo {
	margin:30px 0 0 0;  width: 1200px;
} 
   }

 @media screen and (max-width: 980px) {
     header .logo {
	margin:30px 0 0 0; /* width: 1200px;*/
} 
   }



header .logo img {
	margin-bottom:10px;
}
header .logo h1 {
	font-size:14px;
	margin:0;
}


/* --- headnav menu : signup & signin --- */

.headnav {
	float:right;
	margin:35px 0 0 0;
	border-bottom:1px dotted #e6e6e6;
}

.headnav ul {
	margin-left:0;
	list-style:none;
}

.headnav ul li {
	display:inline;
	margin-left:10px;
}
.headnav ul li a {
	outline:0;
	font-size:12px;
	font-weight:600;
}

.headnav ul li a:hover,.headnav ul li a:focus,.headnav ul li a:active {
	outline:0;
}

/* --- menu --- */

header .navigation {
	float:right;
}

header ul.nav li {
	border:none;
	margin:0;
}

header ul.nav li a {
	font-size:12px;
	border:none;
	font-weight:300;
	text-transform:uppercase;
}
.navbar .nav > li > a {
  color: #111;
  text-shadow: none;
}

.navbar .nav a:hover {
	background:none;
}

.navbar .nav > .active > a,.navbar .nav > .active > a:hover {
	background:none;
	font-weight:600;
}

.navbar .nav > .active > a:active,.navbar .nav > .active > a:focus {
	background:none;
	outline:0;
	font-weight:600;
}

.navbar .nav li .dropdown-menu {
	z-index:2000;
}

header ul.nav li ul {
	margin-top:1px;
}
header ul.nav li ul li ul {
	margin:1px 0 0 1px;
}
.dropdown-menu .dropdown i {
	position:absolute;
	right:0;
	margin-top:3px;
	padding-left:20px;
}
.dropdown-menu {
	padding:0px;
	margin:0px;
	visibility: hidden;
	transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

/* Переопределение для меню в menu-top */
.menu-top .dropdown-menu {
	visibility: hidden;
	opacity: 0;
}

.menu-top .dropdown:hover .dropdown-menu,
.menu-top .navbar .nav > li.dropdown:hover .dropdown-menu {
	visibility: visible;
	opacity: 1;
}
.navbar .nav > li > .dropdown-menu:before {
  display: inline-block;
  border-right: none;
  border-bottom: none;
  border-left: none;
  border-bottom-color: none;
  content:none;
}

.navbar .nav > li > .dropdown-menu:after {
  display: inline-block;
  border-right: none;
  border-bottom: none;
  border-left: none;
  content: '';
}


ul.nav li.dropdown a {
	z-index:1000;
	display:block;
}

 select.selectmenu {
	display:none;
}

/* ===================================
5. Section: Featured
==================================== */

#featured{
	background:#fcfcfc;
	position:relative;
	margin:0;
	padding:0;
}

/* ===================================
6. Sliders
==================================== */

/* --- slit slider --- */


/* --- flexslider --- */

#featured .flexslider {
	padding:0;
	margin: 30px 0 30px;
	background: #fff;
	position: relative;
	zoom: 1;
}

#featured .flexslider .slide-caption {
	background:#333;
}

#featured .flexslider .slide-caption {
	background:none;
	-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000);
	zoom: 1;
}
#featured .flexslider .slide-caption {
	width: 30%;
	padding: 2%;
	position: absolute;
	left: 10px;
	bottom: -30px;
	background: rgba(0,0,0,.5); z-index:99;
}

#featured .flexslider .slide-caption p {
	font-size: 14px !important;
	line-height: 22px;
	font-weight:300;
	color: #f0f0f0 !important;
	margin-bottom:15px;
}
#featured .flexslider .slide-caption h3{
	font-weight:700;
	color:#f4f4f4;
	font-size:22px;
}
#featured .flexslider .slide-caption span a{
	padding:7px 15px;
	float:left;
}
#featured .flexslider .slide-caption span a:hover{ opacity:.9;}


/* The Nivo Slider styles */

#nivo-slider {
	position: relative;
}
#nivo-slider img {
	display: none;
}
#nivo-slider img:first-child {
	display: block;
}
#featured #nivo-slider .row {
	margin-bottom:0;
}

.nivo-slider {
	background: #fbfbfb;
}

.slides { margin: 0; overflow: hidden; }
.slides li { list-style-type: none; }

.nivoSlider {
	position:relative;
	width:100%;
	height:auto;
	overflow: hidden;
	margin:0;
}
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	max-width: none;
}
.nivo-main-image {
	display: block !important;
	position: relative !important;
	width: 100% !important;
}

/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	border:0;
	padding:0;
	margin:0;
	z-index:6;
	display:none;
	background:white;
	filter:alpha(opacity=0);
	opacity:0;
}
/* The slices and boxes in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
	top:0;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
	overflow:hidden;
}
.nivo-box img { display:block; }

/* Caption styles */
.nivo-caption {
position:absolute; 
left:0; 
bottom:20px;
	background:#000;
	color:#fff;
	width:40%;
	z-index:8;
	padding: 20px;
	opacity: 0.8;
	overflow: hidden;
	display: none;
	-moz-opacity: 0.8;
	filter:alpha(opacity=8);
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */

}
.slidr {position:relative; bottom:20px }
.slidr .span12 {position:relative;}


.nivo-caption  h2 {
	color:#fff;
	font-size:26px;
	line-height:1em;
}
.nivo-caption  p {
	margin-bottom:20px;
}
.nivo-caption a {
	display:inline !important;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:50%;
	z-index:9;
	cursor:pointer;
}
.nivo-prevNav {
	right:0px;
}
.nivo-nextNav {
	right:0px;
}
/* Control nav styles (e.g. 1,2,3...) */

.nivo-controlNav {
	text-align: center;
	padding: 20px 0;
}

.nivo-controlNav a.active {
	background-position:0 -22px;
}

.nivo-directionNav a {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;

  /* sprites.less reset */
  display: inline;
  width: auto;
  height: auto;
  line-height: normal;
  vertical-align: baseline;
  background-image: none;
  background-position: 0% 0%;
  background-repeat: repeat;
    margin: 0;
    margin-top: -22px;
    display: inline-block !important;
    text-align: center !important;
    color: #fff;
    width: 45px;
    height: 45px;
	padding:3px;
    font-size: 39px;
    line-height: 45px;
    text-shadow:none;
    cursor: pointer;
    background-color: #000;
	right:15px;
}
.nivo-directionNav a { opacity: 0.5; }
a.nivo-nextNav {
	right:0px;
}
a.nivo-nextNav:before {
	content: "\f105";
    color: #fff;
}

a.nivo-prevNav {
	left:0;
}
a.nivo-prevNav:before {
	content: "\f104";
    color: #fff;
}


.nivo-controlNav.nivo-thumbs-enabled {
	width: 100%;
}
.nivo-controlNav.nivo-thumbs-enabled a {
	width: auto;
	height: auto;
	background: none;
	margin-bottom: 5px;
}
.nivo-controlNav.nivo-thumbs-enabled img {
	display: block;
	width: 120px;
	height: auto;
}

.nivo-controlNav a {
	display:inline-block;
	width:22px;
	height:22px;
	background:url(/bitrix/templates/simai_webstudio_v2/img/nivo-bullets.png) no-repeat;
	text-indent:-9999px;
	border:0;
	margin: 0 2px;

}
.nivo-control.active { background-position: 0 0; }



/* ===================================
7. Section: call action
==================================== */
section.callaction {
	background:#f9f9f9;
	padding:50px 0 0 0;
}

.inner-heading h1 {margin-bottom: 15px !important;
margin-left: -10px;
font-size: 49px;
margin-top: 15px}
#inner-breadcrumb + .row {margin-bottom:0}
.post-heading h3 a {font-weight:normal !important; font-size:30px;}
/* ===================================
8. Section: Content
==================================== */

#content {
	position:relative;
	background:#fff;
	padding:0 0 0 0;
}

#content img {
margin: 5px;
	height:auto;
}

.image {
    display: inline-block;
    vertical-align: top;
    position: relative;
    img {
        display: block;
    }
    &:before { // Теперь это не .caption, а псевдоэлемент
        content: attr(title); // Прописываем атрибут, из которого брать подпись
        box-sizing: border-box;
        width: 100%;
        padding: 25px;
        position: absolute;
        z-index: 2;
        left: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, .5);
        text-align: center;
        color: #fff;
        font: 11px/16px Tahoma, sans-serif;
    }
}
/* --- Call to action --- */

.cta-text {
	float:left;
	margin-top:10px;
}


.big-cta .cta {
	margin-top:10px;
}

/* ===================================
9. Section: Bottom
==================================== */

#bottom {
	background:#fcfcfc;
	padding:50px 0 0;

}
/* twitter */
#twitter-wrapper {
    text-align: center;
    width: 70%;
    margin: 0 auto;
}
#twitter em {
    font-style: normal;
    font-size: 13px;
}

#twitter em.twitterTime a {
	font-weight:600;
}

#twitter ul {
    padding: 0;
	list-style:none;
}
#twitter ul li {
    font-size: 20px;
    line-height: 1.6em;
    font-weight: 300;
    margin-bottom: 20px;
    position: relative;
    word-break: break-word;
}


/* ===================================
10. Inner - Section: page headline
==================================== */

h1 {font-size:49px !important}


#inner-headline .inner-heading h1 {
	color:#fff;
    font-size: 42px;
	margin:20px 0 0 0;
}
#inner-headline .inner-heading h2 {
	color:#fff;
	margin:20px 0 0 0;
}

/* --- breadcrumbs --- */
#inner-headline ul.breadcrumb {
	margin:30px 0 0;
	float:right;
}

#inner-headline ul.breadcrumb li {
	margin-bottom:0;
	padding-bottom:0;
}
#inner-headline ul.breadcrumb li {
	font-size:13px;
	color:#ddd;
}

#inner-headline ul.breadcrumb li i{
	color:#dedede;
}

#inner-headline ul.breadcrumb li a {
	color:#fff;
}

ul.breadcrumb li a:hover {
	text-decoration:none;
}

/* ============================
11. Forms
============================= */

/* --- contact form  ---- */
form#contactform input[type="text"] {
  width: 100%;
  min-height: 40px;
  padding-left:20px;
  font-size:13px;
  padding-right:20px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;

}

form#contactform textarea {
  width: 100%;
  padding-left:20px;
  padding-top:10px;
  font-size:13px;
  padding-right:20px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;

}

form#contactform .validation {
	font-size:11px;
}

#sendmessage {
	border:1px solid #e6e6e6;
	background:#f6f6f6;
	display:none;
	text-align:center;
	padding:15px 12px 15px 65px;
	margin:10px 0;
	font-weight:600;
	margin-bottom:30px;

}
#sendmessage.show,.show  {
	display:block;
}
.contacts-form form input[type="text"] {
    width: 100%;
    min-height: 40px;
    padding-left:20px;
    font-size:13px;
    padding-right:20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

}

.contacts-form form textarea {
    width: 100%;
    padding-left:20px;
    padding-top:10px;
    font-size:13px;
    padding-right:20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

}
.contacts-form form img {float: left;margin: 0 20px 0 0;}
/* --- comment form ---- */
form#commentform input[type="text"] {
  width: 100%;
  min-height: 40px;
  padding-left:20px;
  font-size:13px;
  padding-right:20px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
	-webkit-border-radius: 2px 2px 2px 2px;
		-moz-border-radius: 2px 2px 2px 2px;
			border-radius: 2px 2px 2px 2px;

}

form#commentform textarea {
  width: 100%;
  padding-left:20px;
  padding-top:10px;
  font-size:13px;
  padding-right:20px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
	-webkit-border-radius: 2px 2px 2px 2px;
		-moz-border-radius: 2px 2px 2px 2px;
			border-radius: 2px 2px 2px 2px;
}


/* --- search form --- */
.search{
	float:right;
	margin:35px 0 0;
	padding-bottom:0;
}

#inner-headline form.input-append {
	margin:0;
	padding:0;
}



/* ===============================
12. Portfolio
================================ */

.work-nav #filters {
	margin: 0;
	padding: 0;
	list-style: none;
}

.work-nav #filters li {
	margin: 0 10px 30px 0;
	padding: 0;
	float:left;
}

.work-nav #filters li a {
	color: #7F8289;
	font-size: 16px;
	display: block;
}

.work-nav #filters li a:hover {

}

.work-nav #filters li a.selected {
	color: #DE5E60;
}

#thumbs {
	margin: 0;
	padding: 0;
}

#thumbs li {
	list-style-type: none;
}
#thumbs li .wrap-clients {
    border: 4px solid #e4e4e4;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
#thumbs li a.overlay-portfolio {
    background: #cb1103;
    color: #fff;
    font: 150% "Open Sans";
    text-decoration: none !important;
}
#thumbs li a.overlay-portfolio span {
    display: block;
    padding: 40px 40px 10px 40px;
}
#thumbs li a.overlay-portfolio p {
    display: block;
    font-size: 70%;
    padding: 0 40px;
}
#thumbs li a.zoom-portfolio {
    position: absolute;
    width: 18px;
    height: 14px;
    bottom: 35px;
    right: 35px;
    color: #fff;
    text-decoration: none !important;
}
#thumbs li a.zoom-portfolio i {
    padding: 10px;
    background: #040404;
    opacity: 0.8;
}
#thumbs li a.zoom-portfolio:hover {
    opacity: 0.8;
}
.item-thumbs {
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
	cursor: pointer;
}

.item-thumbs a + img {
	width: 100%;
}

.item-thumbs .hover-wrap {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;

	opacity: 0;
	filter: alpha(opacity=0);

    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.item-thumbs:hover .hover-wrap,
.item-thumbs.active .hover-wrap {
	opacity: 0.6;
	filter: alpha(opacity=60);

	-webkit-transform: rotateY(0deg) scale(1,1);
	   -moz-transform: rotateY(0deg) scale(1,1);
		-ms-transform: rotateY(0deg) scale(1,1);
		 -o-transform: rotateY(0deg) scale(1,1);
		    transform: rotateY(0deg) scale(1,1);
}

.item-thumbs .hover-wrap .overlay-img {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0.80;
	filter: alpha(opacity=80);
}

.item-thumbs .hover-wrap .overlay-img-thumb {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -16px 0 0 -16px;
	color: #fff;
	font-size: 32px;
	line-height: 1em;
	opacity: 1;
	filter: alpha(opacity=100);
}


/* --- Portolio filter --- */

ul.portfolio-categ{
	margin:10px 0 30px 0;
	padding:0;
	float:left;
	list-style:none;
}

ul.portfolio-categ li{
	margin:0;
	padding:0 20px 0 0;
	float:left;
	list-style:none;
	font-size:13px;
	font-weight:600;
}

ul.portfolio-categ li a{
	display:block;
	padding:35x 0 35x 0;
	color:#353535;
}

ul.portfolio-categ li.active a:hover, ul.portfolio-categ li a:hover,ul.portfolio-categ li a:focus,ul.portfolio-categ li a:active {
	text-decoration:none;
	outline:0;
}



/* --- portfolio detail --- */
.top-wrapper {
	margin-bottom:20px;
}

/* ===============================
13. Elements
================================ */

/* --- blockquote --- */
blockquote {
	font-size:16px;
	font-weight:400;
	font-family:'Roboto', serif;
	font-style:italic;
	padding-left:0;
	color:#a2a2a2;
	line-height:1.6em;
	border:none;
}

blockquote cite 							{ display:block; font-size:12px; color:#666; margin-top:10px; }
blockquote cite:before 					{ content:"\2014 \0020"; }
blockquote cite a,
blockquote cite a:visited,
blockquote cite a:visited 				{ color:#555; }

/* --- pullquotes --- */

.pullquote-left {
	display:block;
	color:#a2a2a2;
	font-family:'Roboto', serif;
	font-size:14px;
	line-height:1.6em;
	padding-left:20px;
}

.pullquote-right {
	display:block;
	color:#a2a2a2;
	font-family:'Roboto', serif;
	font-size:14px;
	line-height:1.6em;
	padding-right:20px;
}

/* --- list style --- */

ul.general {
	list-style:none;
	margin-left:0;
}

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

ul.link-list li{
	margin:0;
	padding:2px 0 2px 0;
	list-style:none;
}

footer ul.link-list li a{
	color:#919191;
}

/* --- Heading style --- */

h4.heading {
	font-weight:300;
}

h4.heading strong {
	font-weight:700;
}

.heading { margin-bottom: 30px; }

.heading {
	position: relative;

}


.widgetheading {
	width:100%;

	padding:0;
}

#bottom .widgetheading {
	position: relative;
	border-bottom: #e6e6e6 1px solid;
	padding-bottom: 9px;
}

aside .widgetheading {
	position: relative;
	border-bottom: #e9e9e9 1px solid;
	padding-bottom: 9px;
}

footer .widgetheading {
	position: relative;
}

footer .widget .social-network {
	position:relative;
}


#bottom .widget .widgetheading span, aside .widget .widgetheading span, footer .widget .widgetheading span {
	position: absolute;
	width: 60px;
	height: 1px;
	bottom: -1px;
	right:0;

}



/* --- testimonial --- */
.testimonial {
	background:#fff;
	padding:20px;
	border:1px solid #e6e6e6;
}

.testimonial .author img {
	float:left;
	margin:0 10px 0;
}

.testimonial p.text {
	color:#b2b2b2;
	font-family:'Roboto', sans-serif;
	font-size:14px;
	font-style:italic;
	line-height:1.6em;
	margin-bottom:30px;
}

.testimonial .author p.name {
	font-weight:bold;
}

/* --- Clients style --- */

ul.clients{
	list-style:none;
	float:left;
	width:100%;
	margin:0;
	padding:0;
}

ul.clients li {
	position:relative;
	float:left;
	width:155px;
	margin:0;
	border:4px solid #e9e9e9;
}

ul.clients li:hover {
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

ul.clients li img {
	margin:0;
	opacity:0.8;
}

ul.clients li img:hover {
	opacity:1;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

/* --- Map --- */
.map{
	position:relative;
	margin-top:-50px;
	margin-bottom:40px;
}

.map iframe{
	width:100%;
	height:450px;
	border:none;
}

.map-grid iframe{
	width:100%;
	height:350px;
	border:none;
	margin:0 0 -5px 0;
	padding:0;
}

/* --- our team --- */

ul.team-detail{
	margin:-10px 0 0 0;
	padding:0;
	list-style:none;
}

ul.team-detail li{
	border-bottom:1px dotted #e9e9e9;
	margin:0 0 15px 0;
	padding:0 0 15px 0;
	list-style:none;
}

ul.team-detail li label {
	font-size:13px;
}

ul.team-detail li h4, ul.team-detail li label{
	margin-bottom:0;
}

ul.team-detail li ul.social-network {
	border:none;
	margin:0;
	padding:0;
}

ul.team-detail li ul.social-network li {
	border:none;
	margin:0;
}
ul.team-detail li ul.social-network li i {
	margin:0;
}

/* --- Pricing box --- */


.pricing-title{
	background:#fff;
	text-align:center;
	padding:10px 0 10px 0;
}

.pricing-title h3{
	font-weight:600;
	margin-bottom:0;
}

.pricing-offer{
	background: #fcfcfc;
	text-align: center;
	padding:40px 0 40px 0;
	font-size:18px;
	border-top:1px solid #e6e6e6;
	border-bottom:1px solid #e6e6e6;
}

.pricing-box.special .pricing-offer{
	color:#fff;
}

.pricing-offer strong{
	font-size:78px;
	line-height:89px;
}

.pricing-offer sup{
	font-size:28px;
}

.pricing-content{
	background: #fff;
	text-align:center;
	font-size:14px;
}

.pricing-content strong{
color:#353535;
}

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

.pricing-content ul li{
	border-bottom:1px solid #e9e9e9;
	list-style:none;
	padding:15px 0 15px 0;
	margin:0 0 0 0;
}

.pricing-action{
	margin:0;
	background: #fcfcfc;
	text-align:center;
	padding:20px 0 30px 0;
}

.pricing-wrapp{
	margin:0 auto;
	width:100%;
	background:#fd0000;
}

/* --- pricing box alt 1 --- */
.pricing-box-alt {
border: 1px solid #e6e6e6;
	background:#fcfcfc;
	position:relative;
	margin:0 0 20px 0;
	padding:0;
  -webkit-box-shadow: 0 2px 0 rgba(0,0,0,0.03);
  -moz-box-shadow: 0 2px 0 rgba(0,0,0,0.03);
  box-shadow: 0 2px 0 rgba(0,0,0,0.03);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.pricing-box-alt .pricing-heading {
	background: #fcfcfc;
	text-align: center;
	padding:40px 0 0px 0;
	display:block;
}
.pricing-box-alt.special .pricing-heading {
	background: #fcfcfc;
	text-align: center;
	padding:40px 0 1px 0;
	border-bottom:none;
	display:block;
	color:#fff;
}
.pricing-box-alt.special .pricing-heading h3 {
	color:#fff;
}

.pricing-box-alt .pricing-heading h3 strong {
	font-size:32px;
	font-weight:700;
	letter-spacing:-1px;
}
.pricing-box-alt .pricing-heading h3 {
	font-size:32px;
	font-weight:300;
	letter-spacing:-1px;
}

.pricing-box-alt .pricing-terms {
	text-align: center;
	background:#333;
	display:block;
	overflow:hidden;
	padding:30px 0 20px;
}

.pricing-box-alt .pricing-terms  h6 {
	font-style:italic;
	margin-top:10px;
	color:#fff;

	font-family:'Roboto', serif;
}

.pricing-box-alt .icon .price-circled {
    margin: 10px 10px 10px 0;
    display: inline-block !important;
    text-align: center !important;
    color: #fff;
    width: 68px;
    height: 68px;
	padding:12px;
    font-size: 16px;
	font-weight:700;
    line-height: 68px;
    text-shadow:none;
    cursor: pointer;
    background-color: #888;
    border-radius: 64px;
    -moz-border-radius: 64px;
    -webkit-border-radius: 64px;
}

.pricing-box-alt  .pricing-action{
	margin:0;
	text-align:center;
	padding:30px 0 30px 0;
}




/* --- Custom carousel --- */

.custom-carousel-nav{
	outline:0;
  color: #ffffff;
  text-align: center;
}

a.custom-carousel-nav {
	outline:0;
}

a.custom-carousel-nav:hover{
	outline:0;
	text-decoration:none;
}

.icon-control {
	margin:0 0 0 140px;
}

/* ===============================
14. Blog & article
================================ */

article{
	float:left;
	width:100%;
	margin-bottom:40px;
}

article .post-heading h3 {
	margin-bottom:20px;
}

article .post-heading h3 a {
	font-weight:700;
	color:#353535;
}

article .post-heading h3 a:hover {
	text-decoration:none;
}


/* --- post meta --- */
.post-meta {
	background:#fcfcfc;
	border:1px solid #e6e6e6;
	border-top:none;
	text-align:center;
}

.post-meta .format {
	border-bottom:1px solid #e6e6e6;
	padding:10px 0 10px;
}

.post-meta i{
	margin:0;
}

.post-meta .date {
	border-bottom:1px solid #e6e6e6;
	padding:10px 0 10px;
}

.post-meta .date span {
	text-align:center;
	color:#999;
	font-size:12px;
	font-weight:600;
}

.post-meta .comments {
	padding:10px 0 10px;
}

.post-meta .comments a {
	color:#999;
	font-size:12px;
	font-weight:700;
}

.post-meta .comments a:hover {
	text-decoration:none;
}

/* --- post format --- */

.post-image {
	margin-bottom:20px;
}

.post-quote {
	margin-bottom:20px;
}

.post-video {
	margin-bottom:20px;
}

.post-audio {
	margin-bottom:20px;
}

.post-link {
	margin-bottom:20px;
}

.post-slider {
	margin-bottom:20px;
}


.post-quote blockquote {
	font-size:16px;
	color:#999;
	font-family:'Roboto', serif;
	font-style:italic;
	line-height:1.6em;
}


.post-image img:hover {
  -webkit-box-shadow: 0 0 2px #979797;
     -moz-box-shadow: 0 0 2px #979797;
          box-shadow: 0 0 2px #979797;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

ul.meta-post{
	float:left;
	margin: 0;
	padding:0;
	list-style:none;
}

ul.meta-post li{
	float:left;
	margin:0 10px 0 0;
	padding:0;
	list-style:none;
	border-right:1px dotted #e9e9e9;
	padding-right:10px;
}

ul.meta-post li i {
	float:left;
	font-size:12px;
	margin:2px 5px 0 0;
}

ul.meta-post li a{
	color:#999;
	float:left;
	font-size:12px;
	font-weight:600;
}

/* --- single post --- */
.bottom-article{
	float:left;
	width:100%;
	border-top:1px solid #e9e9e9;
	border-bottom:1px solid #e9e9e9;
	padding:10px 0 10px 0;
	margin-top:20px;
}

/* --- author info --- */

.about-author {
	border:1px solid #d5d5d5;
	padding:20px;
	float:left;
	margin-bottom:5px;
}

.about-author h5 {
	margin-bottom:10px;
}



/* --- Comment --- */

.comment-area {
	float:left;
	width:100%;
	margin-top:30px;
}


.media-content{
	overflow:hidden;
	margin-left:12px;
	border-bottom:1px dotted #d5d5d5;
	padding-bottom:20px;
}

.media-content h6 {
	font-size:14px;
	font-weight:700;
}

.media-content span{
	color:#a9a9a9;
	font-size:14px;
	font-weight:300;
}

.comment-area .thumbnail > img {
  display: block;
	width:60px;
	height:60px;
}
.filter-list{
	margin-top:20px;
}

/* --- pagination --- */
#pagination {
    overflow: hidden;
}
#pagination a,
#pagination span {
    display: block;
    float: left;
    margin: 0 7px 0 0;
    padding: 7px 10px 6px 10px;
    font-size: 12px;
    line-height:12px;
    color: #888;
	font-weight:600;
}

#pagination a:hover {
    color: #fff;
	text-decoration:none;
}

#pagination span.current {
    background: #333;
    color: #fff;
    font-weight: bold;
}


/* ===============================
15. Aside, sidebar
================================ */

aside{
	position:relative;
	margin-bottom:40px;
}

.sidebar-nav{
	float:left;
	width:100%;
}

.right-sidebar{
	border-left:1px solid #e9e9e9;
	padding:0 0 0 30px;
-webkit-box-shadow:inset 1px 0 0 0 rgba(0,0,0,.01);
box-shadow:inset 1px 0 0 0 rgba(0,0,0,.01);

}


.left-sidebar{
	border-right:1px solid #e9e9e9;
	padding:0 30px 0 0;
-webkit-box-shadow:inset 1px 0 0 0 rgba(0,0,0,.01);
box-shadow:inset 1px 0 0 0 rgba(0,0,0,.01);
}


.left-sidebar .widget h3, .left-sidebar .widget .widget-content{
	padding-right:20px;
}



aside .widget {
	margin-bottom:40px;
}


ul.cat, ul.recent, ul.folio-detail, ul.contact-info{
	margin:0;
	padding:0;
	list-style:none;
}

ul.cat li, ul.recent li, ul.folio-detail li, ul.contact-info li{
	margin:0 0 15px 0;
	list-style:none;
}

ul.cat li a, ul.folio-detail li a{
	color:#656565;
}
ul.cat.bold li a {font-weight: bold;}
.service-element {margin: 0.8em 0;}
ul.folio-detail li label{
	display:inline;
	cursor:default;
	color:#353535;
	font-weight:bold;
}

.widget ul.recent li {
	margin-bottom:20px;
}

ul.recent li h6 {
	margin:0 0 10px 0;
}

ul.recent li h6 a{
	color:#353535;
	font-size:16px;
	font-weight:600;
}


.widget ul.tags {
	list-style:none;
	margin:0;
}

.widget ul.tags li {
	margin:0 5px 15px 0;
	display:inline-block;
}


.widget ul.tags li a {
	background:#e6e6e6;
	color:#333;
	padding:5px 10px;
}

.widget ul.tags li a:hover {
	text-decoration:none;
	color:#fff;
}

/* ===== Widgets ===== */

/* --- flickr --- */
.widget .flickr_badge {
	width:100%;
}
.widget .flickr_badge img { margin: 0 9px 20px 0; }

footer .widget .flickr_badge {
    width: 100%;
}
footer .widget .flickr_badge img {
    margin: 0 9px 20px 0;
}

.flickr_badge img {
    width: 50px;
    height: 50px;
    float: left;
	margin: 0 9px 20px 0;
}

/* --- latest tweet widget --- */

.twitter ul{
	margin-left:0;
	list-style:none;
}

.twitter  img{
    float: left;
    margin-right: 15px;
}
.twitter span.tweet_time{
    display: block;
    padding-bottom: 5px;

}
.twitter li{
    border-bottom: 1px dashed #efefef;
    padding-bottom: 20px;
    margin-bottom: 20px;
    list-style: none;
}
.twitter li:last-child{border: none;}

/* --- Recent post widget --- */

.recent-post{
	margin:20px 0 0 0;
	padding:0;
	line-height:18px;
}

.recent-post h5 a:hover {
	text-decoration:none;
}

.recent-post .text h5 a {
	color:#353535;
}


ul.time-post{
	float:left;
	width:120px;
	padding:0;
	list-style:none;
	margin:0 20px 0 0;
	text-align:center;
	color: #0e0f0f;
}

ul.time-post li{
	float:none;
	background:#f8f8f8;
	list-style:none;
	margin:0 0 2px 0;
	padding:0;
}

ul.time-post li a img:hover{
	opacity: 0.8;
	/* For IE 5-7 */
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
	/* For IE 8 8 */
	-MS-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

ul.time-post li.time{
	float:none;
	padding:5px 0 5px 0;
	text-shadow: none;
}

.recent-post ul.time-post li.time{
	color:#121214;
}

.post-meta{
	margin-bottom:20px;
}

.post-meta span{
	padding:0 10px 0 10px;
	margin-bottom:10px;
}

.post-meta span a{
	color:#919191;
}

.post-meta strong{
	font-weight:200px;
	color:#c7c7c7;
}

.item .text {
	margin-left:140px;
	margin-bottom:20px;
}

/* ===============================
16. Footer
================================ */



footer a {
	color:#eee;
}

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6{
	color:#eee;
}

footer address {
	line-height:1.6em;
}

footer h5 a:hover, footer a:hover {
	text-decoration:none;
}

ul.social-network {
	list-style:none;
	margin:0;
}

ul.social-network li {
	display:inline;
}

#sub-footer{
	background:#2e5086;
	text-shadow:none;
	color:#5d5d5d;
	padding:0;
	padding-top:30px;
	margin:20px 0 0 0;
}

#sub-footer p{
	margin:0;
	padding:0;
}

#sub-footer span{
	color:#c7c7c7;
}

.copyright {
	text-align:left;
	font-size:12px;
}

#sub-footer ul.social-network {
	float:right;
}


/* ===============================
 Live preview purpose
================================ */
/* --- buttons --- */

.bs-docs-example {
	margin:0 0 10px 0;
}

.demobtn a.btn {
	margin:0 10px 10px 0;
}

section.demogrid .span1,section.demogrid .span2,section.demogrid .span3,section.demogrid .span4,section.demogrid .span5,section.demogrid .span6,section.demogrid .span7,section.demogrid .span8,section.demogrid .span9,section.demogrid .span10,section.demogrid .span11 {
	background:#f6f6f6;
	text-align:center;
	padding:20px 0 20px;
}

section.demogrid .show-grid .row {
	margin-bottom:0;
}

section.demogrid .show-grid .nest {
	background:#ddd;
	text-align:center;
	padding:20px 0 20px;
}

section.demogrid .span12.nest {
	background:#f6f6f6;
	text-align:center;
	padding:20px 0 0;
}

.demoinline p {
	display:inline;
	margin-right:20px;
}

/* --- demo animations --- */

.demo a.btn {
	margin:0 10px 10px 0;
}




/* ===============================
17. Divider, Line & Misc
================================ */

.solidline {
	border-top:1px solid #e6e6e6;
	margin:0 0 30px;
}

.dottedline {
	border-top:1px dotted #e6e6e6;
	margin:0 0 30px;
}

.dashedline {
	border-top:1px dotted #e6e6e6;
	margin:0 0 30px;
}

.blankline {
	height:1px;
	margin:0 0 30px;
}


/* scroll to top */
.scrollup{
    position:fixed;
	width:32px;
	height:32px;
    bottom:0px;
    right:20px;
}

a.scrollup {
	outline:0;
}

a.scrollup:hover,a.scrollup:active,a.scrollup:focus {
	opacity:1;
	text-decoration:none;
}
a.scrollup i:hover {
	text-decoration:none;
}




/* =============================
18. Position & alignment
============================= */

.absolute{
	position:absolute;
}

.relative{
	position:relative;
}

.aligncenter{
	text-align:center;
}

.aligncenter span{
	margin-left:0;
}

.floatright {
	float:right;
}

.floatleft {
	float:left;
}

.floatnone {
	float:none;
}

.aligncenter {
	text-align:center;
}

/* --- Image allignment style --- */

img.pull-left, .align-left{
	float:left;
	margin:0 15px 15px 0;
}

.widget img.pull-left {
	float:left;
	margin:0 15px 15px 0;
}

img.pull-right, .align-right {
	float:right;
	margin:0 0 15px 15px;
}

article img.pull-left, article .align-left{
	float:left;
	margin:5px 15px 15px 0;
}

article img.pull-right, article .align-right{
	float:right;
	margin:5px 0 15px 15px;
}

/* =============================
19. Custom icon from custom font icon
============================= */


/* ==================================================
   Icons Example
================================================== */

.icons-example ul {
	margin: 0 0 0 -20px;
	padding: 0;
	text-align: center;
}

.icons-example ul li {
	display: inline-block;
	margin: 0 0 10px 20px;
	list-style: none;
	cursor: pointer;
}

.icons-example ul li a {
	display: inline;

	-webkit-transition: all 400ms ease-out 0s;
	   -moz-transition: all 400ms ease-out 0s;
		 -o-transition: all 400ms ease-out 0s;
		    transition: all 400ms ease-out 0s;

}

.icons-example ul li a span {
	display: inline-block;
	margin: 0;
	color: #111;
	font-size: 32px;
	line-height: 70px;
}



/* =============================
20. Spacer, margin
============================= */

.clear-marginbot{
	margin-bottom:0;
}

.marginbot10{
	margin-bottom:10px;
}
.marginbot20{
	margin-bottom:20px;
}
.marginbot30{
	margin-bottom:30px;
}
.marginbot40{
	margin-bottom:40px;
}

.clear-margintop{
	margin-top:0;
}

.margintop10{
	margin-top:10px;
}

.margintop20{
	margin-top:20px;
}

.margintop30{
	margin-top:30px;
}

.margintop40{
	margin-top:40px;
}


/* =============================
21. Media queries
============================= */

@media (min-width: 1200px) {
	#wrapper.boxed{
		width:95%;
		margin:0 auto;
	}


	ul.clients li{
		width:170px;
		margin:0 30px 0 0;
	}
	ul.clients li .client-hover{
		width:170px;
	}

	ul.related-folio li{
		width:260px;
		margin:0 30px 0 0;
	}
}

@media (min-width: 979px) and (max-width: 1200px) {
	#wrapper.boxed{
		width:90%;
		margin:0 auto;
	}



}

@media (min-width: 768px) and (max-width: 979px) {
	#wrapper.boxed{
		width:90%;
		margin:0 auto;
	}


	.navbar .nav {
		border:none;
	}

	.navbar .nav li a{
		border:none;
	}



	a.detail{
		background:none;
		width:100%;
	}

	.nivo-caption {
		width:50%;
	}

	/* slitslider */
	.sl-slider h2 {
		font-size: 72px;
	}

	ul.clients li{
		width:104px;
		margin:0 20px 0 0;
	}
	ul.clients li .client-hover{
		width:104px;
	}

	footer .widget form  input#appendedInputButton {
		  display: block;
		  width: 91%;
		  -webkit-border-radius: 4px 4px 4px 4px;
			 -moz-border-radius: 4px 4px 4px 4px;
				  border-radius: 4px 4px 4px 4px;
	}

	footer .widget form  .input-append .btn {
		  display: block;
		  width: 100%;
		  padding-right: 0;
		  padding-left: 0;
		  -webkit-box-sizing: border-box;
			 -moz-box-sizing: border-box;
				  box-sizing: border-box;
				  margin-top:10px;
	}

	ul.related-folio li{
		width:156px;
		margin:0 20px 0 0;
	}
}

@media (max-width: 767px) {

  body {
    padding-right: 0;
    padding-left: 0;
  }

	#wrapper.boxed{
		width:90%;
		margin:0 auto;
	}


	  .navbar-fixed-top,
	  .navbar-fixed-bottom,
	  .navbar-static-top {
		margin-right: 0;
		margin-left: 0;
	  }

	.navbar .nav {
		margin-top:40px;
		border-bottom:1px solid #2d2d2d;
	}

	div nav ul {
		display:none;
	}
	nav ul li {
		display:none;
	}

    select.selectmenu  {
      display: block;
	  width:100%;
	  margin-bottom:20px;
	  color:#111;
	  margin-right:20px;
	  line-height:30px;
		font-size:13px;

    }

	select.selectmenu .bold {
		font-weight:bold;
	}


	.box {
		border-bottom:1px solid #e9e9e9;
		padding-bottom:20px;
	}

	#featured .flexslider .slide-caption {
		width: 90%;
		padding: 2%;
		position: absolute;
		left: 0;
		bottom: -40px;
	}

	/* slitslider */
	.sl-slider h2 {
		font-size: 60px;
	}

	/* nivo slider */
	.nivo-caption {
		left:0;
		bottom:0;
		width:100%;
		padding: 10px;
	}

	#inner-headline .breadcrumb {
		float:left;
		clear:both;
		width:100%;
	}

	#inner-headline .search {
		float:left;
		margin-top:20px;
	}


	.breadcrumb > li {
		font-size:13px;
	}


	ul.portfolio li article a i.icon-48{
		width:20px;
		height:20px;
		font-size:16px;
		line-height:20px;
	}


	.left-sidebar{
		border-right:none;
		padding:0 0 0 0;
		border-bottom: 1px dotted #e6e6e6;
		padding-bottom:10px;
		margin-bottom:40px;
	}

	.right-sidebar{
		margin-top:30px;
		border-left:none;
		padding:0 0 0 0;
	}


	footer .span1, footer .span2, footer .span3, footer .span4, footer .span5, footer .span6,
	footer .span7, footer .span8, footer .span9, footer .span10, footer .span11, footer .span12{
		margin-bottom:20px;
	}

	#sub-footer ul.social-network {
		float:left;
	}



  [class*="span"] {
		margin-bottom:20px;
  }

}

@media (max-width: 480px) {

	header .logo {
		margin:0 auto;
		text-align:center;
		margin-top:20px;
		float:none;
	}

	header .logo img {
		margin-bottom:10px;
	}
	header .logo h1 {
		font-size:14px;
		margin:0;
	}

	.bottom-article a.pull-right {
		float:left;
		margin-top:20px;
	}

	.navbar .nav {
		margin-top:40px;
		border-bottom:1px solid #2d2d2d;
	}
	.search{
		float:left;
	}

	.flexslider .slide-caption {
		display:none;
	}

	/* nivo slider */
	.nivo-caption {
		background:none;
	}
	.nivo-caption p {
		display:none;
	}

	.da-slide .da-img .video-container {
		margin-top:50%;
	}

	.da-slide h2{
		color: #fff;
		position:relative;
		font-size:20px;
		width:auto;
	}

	.cta-text {
		margin:0 auto;
		text-align:center;
	}

	.cta.floatright {
		float:none;
		margin:0 auto;
		text-align:center;
	}

	.jcarousel-skin-tango .jcarousel-next-horizontal,.jcarousel-skin-tango .jcarousel-prev-horizontal {
		margin-top:-30px;
	}

	#twitter-wrapper {
		text-align: center;
		width: 100%;
		margin: 0 auto;
	}

	ul.portfolio li article a i.icon-48{
		width:20px;
		height:20px;
		font-size:14px;
	}


}

@media (max-width: 360px) {

}


/* ============== options panel for live preview ======================= */

#t_options {
	position:fixed;
	top: 30px;
	left:-230px;
	width: 230px;
	background: #111;
	color:#fff;
	box-shadow: 0 0 3px rgba(0,0,0,0.12);
	box-shadow: 0 1px 6px rgba(0,0,0,.2);
	-webkit-box-shadow: 0 1px 6px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 6px rgba(0,0,0,.2);
	-o-box-shadow: 0 1px 6px rgba(0,0,0,.2);
    z-index: 5000;
    font-size: 11px;
    font-family: 'Open Sans', arial, sans-serif;
}

#t_options hr {
  margin: 20px 0;
  border: 0;
  border-top: none;
  border-bottom: 1px dotted #999;
}

#t_options h6 {
	color:#fff;
	font-size:14px;
}

#t_options input{
	width:60px;
}

#t_options .col {
	width:50px;
	margin:0 10px 0;
}

.colorpicker {
    z-index: 5001;
}
.options_inner {
	position: relative;
	width: 100%;
	height: 100%;
}
.options_box {
	margin: 0 14px;
	padding: 10px 0 20px;
	overflow:hidden;
}

.options_box .solidline {
	margin-bottom:10px;
}

.options_box h6 {
	text-align:center;
	font-weight:bold;
}

.options_box .full {
	width:100%;
	overflow:hidden;
	padding-bottom:10px;
}
.options_box .halfcol {
	width:90px;
	float:left;
	margin:0 5px;
}

.options_box .fourcol {
	width:30px;
	float:left;
	margin:0 5px;
}

.options_box .fourcol.color a{
	width:30px;
	height:30px;
	display:block;
	margin-bottom:5px;
}

.options_box .halfcol .wideboxed h6 {
	font-size:11px;
	font-weight:600;
}

.options_toggle_holder {
	position:absolute;
	right:-40px;
}

.options_toggle  {
	margin: 6px 0 0 4px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	border:1px solid #111;
	border-left:none;
	display:block;
		background:#111;

}

.options_toggle span .icon {
	margin:10px 0 0 7px;
	display:block;
}

.options_toggle:hover,.options_toggle:focus,.options_toggle:active{
	outline:0;
	text-decoration:none;
}

.options_heading {
	color: #fff;
	margin-top: 5px;
	margin-bottom: 20px;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 2px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #888;
}

/* colors */

.options_box a.t_default {
	background:#ef5523;
}
.options_box a.t_kissme {
	background:#6D0C1F;
}
.options_box a.t_lime {
	background:#C6DF45;
}
.options_box a.t_rose {
	background:#9E001D;
}
.options_box a.t_amethyst {
	background:#9b59b6;
}
.options_box a.t_asphalt {
	background:#34495e;
}
.options_box a.t_pomegranate {
	background:#c0392b;
}
.options_box a.t_pumpkin {
	background:#d35400;
}
.options_box a.t_lightorange {
	background:#f39c12;
}
.options_box a.t_red {
	background:#cb1103;
}

.options_box a.t_green {
	background:#9AC43C;
}

.options_box a.t_sand {
	background:#BFB372;
}

.options_box a.t_purple {
	background:#c81dbe;
}
.options_box a.t_yellow {
	background:#FFD053;
}
.options_box a.t_blue {
	background:#5C9CC7;
}
.options_box a.t_pink {
	background:#FF439E;
}

.bgr .bg {
	width:28px;
	height:28px;
	border:1px solid #e6e6e6;
}

.bgr .bg.bg1 {
	background: url(/bitrix/templates/simai_webstudio_v2/img/bodybg/bg1.png) repeat left top;
}
.bgr .bg.bg2 {
	background: url(/bitrix/templates/simai_webstudio_v2/img/bodybg/bg2.png) repeat left top;
}
.bgr .bg.bg3 {
	background: url(/bitrix/templates/simai_webstudio_v2/img/bodybg/bg3.jpg) repeat left top;
}
.bgr .bg.bg4 {
	background: url(/bitrix/templates/simai_webstudio_v2/img/bodybg/bg4.png) repeat left top;
}
.bgr .bg.bg5 {
	background: url(/bitrix/templates/simai_webstudio_v2/img/bodybg/bg5.png) repeat left top;
}
.bgr .bg.bg6 {
	background: url(/bitrix/templates/simai_webstudio_v2/img/bodybg/bg6.png) repeat left top;
}
.bgr .bg.bg7 {
	background: url(/bitrix/templates/simai_webstudio_v2/img/bodybg/bg7.png) repeat left top;
}
.bgr .bg.bg8 {
	background: url(/bitrix/templates/simai_webstudio_v2/img/bodybg/bg8.jpg) repeat left top;
}
.bgr .bg.bg9 {
	background: url(/bitrix/templates/simai_webstudio_v2/img/bodybg/bg9.png) repeat left top;
}
.bgr .bg.bg10 {
	background: url(/bitrix/templates/simai_webstudio_v2/img/bodybg/bg10.png) repeat left top;
}

#accent_color{
	color: #fff;
	background: #ef5523;
	border: none;
	text-transform: uppercase;
	margin-left: 2px;
	text-align: center;
	outline:0;
}

#bodybg_color {
	color: #fff;
	background: #ccc;
	border: none;
	text-transform: uppercase;
	margin-left: 2px;
	text-align: center;
	outline:0;
}
.social-right {
	float: right;
	padding: 0 25px 0 0;
}
.social-right a {
	color: #5d5d5d;
}
.form-horizontal .control-group.required label {color: #cb1103;}
.form-horizontal .control-group.required.green label {color: #006e2e;}
.form-horizontal .control-group.required input[type='text'],.form-horizontal .control-group.required textarea[type='text'] {color: #cb1103 !important;}
.form-horizontal .control-group.required.green input[type='text'],.form-horizontal .control-group.required.green textarea[type='text'] {color: #006e2e !important;}
.form-horizontal .control-group.required input[type='text'],.form-horizontal .control-group.required textarea[type='text']{border:1px solid #cb1103 !important;}
.form-horizontal .control-group.required.green input[type='text'],.form-horizontal .control-group.required.green textarea[type='text']{border:1px solid #006e2e !important;}
#floatingCirclesG{
position:relative;
width:82px;
height:82px;
-moz-transform:scale(0.6);
-webkit-transform:scale(0.6);
-ms-transform:scale(0.6);
-o-transform:scale(0.6);
transform:scale(0.6);
margin: 0 0 0 40%;
}

.f_circleG{
position:absolute;
background-color:#FFFFFF;
height:15px;
width:15px;
-moz-border-radius:7px;
-moz-animation-name:f_fadeG;
-moz-animation-duration:1.04s;
-moz-animation-iteration-count:infinite;
-moz-animation-direction:linear;
-webkit-border-radius:7px;
-webkit-animation-name:f_fadeG;
-webkit-animation-duration:1.04s;
-webkit-animation-iteration-count:infinite;
-webkit-animation-direction:linear;
-ms-border-radius:7px;
-ms-animation-name:f_fadeG;
-ms-animation-duration:1.04s;
-ms-animation-iteration-count:infinite;
-ms-animation-direction:linear;
-o-border-radius:7px;
-o-animation-name:f_fadeG;
-o-animation-duration:1.04s;
-o-animation-iteration-count:infinite;
-o-animation-direction:linear;
border-radius:7px;
animation-name:f_fadeG;
animation-duration:1.04s;
animation-iteration-count:infinite;
animation-direction:linear;
}

#frotateG_01{
left:0;
top:34px;
-moz-animation-delay:0.39s;
-webkit-animation-delay:0.39s;
-ms-animation-delay:0.39s;
-o-animation-delay:0.39s;
animation-delay:0.39s;
}

#frotateG_02{
left:10px;
top:10px;
-moz-animation-delay:0.52s;
-webkit-animation-delay:0.52s;
-ms-animation-delay:0.52s;
-o-animation-delay:0.52s;
animation-delay:0.52s;
}

#frotateG_03{
left:34px;
top:0;
-moz-animation-delay:0.65s;
-webkit-animation-delay:0.65s;
-ms-animation-delay:0.65s;
-o-animation-delay:0.65s;
animation-delay:0.65s;
}

#frotateG_04{
right:10px;
top:10px;
-moz-animation-delay:0.78s;
-webkit-animation-delay:0.78s;
-ms-animation-delay:0.78s;
-o-animation-delay:0.78s;
animation-delay:0.78s;
}

#frotateG_05{
right:0;
top:34px;
-moz-animation-delay:0.91s;
-webkit-animation-delay:0.91s;
-ms-animation-delay:0.91s;
-o-animation-delay:0.91s;
animation-delay:0.91s;
}

#frotateG_06{
right:10px;
bottom:10px;
-moz-animation-delay:1.04s;
-webkit-animation-delay:1.04s;
-ms-animation-delay:1.04s;
-o-animation-delay:1.04s;
animation-delay:1.04s;
}

#frotateG_07{
left:34px;
bottom:0;
-moz-animation-delay:1.17s;
-webkit-animation-delay:1.17s;
-ms-animation-delay:1.17s;
-o-animation-delay:1.17s;
animation-delay:1.17s;
}

#frotateG_08{
left:10px;
bottom:10px;
-moz-animation-delay:1.3s;
-webkit-animation-delay:1.3s;
-ms-animation-delay:1.3s;
-o-animation-delay:1.3s;
animation-delay:1.3s;
}

@-moz-keyframes f_fadeG{
0%{
background-color:#000000}

100%{
background-color:#FFFFFF}

}

@-webkit-keyframes f_fadeG{
0%{
background-color:#000000}

100%{
background-color:#FFFFFF}

}

@-ms-keyframes f_fadeG{
0%{
background-color:#000000}

100%{
background-color:#FFFFFF}

}

@-o-keyframes f_fadeG{
0%{
background-color:#000000}

100%{
background-color:#FFFFFF}

}

@keyframes f_fadeG{
0%{
background-color:#000000}

100%{
background-color:#FFFFFF}

}
/* End */
/* /bitrix/templates/simai_webstudio_v2/css/main-styles.css?176554797561441 */
/* /bitrix/templates/simai_webstudio_v2/colorpicker/css/colorpicker.css?16159235923346 */
/* /bitrix/templates/simai_webstudio_v2/js/tiptip.css?16159235921830 */
/* /bitrix/templates/simai_webstudio_v2/styles.css?16159235924337 */
/* /bitrix/templates/simai_webstudio_v2/template_styles.css?176552823454369 */
