/* style.css - Минималистичная черно-белая тема */

:root {
    /* Светлая тема (по умолчанию) */
    --black: #000000;
    --white: #ffffff;
    --gray-dark: #1a1a1a;
    --gray: #666666;
    --gray-light: #f5f5f5;
    --gray-border: #e0e0e0;
    
    --primary: #000000;
    --text: #000000;
    --text-light: #666666;
    --bg: #ffffff;
    --bg-dark: #f5f5f5;
    --border: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
}

.dark-theme {
    /* Тёмная тема (инвертированная) */
    --black: #ffffff;
    --white: #000000;
    --gray-dark: #e5e5e5;
    --gray: #999999;
    --gray-light: #1a1a1a;
    --gray-border: #333333;
    
    --primary: #ffffff;
    --text: #ffffff;
    --text-light: #cccccc;
    --bg: #000000;
    --bg-dark: #111111;
    --border: #333333;
    --shadow: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%; /* Предотвращает изменение размера текста на iOS */
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-weight: 400;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    height: 60px;
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 5%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    left: -30%; /* Смещаем логотип на 30% левее от текущего положения */
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

/* Убираем подзаголовок в логотипе на ПК */
.logo-title {
    display: none; /* Скрываем "DevOps Engineer" на ПК */
}

.nav {
    display: flex;
    gap: 2.5rem;
    margin-left: auto;
    margin-right: 5%;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--text-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language Toggle */
.lang-toggle {
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    min-width: 80px;
    height: 40px;
}

.lang-toggle:hover {
    background: var(--bg-dark);
    border-color: var(--primary);
    transform: translateY(-1px);
}

.lang-current {
    color: var(--primary);
    font-weight: 600;
}

.lang-option {
    color: var(--text-light);
}

.lang-separator {
    color: var(--text-light);
    margin: 0 4px;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text);
    padding: 0;
    flex-shrink: 0;
}

.theme-toggle:hover {
    background: var(--bg-dark);
    transform: rotate(30deg) scale(1.05);
}

.theme-icon {
    transition: opacity 0.3s ease;
    width: 18px;
    height: 18px;
}

.light-icon {
    opacity: 1;
}

.dark-theme .light-icon {
    opacity: 0;
}

.dark-icon {
    opacity: 0;
    position: absolute;
}

.dark-theme .dark-icon {
    opacity: 1;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    position: relative;
    z-index: 1002;
    flex-shrink: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary);
    margin: 4px 0;
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--bg);
    z-index: 1001;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    height: 60px;
}

.mobile-menu-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: 0.4rem;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.mobile-menu-close:hover {
    color: var(--text-light);
}

.mobile-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    overflow-y: auto;
}

.mobile-nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--text-light);
}

/* Hero Section - ОБНОВЛЕННЫЙ РАЗДЕЛ */
.hero {
    padding: 3rem 0 2rem;
    background: var(--bg);
    margin-top: 60px;
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    padding: 0 1rem;
}

.hero-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border);
    transition: border-color 0.3s ease;
}

.hero-avatar:hover {
    border-color: var(--primary);
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.4;
}

.hero-description {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gray-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--gray-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

/* Sections */
.section {
    padding: 3rem 0;
    scroll-margin-top: 70px;
}

.section.dark {
    background: var(--bg-dark);
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary);
    text-align: center;
}

/* About */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Experience */
.experience-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.experience-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.experience-card.current {
    border-color: var(--primary);
    box-shadow: 0 4px 12px var(--shadow);
}

.experience-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow);
}

.experience-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.experience-period {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.experience-status {
    background: var(--bg-dark);
    color: var(--text);
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--border);
}

.experience-card.current .experience-status {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.experience-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.experience-company {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.experience-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.experience-responsibilities,
.experience-achievements {
    background: var(--bg-dark);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid var(--border);
}

.experience-responsibilities h4,
.experience-achievements h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.experience-responsibilities ul,
.experience-achievements ul {
    list-style: none;
    padding-left: 0;
}

.experience-responsibilities li,
.experience-achievements li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text);
    line-height: 1.5;
    font-size: 0.9rem;
}

.experience-responsibilities li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-light);
    font-weight: bold;
}

.experience-achievements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Experience Summary */
.experience-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.summary-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.summary-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.summary-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.summary-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.summary-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Skills */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.skill-category {
    margin-bottom: 1.5rem;
}

.skill-category-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.skill-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.skill-name {
    font-weight: 500;
    color: var(--text);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-level {
    height: 5px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.skill-bar {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
    transition: width 1s ease;
}

.skill-level-label {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
    background: var(--bg-dark);
    padding: 0.15rem 0.4rem;
    border-radius: 2px;
    border: 1px solid var(--border);
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.project-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow);
    border-color: var(--primary);
}

.project-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.project-description {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag {
    background: var(--bg-dark);
    color: var(--text);
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--border);
}

/* Contact */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border-radius: 50%;
    color: var(--primary);
    font-weight: 500;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.contact-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--text-light);
}

.contact-actions {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.contact-status {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-light);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--text-light);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Адаптивность */
/* Для очень широких экранов */
@media (min-width: 1400px) {
    .header-content {
        padding: 0 8%;
    }
    
    .logo {
        left: -35%; /* Увеличиваем смещение на очень широких экранах */
    }
    
    .nav {
        gap: 3rem;
        margin-right: 8%;
    }
    
    .nav-link {
        font-size: 1.05rem;
    }
}

/* Для узких экранов (ноутбуки) */
@media (max-width: 1200px) {
    .header-content {
        padding: 0 3%;
    }
    
    .logo {
        left: -25%; /* Уменьшаем смещение на ноутбуках */
    }
    
    .nav {
        gap: 2rem;
        margin-right: 3%;
    }
    
    .nav-link {
        font-size: 0.95rem;
    }
    
    .header-actions {
        gap: 1.25rem;
    }
}

/* Для планшетов */
@media (max-width: 1024px) {
    .header-content {
        padding: 0 2%;
    }
    
    .logo {
        left: -20%; /* Уменьшаем смещение на планшетах */
    }
    
    .nav {
        gap: 1.75rem;
        margin-right: 2%;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .header-actions {
        gap: 1rem;
    }
    
    .lang-toggle {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        min-width: 75px;
        height: 36px;
    }
    
    .theme-toggle {
        width: 36px;
        height: 36px;
    }
}

/* Для мобильных */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header {
        height: 56px;
        padding: 0.5rem 0;
    }
    
    .header-content {
        padding: 0 1.25rem;
    }
    
    .logo {
        left: 0; /* На мобильных убираем смещение */
        gap: 0.75rem;
    }
    
    .logo-image {
        width: 36px;
        height: 36px;
    }
    
    /* Показываем подзаголовок в логотипе на мобильных */
    .logo-title {
        display: block;
        font-size: 0.75rem;
        color: var(--text-light);
        font-weight: 400;
    }
    
    .header-actions {
        gap: 0.5rem;
        margin-left: 0;
    }
    
    .lang-toggle {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
        min-width: 60px;
        height: 32px;
    }
    
    .theme-toggle {
        width: 32px;
        height: 32px;
    }
    
    .hero {
        padding: 2rem 0 1.5rem;
        margin-top: 56px;
        min-height: calc(100vh - 56px);
    }
    
    .hero-avatar {
        width: 100px;
        height: 100px;
        margin: 0 auto 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-actions {
        gap: 0.75rem;
    }
    
    .btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .section {
        padding: 2.5rem 0;
        scroll-margin-top: 65px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .experience-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .experience-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .experience-summary {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* Для очень маленьких мобильных */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-content {
        padding: 0 1rem;
    }
    
    .logo-name {
        font-size: 1.2rem;
    }
    
    .logo-title {
        font-size: 0.75rem;
    }
    
    .logo-image {
        width: 32px;
        height: 32px;
    }
    
    .hero {
        padding: 1.5rem 0 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .experience-card {
        padding: 1rem;
    }
    
    .contact-item {
        padding: 0.6rem;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
    }
    
    .contact-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Для ландшафтной ориентации на мобильных */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 1rem 0;
        min-height: auto;
    }
    
    .hero-avatar {
        width: 80px;
        height: 80px;
        margin: 0 auto 0.5rem;
    }
    
    .hero-title {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-actions {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Исправление для iOS Safari */
@supports (-webkit-touch-callout: none) {
    .hero {
        padding-top: max(1.5rem, env(safe-area-inset-top));
    }
    
    .header {
        padding-top: env(safe-area-inset-top);
        height: calc(56px + env(safe-area-inset-top));
    }
    
    .hero {
        margin-top: calc(56px + env(safe-area-inset-top));
        min-height: calc(100vh - (56px + env(safe-area-inset-top)));
    }
}

/* Гарантия что hero секция всегда видна */
.hero {
    overflow: visible;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
}