/* ===== ОБЩИЕ СТИЛИ ===== */
:root {
--primary: #0a1f3c;
--primary-light: #1a3b6c;
--accent: #00d4ff;
--accent-hover: #00b8e0;
--white: #ffffff;
--gray-light: #f8fafc;
--gray: #64748b;
--gray-dark: #334155;
--dark-bg: #ffffff;
--dark-card: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
--shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
--shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
--card-radius: 12px;
}
@viewport {
width: device-width;
}
@-ms-viewport {
width: device-width;
}
@-o-viewport {
width: device-width;
}
/* ===== ТИПОГРАФИЯ ===== */
h3.cate {
font-size: 1.5em;
text-align: center;
}
.blog_page h2 {
background: #D3D3D3;
text-align: center;
padding: 10px 0;
margin: 0 0 10px 0;
border-radius: 10px;
font-size: 1.8em;
}
.blog_page h3 {
text-align: center;
}
.banner_abrisburo_txt h4 {
font-size: 16px;
display: inline-block;
transform: scale(1.2, 1);
-webkit-transform: scale(1.2, 1);
-moz-transform: scale(1.2, 1);
-ms-transform: scale(1.2, 1);
-o-transform: scale(1.2, 1);
}
.mainmenu {
text-transform: uppercase;
}
/* ===== НАВИГАЦИЯ И МЕНЮ ===== */
/* Основное меню */
.menu-container {
max-width: 1440px;
margin: 0 auto;
}
.main-menu {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(0, auto));
gap: 2px;
background: linear-gradient(145deg, #2c3e50, #34495e);
padding: 5px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
position: relative;
}
.main-menu::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
}
.menu-item {
position: relative;
}
.menu-link {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px;
color: #ecf0f1;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
background: linear-gradient(135deg, #485563 0%, #29323c 100%);
border-radius: 10px;
margin: 2px;
border: 2px solid transparent;
}
.menu-link:hover {
background: linear-gradient(135deg, #4a6572 0%, #34495e 100%);
transform: translateY(-1px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
border-color: var(--accent);
box-shadow: var(--shadow-lg);
}
.menu-link i {
margin-left: 10px;
transition: transform 0.3s ease;
}
.menu-item:hover .menu-link i {
transform: rotate(180deg);
}
.menu > li > a,
.menu ul li a {
text-indent: 0.5em;
}
/* Выпадающие меню */
#nav > li ul ul {
background: #e6e6e1;
left: 120px;
position: absolute;
}
nav ul ul {
display: none;
top: 100%;
}
nav ul ul li {
display: list-item;
position: relative;
}
nav ul ul ul {
top: 0;
left: 100%;
}
/* Подменю первого уровня */
.submenu {
position: absolute;
top: 100%;
left: 0;
width: 250px;
background: linear-gradient(145deg, #34495e, #2c3e50);
border-radius: 10px;
padding: 5px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: all 0.3s ease;
z-index: 1000;
}
.menu-item:hover .submenu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.submenu-link {
display: block;
padding: 7px 10px;
color: #bdc3c7;
text-decoration: none;
transition: all 0.3s ease;
border-radius: 8px;
margin: 2px;
position: relative;
overflow: hidden;
}
.submenu-link::before {
content: '';
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 3px;
background: linear-gradient(180deg, #4ecdc4, #45b7d1);
transform: scaleY(0);
transition: transform 0.3s ease;
}
.submenu-link:hover {
color: #ecf0f1;
background: linear-gradient(135deg, #4a6572 0%, #34495e 100%);
padding-left: 30px;
}
.submenu-link:hover::before {
transform: scaleY(1);
}
/* Подменю второго уровня */
.subsubmenu {
position: absolute;
left: 100%;
top: 0;
width: 250px;
background: linear-gradient(145deg, #3d566e, #2c3e50);
border-radius: 10px;
padding: 5px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
opacity: 0;
visibility: hidden;
transform: translateX(10px);
transition: all 0.3s ease;
}
.submenu-item {
position: relative;
}
.submenu-item:hover .subsubmenu {
opacity: 1;
visibility: visible;
transform: translateX(0);
}
.subsubmenu-link {
display: block;
padding: 7px 10px;
color: #95a5a6;
text-decoration: none;
transition: all 0.3s ease;
border-radius: 6px;
margin: 2px;
font-size: 0.9em;
}
.subsubmenu-link:hover {
color: #ecf0f1;
background: linear-gradient(135deg, #5d6d7e 0%, #34495e 100%);
padding-left: 25px;
}
/* Вафельное меню для мобильных устройств */
.mobile-menu-toggle {
display: none;
position: fixed;
top: 20px;
right: 20px;
width: 40px;
height: 40px;
background: linear-gradient(135deg, rgba(74, 85, 96, 0.8), rgba(45, 55, 72, 0.8));
border-radius: 6px;
border: none;
cursor: pointer;
z-index: 1000;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 5px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.mobile-menu-toggle span {
display: block;
width: 24px;
height: 2px;
background-color: #e2e8f0;
transition: all 0.3s ease;
}
.mobile-menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -6px);
}
.mobile-menu-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 998;
}
.mobile-menu {
display: none;
position: fixed;
top: 0;
left: 0;
width: 280px;
height: 100%;
background: linear-gradient(135deg, rgba(74, 85, 96, 0.95), rgba(45, 55, 72, 0.95));
backdrop-filter: blur(10px);
z-index: 999;
overflow-y: auto;
transform: translateX(-100%);
transition: transform 0.3s ease;
box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
}
.mobile-menu.active {
transform: translateX(0);
}
.mobile-menu-header {
padding: 20px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
display: flex;
justify-content: space-between;
align-items: center;
font-size: 2rem;
}
.mobile-menu-title {
font-size: 2rem;
font-weight: 600;
color: #e2e8f0;
}
.mobile-menu-close {
background: none;
border: none;
color: #e2e8f0;
font-size: 1.5rem;
cursor: pointer;
}
.mobile-menu-list {
list-style: none;
padding: 20px 0;
}
.mobile-menu-item {
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-menu-link {
display: flex;
align-items: center;
gap: 12px;
padding: 15px 20px;
text-decoration: none;
color: #e2e8f0;
font-weight: 500;
transition: all 0.3s ease;
font-size: 1.5rem;
}
.mobile-menu-link:hover {
background: linear-gradient(135deg, rgba(90, 101, 112, 0.5), rgba(60, 70, 85, 0.5));
color: #ffffff;
}
.mobile-menu-icon {
font-size: 1.2rem;
width: 24px;
text-align: center;
color: #a0aec0;
}
.mobile-submenu-toggle {
margin-left: auto;
background: none;
border: none;
color: #a0aec0;
cursor: pointer;
transition: transform 0.3s ease;
}
.mobile-submenu-toggle.active {
transform: rotate(180deg);
color: #63b3ed;
}
.mobile-submenu {
display: none;
background: rgba(0, 0, 0, 0.2);
list-style: none;
}
.mobile-submenu.active {
display: block;
}
.mobile-submenu-item {
border-bottom: none;
}
.mobile-submenu-link {
padding-left: 20px;
font-size: 1.5rem;
}
.mobile-submenu-link .mobile-menu-icon {
font-size: 1rem;
}
/* Адаптивность */
@media (max-width: 992px) {
/* Скрываем основное меню на мобильных устройствах */
.menu-container {
display: none;
}
/* Показываем вафельное меню на мобильных устройствах */
.mobile-menu-toggle {
display: flex;
}
.mobile-menu-overlay.active,
.mobile-menu.active {
display: block;
}
}
/* ===== КАРТОЧКИ ТОВАРОВ ===== */
.products-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 25px;
margin-bottom: 10px;
}
.product-card {
background-color: white;
border-radius: 10px;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid transparent;
background: linear-gradient(white, white),
linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
background-clip: padding-box, border-box;
background-origin: padding-box, border-box;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
text-align: center;
}
.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.product-image {
border-radius: 5px;
width: 100%;
height: 100%;
object-fit: cover;
padding: 15px 20px 0 20px;
}
.product-info {
padding: 15px 25px 5px 25px;
}
.product-category {
font-size: 0.85rem;
color: #7f8c8d;
text-transform: uppercase;
margin-bottom: 5px;
}
.product-title {
text-align: center;
font-size: 1.2rem;
font-weight: 700;
margin-bottom: 1px;
color: #2c3e50;
}
.product-description {
color: #7f8c8d;
font-size: 0.95rem;
margin-bottom: 15px;
}
.product-price {
text-align: center;
font-size: 1.3rem;
font-weight: 700;
color: #e74c3c;
margin-bottom: 15px;
}
.product-ploshad {
padding: 5px 5px 0 5px;
}
.add-to-cart {
font-size: 1.8rem;
width: 100%;
padding: 5px;
background-color: #3498db;
color: white;
border: none;
border-radius: 5px;
font-weight: 700;
cursor: pointer;
transition: background-color 0.3s ease;
text-align: center;
display: flex;
flex-direction: column;
}
.add-to-cart:hover {
background-color: #2980b9;
}
.sale-badge {
position: absolute;
top: 10px;
right: 10px;
background-color: #e74c3c;
color: white;
padding: 5px 10px;
border-radius: 3px;
font-size: 0.8rem;
font-weight: 600;
}
.card-image-container {
position: relative;
}
.card-image-container-poisk {
position: relative;
text-align: center;
color: #319774;
font: normal normal 14px Verdana;
text-decoration: none;
word-wrap: normal;
display: flex;
align-items: center;
justify-content: center;
padding: 10px;
margin: 5px;
}
.card-image-container-poisk a {
text-align: center;
color: #319774;
font: normal 600 14px Verdana;
text-decoration: none;
word-wrap: normal;
}
.card-image-container-poisk a:hover {
font: normal 700 16px Verdana;
}
.card-image-container-poisk img {
display: block;
}
/* ===== ТАБЛИЦЫ ===== */
.table-grid-2 {
display: grid;
grid-template-columns: 1fr 1.1fr;
gap: 1px;
border: 1px solid #e0e0e0;
border-radius: 8px;
overflow: hidden;
background-color: #ddd;
border: 1px solid #ccc;
}
.table-row-2 {
display: contents;
}
.table-header-2 {
background-color: #5d6d7e;
color: white;
font-weight: bold;
padding: 15px;
text-align: center;
position: sticky;
top: 0;
z-index: 10;
}
.table-cell-2 {
padding: 15px;
border-bottom: 1px solid #e0e0e0;
background-color: inherit;
text-align: left;
}
/* Зебра для строк */
.table-row-2:nth-child(even) .table-cell-2 {
background-color: #f8f9fa;
}
.table-row-2:nth-child(odd) .table-cell-2 {
background-color: white;
}
/* Hover эффект для всей строки */
.table-row-2:hover .table-cell-2 {
background-color: #e3f2fd !important;
cursor: pointer;
transition: background-color 0.2s ease;
}
/* Убираем нижнюю границу у последней строки */
.table-row-2:last-child .table-cell-2 {
border-bottom: none;
}
/* ===== КАРТОЧКИ С ПРОКРУТКОЙ ===== */
.scroll-section {
background: var(--white);
border-radius: var(--card-radius);
padding: 1rem;
margin-bottom: 1rem;
box-shadow: var(--shadow);
position: relative;
animation: fadeInUp 0.6s ease-out;
}
.scroll-section.dark {
background: var(--dark-bg);
color: var(--white);
}
.scroll-section.dark .section-header h2 {
color: var(--white);
min-height: 50px;
line-height: 50px;
margin: 0;
}
.section-header {
display: grid;
grid-template-columns: 1fr auto;
align-items: center;
margin-bottom: 0rem;
gap: 1rem;
padding: 1rem;
text-align: center;
}
.section-header h2 {
font-size: 1.75rem;
font-weight: 700;
color: var(--primary);
line-height: 1.3;
font-weight: bold;
color: #f2395a;
text-shadow:
1px 1px 0px #c12040,
2px 2px 0px #c12040,
3px 3px 0px #c12040,
4px 4px 0px #c12040,
5px 5px 0px #c12040,
6px 6px 10px rgba(0, 0, 0, 0.5);
transform: perspective(500px) rotateX(10deg);
}
/* Контейнер для скролла */
.scroll-wrapper {
position: relative;
overflow: hidden;
border-radius: var(--card-radius);
}
.scroll-track {
overflow-x: auto;
scroll-behavior: smooth;
scrollbar-width: none;
-ms-overflow-style: none;
padding: 1rem;
cursor: grab;
scrollbar-width: thin;
scrollbar-color: var(--accent) transparent;
}
.scroll-track:active {
cursor: grabbing;
}
.scroll-track::-webkit-scrollbar {
height: 6px;
display: block;
}
.scroll-track::-webkit-scrollbar-track {
background: transparent;
border-radius: 3px;
}
.scroll-track::-webkit-scrollbar-thumb {
background: var(--accent);
border-radius: 3px;
}
.scroll-track::-webkit-scrollbar-thumb:hover {
background: var(--accent-hover);
}
.scroll-track::-webkit-scrollbar {
display: none;
}
/* Сетки для разных типов контента */
.tech-grid,
.service-grid,
.project-grid {
display: grid;
grid-auto-flow: column;
grid-auto-columns: minmax(200px, 1fr);
gap: 1rem;
padding: 1rem 0;
}
/* Карточка технологии */
.tech-card {
background: var(--white);
border: 1px solid #e2e8f0;
border-radius: var(--card-radius);
padding: 1rem 1.5rem;
text-align: center;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
cursor: pointer;
position: relative;
overflow: hidden;
}
.tech-card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
transition: left 0.6s ease;
}
.tech-card:hover::before {
left: 100%;
}
.tech-card:hover {
transform: translateY(-8px);
border-color: var(--accent);
box-shadow: var(--shadow-hover);
}
.tech-icon {
font-size: 3rem;
margin-bottom: 1rem;
display: block;
}
.tech-name {
font-size: 1.25rem;
font-weight: 600;
color: var(--primary);
display: block;
margin-bottom: 0.5rem;
}
.tech-badge {
background: var(--accent);
color: var(--primary);
padding: 0.25rem 0.75rem;
border-radius: 20px;
font-size: 0.75rem;
font-weight: 600;
display: inline-block;
}
/* Карточка услуги */
.service-card {
background: var(--gray-light);
border-radius: var(--card-radius);
padding: 1rem;
transition: all 0.3s ease;
cursor: pointer;
border: 2px solid transparent;
position: relative;
text-align: center;
}
.dark .service-card {
background: var(--dark-card);
color: var(--white);
}
.service-card:hover {
transform: translateY(-5px);
border-color: var(--accent);
box-shadow: var(--shadow-lg);
}
.service-card h3 {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 0.5rem;
color: var(--primary);
}
.dark .service-card h3 {
color: blue;
}
.service-card p {
color: var(--gray);
margin-bottom: 1.5rem;
line-height: 1.5;
}
.dark .service-card p {
color: #cbd5e1;
}
.price {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 0;
}
/* Карточка проекта */
.project-card {
background: var(--white);
border-radius: var(--card-radius);
overflow: hidden;
transition: all 0.3s ease;
cursor: pointer;
box-shadow: var(--shadow);
}
.project-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}
.project-image {
height: 200px;
position: relative;
overflow: hidden;
}
.project-image::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), transparent);
opacity: 0;
transition: opacity 0.3s ease;
}
.project-card:hover .project-image::after {
opacity: 1;
}
.project-content {
padding: 1rem;
}
.project-content h3 {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 0.5rem;
color: var(--primary);
}
.project-content p {
color: var(--gray);
margin-bottom: 1rem;
line-height: 1.5;
}
.tags {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
}
.tag {
background: var(--gray-light);
color: var(--gray-dark);
padding: 0.25rem 0.75rem;
border-radius: 12px;
font-size: 0.75rem;
font-weight: 500;
}
/* Кнопки навигации */
.scroll-controls {
display: flex;
gap: 0.75rem;
}
.scroll-btn {
width: 48px;
height: 48px;
border: 2px solid var(--accent);
background: var(--white);
color: var(--accent);
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.scroll-btn::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--accent);
transform: scale(0);
border-radius: 50%;
transition: transform 0.3s ease;
}
.scroll-btn:hover::before {
transform: scale(1);
}
.scroll-btn:hover {
transform: scale(1.1);
}
.scroll-btn svg {
position: relative;
z-index: 1;
transition: color 0.3s ease;
}
.scroll-btn:hover svg {
color: var(--white);
}
.dark .scroll-btn {
background: var(--dark-card);
border-color: var(--accent);
color: var(--accent);
}
/* Индикаторы прокрутки */
.scroll-indicator {
position: absolute;
bottom: 1rem;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 0.5rem;
z-index: 10;
}
.indicator-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--gray);
opacity: 0.3;
transition: all 0.3s ease;
cursor: pointer;
}
.indicator-dot.active {
opacity: 1;
background: var(--accent);
transform: scale(1.2);
}
/* ===== СЛАЙДЕР ===== */
.slider-container {
position: relative;
width: 100vw;
overflow: hidden;
height: 75vh;
}
.slider {
width: 100%;
height: 100%;
position: relative;
}
.slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 40px;
text-align: center;
background-size: cover;
background-position: center;
transition: opacity 1.2s ease, transform 1.5s ease;
transform: scale(1.1);
}
.slide.active {
opacity: 1;
transform: scale(1);
z-index: 1;
}
.slide-content {
max-width: 600px;
padding: 40px;
background: rgba(0, 0, 0, 0);
border-radius: 10px;
backdrop-filter: blur(5px);
transform: translateY(50px);
transition: transform 1s ease 0.5s;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.slide.active .slide-content {
transform: translateY(0);
}
.slide h2 {
font-size: 3.5rem;
margin-bottom: 20px;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
color: white;
}
.slide p {
font-size: 1.4rem;
line-height: 1.6;
margin-bottom: 25px;
text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
color: white;
}
.slide-btn {
display: inline-block;
padding: 12px 30px;
background: linear-gradient(45deg, #ff6b6b, #ff8e53);
color: white;
text-decoration: none;
border-radius: 30px;
font-weight: bold;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
font-size: 1.5rem;
}
.slide-btn:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.slider-controls {
position: absolute;
bottom: 40px;
left: 0;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
z-index: 10;
}
.btn {
background: rgba(255, 255, 255, 0.2);
border: none;
color: white;
padding: 15px 25px;
border-radius: 50px;
cursor: pointer;
font-size: 1rem;
transition: all 0.3s ease;
backdrop-filter: blur(5px);
display: flex;
align-items: center;
gap: 8px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 1);
font-size: 1.5rem;
}
.btn:hover {
background: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
}
.slider-dots {
display: flex;
gap: 12px;
}
.dot {
width: 14px;
height: 14px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.4);
cursor: pointer;
transition: all 0.3s ease;
}
.dot.active {
background: white;
transform: scale(1.3);
}
.timer-bar {
position: absolute;
bottom: 0;
left: 0;
height: 5px;
width: 100%;
background: rgba(255, 255, 255, 0.2);
z-index: 10;
}
.timer-progress {
height: 100%;
width: 0%;
background: white;
transition: width 0.1s linear;
}
/* ===== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ===== */
.blog-image {
border-radius: 25px;
border: 4px solid #3498db;
padding: 5px;
}
.button-link {
display: inline-block;
padding: 12px 25px;
background: #9b59b6;
color: white !important;
border-radius: 25px;
text-align: center;
font-weight: 600;
}
.button-link:hover {
background: #8e44ad;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(155, 89, 182, 0.4);
}
.logo img {
width: 250px;
height: 125px;
border: none;
}
.container1 {
padding: 5px 100px;
}
/* ===== АДАПТИВНОСТЬ ===== */
/* Адаптивность для меню */
@media (max-width: 1160px) {
.main-menu {
grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
}
@media (max-width: 991px) {
.main-menu {
display: none;
}
.scroll-section {
display: none;
}
}
@media (max-width: 768px) {
.sub-cate {
width: 100%;
}
.main-menu {
grid-template-columns: 1fr;
}
.submenu {
position: static;
width: 100%;
opacity: 1;
visibility: visible;
transform: none;
margin-top: 5px;
display: none;
}
.menu-item:hover .submenu {
display: block;
}
.subsubmenu {
position: static;
width: 100%;
opacity: 1;
visibility: visible;
transform: none;
margin-top: 5px;
display: none;
}
.submenu-item:hover .subsubmenu {
display: block;
}
.container {
padding: 1rem;
}
.scroll-section {
padding: 1.5rem;
margin-bottom: 2rem;
}
.section-header {
grid-template-columns: 1fr;
gap: 1rem;
text-align: center;
}
.section-header h2 {
font-size: 1.5rem;
}
.tech-grid,
.service-grid,
.project-grid {
grid-auto-columns: minmax(250px, 1fr);
gap: 1rem;
}
.scroll-controls {
justify-content: center;
}
.slide h2 {
font-size: 2.5rem;
}
.slide p {
font-size: 1.2rem;
}
.slider-controls {
bottom: 20px;
}
.slide-content {
padding: 30px;
background: rgba(0, 0, 0, 0);
max-width: 450px;
}
.btn {
padding: 12px 20px;
font-size: 0.9rem;
}
.slide-btn {
font-size: 1rem;
}
.products-grid {
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
}
@media (max-width: 640px) {
.sub-cate {
width: 100%;
}
.macmenu {
height: 175px;
}
.button {
margin: 0 auto;
}
.button a,
.button a img {
display: block;
float: left;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease;
height: 175px;
width: 233px;
}
.button a {
margin: 20px 10px 10px;
text-align: center;
color: #319774;
font: normal normal 10px Verdana;
text-decoration: none;
word-wrap: normal;
}
.macmenu a:hover img {
margin-left: -5%;
height: 182px;
width: 243px;
}
.button a:hover {
font: normal 700 12px Verdana;
}
.zena-skidka h3 {
font-family: 'Times New Roman', Times, serif;
font-size: 1.7em;
color: #FF0;
}
}
@media (max-width: 480px) {
.sub-cate {
width: 100%;
}
.tech-grid,
.service-grid,
.project-grid {
grid-auto-columns: minmax(200px, 1fr);
}
.tech-card,
.service-card {
padding: 1.5rem 1rem;
}
.slide h2 {
font-size: 2rem;
}
.slide p {
font-size: 1rem;
}
.slide-content {
padding: 25px;
background: rgba(0, 0, 0, 0);
max-width: 350px;
}
.btn {
padding: 12px 20px;
font-size: 0.9rem;
}
.products-grid {
grid-template-columns: 1fr;
}
.filters {
flex-direction: column;
align-items: center;
}
.filter-btn {
width: 80%;
}
}
@media (max-width: 320px) {
.sub-cate {
width: 100%;
}
}
/* Анимации */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* КОНЕЦ  style.css */
/* НАЧАЛ  responsive.css */
.slicknav_menu {
display: none;
}
/* Ошибка: дублирование правила .slicknav_menu в медиа-запросе */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
.slider_area .main_slider ul.rslides img {
min-height: 540px;
}
.col-lg-2,
.col-lg-3,
.col-md-2,
.col-md-3 {
min-height: 1px;
position: relative;
}
.single_team img {
width: 100%;
}
.mainmenu_area {
display: block;
font-stretch: condensed; /* Ошибка: свойство font-stretch требует корректного значения */
}
.logo a {
font-size: 0.8em;
}
.logo img {
width: 220px;
height: 110px;
border: 0; /* Ошибка: border: 0px solid #00f - избыточно, достаточно border: 0 */
}
.banner_abrisburo h3 {
font-size: 1.5em;
}
.banner_abrisburo_txt h4 {
font-size: 1.1em;
}
.know_more_yandex {
margin-top: 1px;
display: inline-block;
padding: 5px;
text-decoration: none;
cursor: pointer;
font: 0.74em Arial, sans-serif; /* Ошибка: сокращенное свойство font требует больше параметров */
background: #11c3f1;
border-radius: 5px;
}
.know_more_yandex:hover {
background: #35E3F8;
}
.col-md-3 {
padding-right: 20px;
padding-left: 20px;
}
.col-lg-2,
.col-lg-3 {
padding-right: 25px;
padding-left: 25px;
}
.col-md-2 {
padding-right: 1px;
padding-left: 1px;
}
.ih-item.circle,
.ih-item.circle .img {
position: relative;
width: 140px;
height: 140px;
border-radius: 50%;
}
.ih-item.circle.effect13 .info h3 {
visibility: hidden;
color: #fff;
text-transform: uppercase;
position: relative;
letter-spacing: 2px;
text-align: center;
font-size: 12px;
margin: 0;
padding: 40px 0 0;
height: 75px;
text-shadow: 0 0 1px #fff, 0 1px 2px rgba(0, 0, 0, 0.3);
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
transition: all 0.35s ease-in-out;
}
.ih-item.circle.effect13 .info p {
visibility: hidden;
color: #bbb;
padding: 5px;
font-style: italic;
margin: 0 24px;
font-size: 10px;
border-top: 1px solid rgba(255, 255, 255, 0.5);
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
transition: all 0.35s ease-in-out;
}
/* Удалено дублирование: .slicknav_menu{display:none} */
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.slider_area .main_slider ul.rslides img {
min-height: 540px;
}
.single_team img {
width: 100%;
margin-top: 10px;
}
.row_knopka {
display: none; /* Ошибка: лишняя точка с запятой */
}
.mainmenu_area,
.slideout {
display: none;
}
.slicknav_menu {
display: block;
}
.top_quate_text {
top: 100px;
}
.home_two_single_promotions {
margin-bottom: 50px;
}
.home_two_single_promotions > p {
margin-bottom: 30px;
}
.signup_newsletter input[type="submit"] { /* Ошибка: лучше использовать кавычки для атрибутов */
width: 30%;
}
.signup_newsletter > form input[type="email"] { /* Ошибка: лучше использовать кавычки для атрибутов */
width: 70%;
}
.barner_text {
padding-top: 255px;
width: 100%;
}
.logo img {
width: 220px;
height: 110px;
border: 0; /* Исправлено: border: 0px solid #00f → border: 0 */
}
}
@media only screen and (max-width: 767px) {
.blog_img img,
.single_project > img,
.single_service > img {
width: 100%;
}
.slider_area .rslides img {
height: auto;
}
.single_team img {
width: 100%;
margin-top: 10px;
}
.row_knopka {
display: none; /* Исправлено: удалена лишняя точка с запятой */
}
.mainmenu_area,
.slideout {
display: none;
}
.footer_menu ul li a {
padding: 5px;
}
.slider_area_signup_form {
left: 0;
position: absolute;
top: 40px;
z-index: 99999;
}
.slicknav_menu {
display: block;
}
.error_text {
font-size: 85px;
line-height: 77px;
}
.not_found_page_page_content > h2 {
font-size: 20px;
}
.single_price_list {
margin-bottom: 80px;
}
.slider_area_signup_form,
.top_quate_area {
display: none;
}
.home_two_single_promotions {
margin-bottom: 50px;
}
.home_two_single_promotions > p {
margin-bottom: 30px;
}
.author_discription {
border: 1px solid #ececec;
margin: 50px 0;
padding: 15px;
text-align: center;
}
.author_discription > img {
display: block;
margin: 10px auto;
}
.signup_newsletter input[type="submit"] {
width: 30%;
}
.signup_newsletter > form input[type="email"] {
width: 70%;
}
.barner_text {
padding-top: 235px;
width: 100%;
}
.about_page_barner_area {
display: none;
}
.logo img {
width: 220px;
height: 110px;
border: 0;
}
}
/* Ошибка: медиа-запрос (min-width:480px) and (max-width:767px) дублирует многие правила из (max-width:767px) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
.blog_img img,
.single_project > img,
.single_service > img {
width: 100%;
}
.slider_area .rslides img {
height: auto;
}
.single_team img {
width: 100%;
margin-top: 10px;
}
.row_knopka {
display: none;
}
.mainmenu_area,
.slideout {
display: none;
}
.footer_menu ul li a {
padding: 5px;
}
.slicknav_menu {
display: block;
}
.error_text {
font-size: 85px;
line-height: 77px;
}
.not_found_page_page_content > h2 {
font-size: 20px;
}
.single_price_list {
margin-bottom: 80px;
}
.slider_area_signup_form,
.top_quate_area {
display: none;
}
.home_two_single_promotions {
margin-bottom: 50px;
}
.home_two_single_promotions > p {
margin-bottom: 30px;
}
.author_discription {
padding: 15px;
text-align: center;
}
.author_discription > img {
display: block;
margin: 10px auto;
}
.signup_newsletter input[type="submit"] {
width: 30%;
}
.signup_newsletter > form input[type="email"] {
width: 70%;
}
.barner_text {
padding-top: 235px;
width: 100%;
}
.about_page_barner_area {
display: none;
}
.logo img {
width: 220px;
height: 110px;
border: 0;
}
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
.barner_text {
padding-top: 235px;
width: 100%;
}
.barner_text > h2 {
font-size: 20px;
}
.about_page_barner_area {
display: none;
}
}
@media only screen and (max-width: 320px) {
.home_two_single_promotions {
height: 430px;
}
.single_work {
height: 200px;
}
.barner_text {
padding-top: 235px;
width: 100%;
}
.barner_text > h2 {
font-size: 20px;
}
.about_page_barner_area {
display: none;
}
}
       