* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a2e;
    --accent: #5d6d7e;
    --text: #2c3e50;
    --text-light: #6c757d;
    --border: #e9ecef;
    --bg-white: #ffffff;
    --bg-gray: #f8f9fa;
    --marquee-width: 100%;
    --marquee-height: auto;
    --marquee-elements-displayed: 4;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.top-bar {
    background: var(--primary);
    color: white;
    padding: 12px 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.contact-links {
    display: flex;
    gap: 32px;
}

.contact-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-links a:hover {
    color: white;
}

.company-details {
    color: rgba(255,255,255,0.8);
}

.company-details strong {
    color: white;
}

.divider {
    opacity: 0.5;
    margin: 0 8px;
}

.navbar {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.navbar.scrolled {
    padding: 0;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    font-size: 1.75rem;
    font-weight: 900;
    text-decoration: none;
}

.logo-odi {
    color: var(--accent);
}

.logo-met {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: var(--primary);
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--primary);
    cursor: pointer;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: background 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(0px);
}

.mobile-menu-overlay.active {
    background: rgba(0,0,0,0.6);
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(3px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -380px;
    width: 340px;
    max-width: 85%;
    height: 100%;
    background: white;
    z-index: 1000;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    border-left: 1px solid rgba(93, 109, 126, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    position: sticky;
    top: 0;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-bottom: 1px solid var(--border);
    z-index: 2;
}

.mobile-close-btn {
    background: var(--bg-gray);
    border: none;
    font-size: 1.25rem;
    color: var(--primary);
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.mobile-close-btn:hover {
    background: var(--accent);
    color: white;
    transform: rotate(90deg);
}

.mobile-nav-section {
    padding: 24px 0 16px;
}

.mobile-nav-title {
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0 24px 12px;
}

.mobile-nav-items {
    list-style: none;
}

.mobile-nav-link {
    display: block;
    padding: 16px 24px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-left: 3px solid transparent;
    transition: all 0.3s;
}

.mobile-nav-link:hover {
    color: var(--accent);
    background: var(--bg-gray);
    border-left-color: var(--accent);
    padding-left: 28px;
}

.mobile-contacts-section {
    padding: 24px;
    margin-top: auto;
    background: var(--bg-gray);
    border-top: 1px solid var(--border);
    border-radius: 24px 24px 0 0;
    margin: 16px 16px 0;
}

.mobile-contacts-title {
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0 0 12px;
}

.contact-info-item {
    margin-bottom: 20px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(93, 109, 126, 0.2);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-label i {
    margin-right: 6px;
    color: var(--accent);
}

.contact-value a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.contact-value a:hover {
    color: var(--accent);
}

.contact-value {
    color: var(--text);
    font-weight: 500;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26,26,46,0.75);
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    padding: 120px 0;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 24px;
    font-size: 0.875rem;
    margin-bottom: 32px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #27ae60;
    border-radius: 50%;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: white;
    color: var(--primary);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

.hero-stats {
    display: flex;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.stat {
    text-align: left;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dots .dot.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

.label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.about {
    padding: 120px 0 110px;
    background: white;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.about-btn {
    margin-top: 24px;
    background: var(--accent) !important;
    color: white !important;
    display: inline-block;
    border: 2px solid var(--accent);
}

.about-btn:hover {
    background: var(--primary) !important;
    border-color: var(--primary);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
}

.year-badge {
    position: absolute;
    bottom: 32px;
    right: 32px;
    background: white;
    padding: 24px 32px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    text-align: center;
}

.year {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.year-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.section-swoosh {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 80px;
    z-index: 2;
    pointer-events: none;
}

.section-swoosh svg {
    width: 100%;
    height: 100%;
    display: block;
}

.offer {
    padding: 120px 0 60px;
    background: var(--bg-gray);
    position: relative;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.offer-card {
    background: white;
    padding: 40px 32px;
    border-radius: 8px;
    transition: all 0.3s;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: 24px;
}

.offer-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.offer-card p {
    color: var(--text-light);
    font-size: 0.938rem;
    margin-bottom: 24px;
}

.offer-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.offer-card li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border);
}

.offer-card li:last-child {
    border-bottom: none;
}

.offer-card a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.offer-card a:hover {
    color: var(--primary);
}

.services {
    padding: 120px 0 60px;
    background: white;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    padding: 40px 32px;
    background: var(--bg-gray);
    border-radius: 8px;
    position: relative;
}

.service-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.938rem;
}

.cta-parallax {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: calc(100% + 200px);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.parallax-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26,26,46,0.85);
}

.cta-parallax .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    display: inline-block;
    padding: 16px 32px;
    background: white;
    color: var(--primary);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.2);
    border-color: white;
}

.torn-paper {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 3;
}

.torn-paper svg {
    width: 100%;
    height: 100%;
    display: block;
}

.why {
    padding: 120px 0 60px;
    background: white;
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-list {
    margin: 40px 0;
}

.why-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.why-item i {
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-item p {
    color: var(--text-light);
    font-size: 0.938rem;
    margin: 0;
}

.why-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-section {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
}

.gallery-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.gallery-marquee-container::before,
.gallery-marquee-container::after {
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    content: "";
    z-index: 2;
    pointer-events: none;
}

.gallery-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-white) 0%, transparent 100%);
}

.gallery-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-white) 0%, transparent 100%);
}

.gallery-marquee {
    display: flex;
    align-items: center;
    animation: marquee-scroll 40s linear infinite;
    width: fit-content;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-marquee:hover {
    animation-play-state: paused;
}

.gallery-item {
    flex-shrink: 0;
    width: 280px;
    margin-right: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    filter: grayscale(0%);
}

.contact {
    padding: 120px 0;
    background: var(--bg-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info .lead {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 48px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-form-wrapper {
    background: white;
    padding: 48px;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.938rem;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.938rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 16px 32px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--primary);
}

.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.938rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.938rem;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact a,
.footer-contact p {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.938rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary);
}

@media (max-width: 1200px) {
    .gallery-item {
        width: 240px;
    }
    
    .gallery-item img {
        height: 180px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .nav-btn {
        display: none;
    }

    .hamburger-btn {
        display: block;
    }

    .about-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image,
    .why-image {
        order: -1;
    }

    .about-image img,
    .why-image img {
        height: 400px;
    }

    .offer-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .parallax-bg {
        background-attachment: scroll;
    }
    
    .gallery-item {
        width: 220px;
    }
    
    .gallery-item img {
        height: 160px;
    }
    
    .gallery-marquee-container::before,
    .gallery-marquee-container::after {
        width: 80px;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        display: none;
    }

    .hero {
        min-height: 72vh;
        align-items: flex-start;
    }

    .hero-content {
        padding: 72px 0 48px;
    }

    .slider-dots {
        bottom: 22px;
    }

    .section-swoosh {
        height: 64px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .offer-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
    }

    .btn-white,
    .btn-outline-white {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .gallery-item {
        width: 200px;
    }
    
    .gallery-item img {
        height: 150px;
    }
    
    .gallery-marquee-container::before,
    .gallery-marquee-container::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: 68vh;
    }

    .hero-content {
        padding: 56px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .year-badge {
        bottom: 16px;
        right: 16px;
        padding: 16px 24px;
    }

    .section-swoosh {
        height: 56px;
    }
    
    .gallery-item {
        width: 180px;
    }
    
    .gallery-item img {
        height: 130px;
    }
    
    .gallery-marquee-container::before,
    .gallery-marquee-container::after {
        width: 30px;
    }
}

@media (min-width: 1200px) {
    .hero .container {
        margin-left: calc((100% - 1200px) / 2 - 60px) !important;
        margin-right: auto !important;
    }
}

@media (max-width: 1199px) {
    .hero .container {
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .hero .hero-content {
        transform: none !important;
        margin-left: 0 !important;
        left: auto !important;
        right: auto !important;
    }
}