body,
html {
    background-color: #1e2128;
    /* Explicitly set to user's preferred color */
    margin: 0;
    padding: 0;
}

.autoworks-home {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: #1e2128;
    /* Explicit match to ensure seamless look */
    width: 100%;
    max-width: 1200px;
    /* Global Max Width Reduced per user request */
    margin: 0 auto;
    /* Center page */
}

.autoworks-home .container {
    position: relative;
    align-self: stretch;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    height: 780px;
    border: 0px none;
    background-image: url(../img/hero-background.png);
    background-size: cover;
    background-position: center;
}

.autoworks-home .rectangle {
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #00000099;
    position: absolute;
    left: 0;
    border: 0px none;
}

.autoworks-home .div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    border: 0px none;
}

.autoworks-home .auto-works {
    position: absolute;
    top: 33px;
    left: 96px;
    font-family: "Open Sans", Helvetica;
    font-weight: 700;
    color: transparent;
    font-size: 30px;
    letter-spacing: 0;
    line-height: 36px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper {
    color: #ffffff;
}

.autoworks-home .span {
    color: #e71d36;
}

/* LOGO & TEXT - Standard Absolute Positioning (Scrolls with page) */
.autoworks-home .auto-works,
.autoworks-home .img {
    position: absolute !important;
    top: 33px;
    z-index: 10;
    display: block !important;
}

.autoworks-home .img {
    top: 25px;
    /* Adjust for P-icon alignment */
}

/* Ensure visibility */
.autoworks-home .auto-works .text-wrapper,
.autoworks-home .auto-works .span {
    visibility: visible !important;
    opacity: 1 !important;
}

/* STICKY HEADER WRAPPER */
/* ========================================
   REFACTORED HEADER SYSTEM
   ======================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(30, 33, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-content {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 48px;
    position: relative;
}

/* LOGO */
.header-logo {
    display: block;
    width: 160px;
    height: auto;
    z-index: 10002;
    /* Always above everything */
}

.header-logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* DESKTOP NAVIGATION */
.desktop-nav {
    display: flex;
    gap: 30px;
    height: 100%;
    align-items: center;
}

.nav-link {
    color: #a8adb7;
    font-family: "Oswald", "Open Sans", sans-serif;
    /* Changed to Oswald per user feedback */
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
    letter-spacing: 0.5px;
}

/* Hover & Active States */
.nav-link:hover,
.nav-link.active {
    color: #e71d36;
    /* Text shadow trick for bold without layout shift */
    text-shadow: 0 0 0.65px #e71d36, 0 0 0.65px #e71d36;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -28px;
    /* Initial position for underline */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e71d36;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* HAMBURGER BUTTON (Hidden on Desktop) */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 20002;
    padding: 10px;
}

.hamburger-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #e71d36;
    transition: 0.3s;
}

/* MOBILE MENU OVERLAY (Default Hidden) */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(30, 33, 40, 0.98);
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 20000;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-nav a {
    color: #fff;
    font-family: "Oswald", sans-serif;
    /* Changed per user request */
    font-size: 28px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    /* Match section titles style usually */
    letter-spacing: 1px;
}

/* MOBILE MENU OPEN STATE */
.main-header.menu-open .mobile-menu-overlay {
    display: flex;
}

.main-header.menu-open .hamburger-btn span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.main-header.menu-open .hamburger-btn span:nth-child(2) {
    opacity: 0;
}

.main-header.menu-open .hamburger-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.autoworks-home .header-menu a:hover,
.autoworks-home .header-menu a.active {
    color: #e71d36;
    /* font-weight: 700; REMOVED to prevent jarring layout shift */
    /* Use text-shadow to simulate bold without changing width */
    text-shadow: 0 0 0.65px #e71d36, 0 0 0.65px #e71d36;
}



.autoworks-home .text-wrapper-4 {
    height: 26px;
    margin-left: 1.0px;
    width: 112px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #a8adb7;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 26px;
    white-space: nowrap;
}

.autoworks-home .frame-3 {
    left: 601px;
    width: 154px;
    position: absolute;
    top: 0;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
}

.autoworks-home .text-wrapper-5 {
    height: 26px;
    margin-left: 0;
    width: 117px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #a8adb7;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 26px;
    white-space: nowrap;
}

.autoworks-home .frame-4 {
    left: 129px;
    width: 148px;
    position: absolute;
    top: 0;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
}

.autoworks-home .text-wrapper-6 {
    height: 26px;
    margin-left: 0;
    width: 111px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #a8adb7;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 26px;
    white-space: nowrap;
}

.autoworks-home .image {
    position: absolute;
    top: 200px;
    left: 104px;
    width: 60vw;
    /* 60% of viewport width - scales automatically */
    min-width: 600px;
    max-width: 2400px;
    height: auto;
    object-fit: contain;
}

/* Responsive logo adjustments */
@media (max-width: 1439px) {
    .autoworks-home .image {
        width: 55vw;
        min-width: 500px;
        max-width: 1800px;
        top: 180px;
    }
}

@media (max-width: 1023px) {
    .autoworks-home .image {
        width: 70vw;
        min-width: 300px;
        max-width: 1200px;
        left: 50%;
        transform: translateX(-50%);
        top: 150px;
    }
}

@media (max-width: 767px) {
    .autoworks-home .image {
        width: 85vw;
        min-width: 250px;
        max-width: 800px;
        top: 120px;
    }
}


.autoworks-home .button {
    all: unset;
    box-sizing: border-box;
    position: absolute;
    top: 619px;
    left: 104px;
    width: 255px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e71d36;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid;
    border-color: transparent;
    box-shadow: 0px 0px 0px transparent, 0px 1px 2px #0000000d;
}

.autoworks-home .text-wrapper-7 {
    height: 30px;
    width: 128px;
    font-family: "Open Sans", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: 30px;
    white-space: nowrap;
}

.autoworks-home .opravy-karoseri-po {
    position: absolute;
    top: 504px;
    left: 104px;
    font-family: "Oswald", Helvetica;
    font-weight: 700;
    color: #dee1e6;
    font-size: 32px;
    letter-spacing: 0;
    line-height: 48px;
}

.autoworks-home .img {
    position: absolute;
    top: 16px;
    left: 104px;
    width: 27px;
    height: 46px;
}

.autoworks-home .container-2 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 993px;
    background-color: transparent;
    /* Was #171a1f */
    border: 0px none;
}

.autoworks-home .p {
    position: absolute;
    top: 30px;
    left: 465px;
    font-family: "Oswald", Helvetica;
    font-weight: 700;
    color: #dee1e6;
    font-size: 64px;
    text-align: center;
    letter-spacing: 0;
    line-height: 84px;
    white-space: nowrap;
}

.autoworks-home .container-3 {
    position: absolute;
    top: 157px;
    left: 1075px;
    width: 280px;
    height: 360px;
    display: flex;
    flex-direction: column;
    background-color: #1e2128;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid;
    border-color: #565d6d;
    box-shadow: 0px 0px 0px transparent, 0px 1px 2px #0000000d;
}

.autoworks-home .img-2 {
    margin-left: 112px;
    width: 56px;
    height: 56px;
    margin-top: 32px;
}

.autoworks-home .text-wrapper-8 {
    margin-left: 33px;
    width: 214px;
    height: 36px;
    margin-top: 18.0px;
    font-family: "Oswald", Helvetica;
    font-weight: 600;
    color: #dee1e6;
    font-size: 30px;
    text-align: center;
    letter-spacing: 0;
    line-height: 36px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-9 {
    margin-left: 32.0px;
    width: 216px;
    height: 140px;
    margin-top: 48px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
    line-height: 28px;
}

.autoworks-home .container-4 {
    position: absolute;
    top: 583px;
    left: 761px;
    width: 280px;
    height: 360px;
    display: flex;
    flex-direction: column;
    background-color: #1e2128;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid;
    border-color: #565d6d;
    box-shadow: 0px 0px 0px transparent, 0px 1px 2px #0000000d;
}

.autoworks-home .text-wrapper-10 {
    margin-left: 32px;
    width: 215px;
    height: 36px;
    margin-top: 18.0px;
    font-family: "Oswald", Helvetica;
    font-weight: 600;
    color: #dee1e6;
    font-size: 30px;
    text-align: center;
    letter-spacing: 0;
    line-height: 36px;
    white-space: nowrap;
}

.autoworks-home .container-5 {
    position: absolute;
    top: 583px;
    left: 1073px;
    width: 280px;
    height: 360px;
    display: flex;
    flex-direction: column;
    background-color: #1e2128;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid;
    border-color: #565d6d;
    box-shadow: 0px 0px 0px transparent, 0px 1px 2px #0000000d;
}

.autoworks-home .text-wrapper-11 {
    margin-left: 32.0px;
    width: 216px;
    height: 72px;
    margin-top: 18.0px;
    font-family: "Oswald", Helvetica;
    font-weight: 600;
    color: #dee1e6;
    font-size: 30px;
    text-align: center;
    letter-spacing: 0;
    line-height: 36px;
}

.autoworks-home .text-wrapper-12 {
    margin-left: 32.0px;
    width: 216px;
    height: 140px;
    margin-top: 12px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
    line-height: 28px;
}

.autoworks-home .metoda-PDR-paintless {
    position: absolute;
    top: 148px;
    left: 100px;
    width: 590px;
    font-family: "Oswald", Helvetica;
    font-weight: 600;
    color: #bdc1ca;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 36px;
}

.autoworks-home .container-6 {
    position: absolute;
    top: 157px;
    left: 763px;
    width: 280px;
    height: 360px;
    display: flex;
    flex-direction: column;
    background-color: #1e2128;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid;
    border-color: #565d6d;
    box-shadow: 0px 0px 0px transparent, 0px 1px 2px #0000000d;
}

.autoworks-home .container-7 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 512px;
    background-color: transparent;
    /* Was #171a1f */
    border-radius: 10px;
    border: 0px none;
    box-shadow: 0px 0px 0px transparent, 0px 4px 7px #171a1f21;
}

.autoworks-home .container-8 {
    position: absolute;
    top: 180px;
    left: 415px;
    width: 260px;
    height: 225px;
    background-color: #1e2128;
    border-radius: 16px;
    border: 1px solid;
    border-color: #565d6d;
    box-shadow: 0px 0px 0px transparent, 0px 1px 3px #171a1f12;
}

.autoworks-home .text-wrapper-13 {
    position: absolute;
    top: 25px;
    left: 25px;
    font-family: "Oswald", Helvetica;
    font-weight: 700;
    color: #e71d36;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 32px;
    white-space: nowrap;
}

.autoworks-home .img-3 {
    position: absolute;
    top: 25px;
    left: 55px;
    width: 32px;
    height: 32px;
}

.autoworks-home .text-wrapper-14 {
    position: absolute;
    top: 73px;
    left: 25px;
    font-family: "Oswald", Helvetica;
    font-weight: 700;
    color: #f3f4f6;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 28px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-15 {
    position: absolute;
    top: 108px;
    left: 25px;
    width: 210px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 23px;
}

.autoworks-home .container-9 {
    position: absolute;
    top: 180px;
    left: 758px;
    width: 260px;
    height: 225px;
    background-color: #1e2128;
    border-radius: 16px;
    border: 1px solid;
    border-color: #565d6d;
    box-shadow: 0px 0px 0px transparent, 0px 1px 3px #171a1f12;
}

.autoworks-home .container-10 {
    position: absolute;
    top: 180px;
    left: 1101px;
    width: 260px;
    height: 225px;
    background-color: #1e2128;
    border-radius: 16px;
    border: 1px solid;
    border-color: #565d6d;
    box-shadow: 0px 0px 0px transparent, 0px 1px 3px #171a1f12;
}

.autoworks-home .text-wrapper-16 {
    position: absolute;
    top: 48px;
    left: 418px;
    font-family: "Oswald", Helvetica;
    font-weight: 700;
    color: #dee1e6;
    font-size: 64px;
    text-align: center;
    letter-spacing: 0;
    line-height: 84px;
    white-space: nowrap;
}

.autoworks-home .container-11 {
    position: absolute;
    top: 180px;
    left: 72px;
    width: 260px;
    height: 225px;
    background-color: #1e2128;
    border-radius: 16px;
    border: 1px solid;
    border-color: #565d6d;
    box-shadow: 0px 0px 0px transparent, 0px 1px 3px #171a1f12;
}

.autoworks-home .lightbulb {
    position: absolute;
    top: 25px;
    left: 52px;
    width: 32px;
    height: 32px;
}

.autoworks-home .container-12 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 844px;
    background-color: #262a33;
    border: 0px none;
}

.autoworks-home .image-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 574px;
    height: 844px;
}

.autoworks-home .group {
    position: absolute;
    top: 77px;
    left: 665px;
    width: 694px;
    height: 690px;
}

.autoworks-home .text-wrapper-17 {
    position: absolute;
    top: 1px;
    left: 0;
    font-family: "Oswald", Helvetica;
    font-weight: 700;
    color: #dee1e6;
    font-size: 64px;
    letter-spacing: 0;
    line-height: 84px;
    white-space: nowrap;
}

.autoworks-home .container-13 {
    position: absolute;
    top: 168px;
    left: 0;
    width: 56px;
    height: 56px;
}

.autoworks-home .text-wrapper-18 {
    position: absolute;
    top: 206px;
    left: 80px;
    width: 384px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #9ca3af;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 20px;
}

.autoworks-home .container-14 {
    position: absolute;
    top: 316px;
    left: 0;
    width: 56px;
    height: 56px;
}

.autoworks-home .text-wrapper-19 {
    position: absolute;
    top: 354px;
    left: 80px;
    width: 384px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #9ca3af;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 20px;
}

.autoworks-home .container-15 {
    position: absolute;
    top: 464px;
    left: 0;
    width: 56px;
    height: 56px;
}

.autoworks-home .text-wrapper-20 {
    position: absolute;
    top: 502px;
    left: 80px;
    width: 384px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #9ca3af;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 20px;
}

.autoworks-home .text-wrapper-21 {
    position: absolute;
    top: 650px;
    left: 80px;
    width: 384px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #9ca3af;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 20px;
}

.autoworks-home .text-wrapper-22 {
    position: absolute;
    top: 94px;
    left: 2px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #e71d36;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: 29px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-23 {
    position: absolute;
    top: 173px;
    left: 82px;
    font-family: "Oswald", Helvetica;
    font-weight: 600;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: 33px;
    white-space: nowrap;
}

.autoworks-home .container-16 {
    position: absolute;
    top: 615px;
    left: 0;
    width: 56px;
    height: 56px;
}

.autoworks-home .text-wrapper-24 {
    position: absolute;
    top: 316px;
    left: 80px;
    font-family: "Oswald", Helvetica;
    font-weight: 600;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: 33px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-25 {
    position: absolute;
    top: 464px;
    left: 80px;
    font-family: "Oswald", Helvetica;
    font-weight: 600;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: 33px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-26 {
    position: absolute;
    top: 615px;
    left: 80px;
    font-family: "Oswald", Helvetica;
    font-weight: 600;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: 33px;
    white-space: nowrap;
}

.autoworks-home .container-17 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 454px;
    background-color: transparent;
    /* Was #171a1f */
    border: 0px none;
}

.autoworks-home .text-wrapper-27 {
    position: absolute;
    top: 57px;
    left: 510px;
    font-family: "Oswald", Helvetica;
    font-weight: 700;
    color: #dee1e6;
    font-size: 64px;
    text-align: center;
    letter-spacing: 0;
    line-height: 84px;
    white-space: nowrap;
}

.autoworks-home .group-2 {
    position: absolute;
    top: 185px;
    left: 76px;
    width: 1288px;
    height: 202px;
    display: flex;
    gap: 68px;
}

.autoworks-home .container-18 {
    width: 384px;
    height: 202px;
    position: relative;
    background-color: #1e2128;
    border-radius: 16px;
    border: 1px solid;
    border-color: #565d6d;
    box-shadow: 0px 0px 0px transparent, 0px 2px 4px #171a1f17;
}

.autoworks-home .text-wrapper-28 {
    position: absolute;
    top: 25px;
    left: 77px;
    font-family: "Open Sans", Helvetica;
    font-weight: 700;
    color: #f3f4f6;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-29 {
    position: absolute;
    top: 49px;
    left: 77px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
}

.autoworks-home .avatar {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 40px;
    height: 40px;
    display: flex;
    background-color: #e4f0fb;
    border-radius: 20px;
    overflow: hidden;
    border: 0px none;
}

.autoworks-home .rectangle-3 {
    flex: 1;
    width: 40px;
    background-color: #d9d9d9;
    border: 1px solid;
    border-color: transparent;
}

.autoworks-home .rating {
    position: absolute;
    top: 83px;
    left: 25px;
    width: 80px;
    height: 16px;
}

.autoworks-home .text-wrapper-30 {
    position: absolute;
    top: 81px;
    left: 113px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
    white-space: nowrap;
}

.autoworks-home .container-19 {
    position: absolute;
    top: 117px;
    left: 25px;
    width: 334px;
    height: 60px;
    display: flex;
    overflow: hidden;
    border: 0px none;
}

.autoworks-home .text-wrapper-31 {
    margin-top: 0;
    width: 334px;
    height: 80px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
}

.autoworks-home .rectangle-wrapper {
    background-color: #f7e6e6;
    position: absolute;
    top: 25px;
    left: 25px;
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    border: 0px none;
}

.autoworks-home .container-20 {
    position: absolute;
    top: 117px;
    left: 25px;
    width: 334px;
    height: 40px;
    display: flex;
    overflow: hidden;
    border: 0px none;
}

.autoworks-home .text-wrapper-32 {
    margin-top: 0;
    width: 334px;
    height: 40px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
}

.autoworks-home .avatar-2 {
    background-color: #f8e8ea;
    position: absolute;
    top: 25px;
    left: 25px;
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    border: 0px none;
}

.autoworks-home .text-wrapper-33 {
    margin-top: 0;
    width: 334px;
    height: 60px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
}

.autoworks-home .container-21 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 827px;
    background-color: #262a33;
    border: 0px none;
}

.autoworks-home .image-3 {
    position: absolute;
    top: 128px;
    left: 0;
    width: 1225px;
    height: 831px;
}

.autoworks-home .text-wrapper-34 {
    position: absolute;
    top: 46px;
    left: 526px;
    font-family: "Oswald", Helvetica;
    font-weight: 700;
    color: #dee1e6;
    font-size: 60px;
    text-align: center;
    letter-spacing: 0;
    line-height: 60px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-35 {
    position: absolute;
    top: 185px;
    left: 108px;
    width: 512px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 28px;
}

.autoworks-home .phone {
    position: absolute;
    top: 340px;
    left: 108px;
    width: 24px;
    height: 24px;
}

.autoworks-home .text-wrapper-36 {
    position: absolute;
    top: 337px;
    left: 148px;
    font-family: "Oswald", Helvetica;
    font-weight: 500;
    color: #f3f4f6;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 28px;
    white-space: nowrap;
}

.autoworks-home .mail {
    position: absolute;
    top: 384px;
    left: 108px;
    width: 24px;
    height: 24px;
}

.autoworks-home .text-wrapper-37 {
    position: absolute;
    top: 381px;
    left: 148px;
    font-family: "Oswald", Helvetica;
    font-weight: 500;
    color: #f3f4f6;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 28px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-38 {
    position: absolute;
    top: 480px;
    left: 108px;
    font-family: "Oswald", Helvetica;
    font-weight: 600;
    color: #e71d36;
    font-size: 30px;
    letter-spacing: 0;
    line-height: 36px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-39 {
    position: absolute;
    top: 544px;
    left: 108px;
    font-family: "Oswald", Helvetica;
    font-weight: 500;
    color: #f3f4f6;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 28px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-40 {
    position: absolute;
    top: 580px;
    left: 108px;
    font-family: "Oswald", Helvetica;
    font-weight: 400;
    color: #f3f4f6;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 28px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-41 {
    position: absolute;
    top: 616px;
    left: 108px;
    font-family: "Oswald", Helvetica;
    font-weight: 400;
    color: #f3f4f6;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 28px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-42 {
    position: absolute;
    top: 652px;
    left: 108px;
    font-family: "Oswald", Helvetica;
    font-weight: 400;
    color: #f3f4f6;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 28px;
    white-space: nowrap;
}

.autoworks-home .container-22 {
    position: absolute;
    top: 185px;
    left: 742px;
    width: 586px;
    height: 562px;
    background-color: #1e2128;
    border-radius: 16px;
    border: 1px solid;
    border-color: #565d6d;
    box-shadow: 0px 0px 0px transparent, 0px 1px 2px #0000000d;
}

.autoworks-home .text-wrapper-43 {
    position: absolute;
    top: 27px;
    left: 32px;
    font-family: "Oswald", Helvetica;
    font-weight: 600;
    color: #f3f4f6;
    font-size: 30px;
    letter-spacing: 0;
    line-height: 36px;
    white-space: nowrap;
}

.autoworks-home .textbox {
    position: absolute;
    top: 92px;
    left: 32px;
    width: 522px;
    height: 76px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.autoworks-home .text-wrapper-44 {
    margin-right: 486px;
    flex: 1;
    max-height: 20px;
    height: 20px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 20px;
    white-space: nowrap;
}

.autoworks-home .textfield {
    margin-left: -1px;
    flex: 1;
    display: flex;
    align-items: center;
    background-color: #000000;
    border-radius: 6px;
    border: 1px solid;
    border-color: #323743;
}

.autoworks-home .text-wrapper-45 {
    margin-top: -1px;
    height: 22px;
    margin-left: 12px;
    margin-right: 435px;
    flex: 1;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #565d6d;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 22px;
    white-space: nowrap;
}

.autoworks-home .textbox-2 {
    left: 304px;
    position: absolute;
    top: 192px;
    width: 250px;
    height: 76px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.autoworks-home .text-wrapper-46 {
    margin-right: 208px;
    flex: 1;
    max-height: 20px;
    height: 20px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 20px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-47 {
    margin-right: 166px;
    margin-top: -1px;
    height: 22px;
    margin-left: 12px;
    flex: 1;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #565d6d;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 22px;
    white-space: nowrap;
}

.autoworks-home .textarea {
    position: absolute;
    top: 292px;
    left: 32px;
    width: 522px;
    height: 162px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.autoworks-home .text-wrapper-48 {
    margin-right: 483px;
    flex: 1;
    max-height: 20px;
    height: 20px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 20px;
    white-space: nowrap;
}

.autoworks-home .textfield-2 {
    margin-left: -1px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    background-color: #000000;
    border-radius: 6px;
    border: 1px solid;
    border-color: #323743;
}

.autoworks-home .text-wrapper-49 {
    margin-left: 12px;
    margin-right: 13px;
    flex: 1;
    max-height: 22px;
    margin-top: 12px;
    height: 22px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #565d6d;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 22px;
}

.autoworks-home .resizing-handle {
    margin-right: 4px;
    width: 12px;
    height: 12px;
    margin-bottom: 4px;
}

.autoworks-home .button-2 {
    all: unset;
    box-sizing: border-box;
    position: absolute;
    top: 478px;
    left: 32px;
    width: 521px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e71d36;
    border-radius: 6px;
    overflow: hidden;
    border: 0px none;
}

.autoworks-home .text-wrapper-50 {
    height: 30px;
    width: 120px;
    font-family: "Oswald", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: 30px;
    white-space: nowrap;
}

.autoworks-home .textbox-3 {
    left: 32px;
    position: absolute;
    top: 192px;
    width: 250px;
    height: 76px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.autoworks-home .text-wrapper-51 {
    margin-right: 219px;
    flex: 1;
    max-height: 20px;
    height: 20px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 20px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-52 {
    margin-right: 176px;
    margin-top: -1px;
    height: 22px;
    margin-left: 12px;
    flex: 1;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #565d6d;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 22px;
    white-space: nowrap;
}

.autoworks-home .container-23 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 144px;
    background-color: transparent;
    /* Was #171a1f */
    border: 0px none;
}

.autoworks-home .text-wrapper-53 {
    position: absolute;
    top: 48px;
    left: 549px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: 20px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-54 {
    position: absolute;
    top: 76px;
    left: 620px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: 20px;
    white-space: nowrap;
}

.autoworks-home {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    background-color: #19191f;
}

.autoworks-home .container {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 780px;
    border: 0px none;
    background-image: url(../img/hero-background.png);
    background-size: 100% 100%;
}

.autoworks-home .rectangle {
    top: 1px;
    width: 1440px;
    height: 810px;
    background-color: #00000099;
    position: absolute;
    left: 0;
    border: 0px none;
}

.autoworks-home .div {
    position: absolute;
    top: 0;
    left: 0;
    width: 1200px;
    height: 100px;
    border: 0px none;
}

.autoworks-home .auto-works {
    position: absolute;
    top: 33px;
    left: 96px;
    font-family: "Open Sans", Helvetica;
    font-weight: 700;
    color: transparent;
    font-size: 30px;
    letter-spacing: 0;
    line-height: 36px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper {
    color: #ffffff;
}

.autoworks-home .span {
    color: #e71d36;
}

.autoworks-home .header-menu-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 1440px;
    height: 78px;
    display: flex;
    justify-content: flex-end;
    background-color: #1e2128;
    border: 0px none;
}

.autoworks-home .header-menu {
    margin-top: 16px;
    width: 755px;
    height: 47px;
    margin-right: 48px;
    position: relative;
}

.autoworks-home .frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 129px;
    height: 47px;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.autoworks-home .rectangle-2 {
    width: 100%;
    bottom: 0;
    height: 4px;
    background-color: #e71d36;
    border-radius: 2px;
    position: absolute;
    left: 0;
    border: 0px none;
}

.autoworks-home .text-wrapper-2 {
    position: absolute;
    top: calc(50.00% - 13px);
    left: calc(50.00% - 46px);
    font-family: "Open Sans", Helvetica;
    font-weight: 700;
    color: #e71d36;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 26px;
    white-space: nowrap;
}

.autoworks-home .div-wrapper {
    left: 278px;
    width: 175px;
    position: absolute;
    top: 0;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
}

.autoworks-home .text-wrapper-3 {
    height: 26px;
    margin-left: 0;
    width: 138px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #a8adb7;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 26px;
    white-space: nowrap;
}

.autoworks-home .frame-2 {
    left: 453px;
    width: 148px;
    position: absolute;
    top: 0;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
}

.autoworks-home .text-wrapper-4 {
    height: 26px;
    margin-left: 1.0px;
    width: 112px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #a8adb7;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 26px;
    white-space: nowrap;
}

.autoworks-home .frame-3 {
    left: 601px;
    width: 154px;
    position: absolute;
    top: 0;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
}

.autoworks-home .text-wrapper-5 {
    height: 26px;
    margin-left: 0;
    width: 117px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #a8adb7;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 26px;
    white-space: nowrap;
}

.autoworks-home .frame-4 {
    left: 129px;
    width: 148px;
    position: absolute;
    top: 0;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
}

.autoworks-home .text-wrapper-6 {
    height: 26px;
    margin-left: 0;
    width: 111px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #a8adb7;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 26px;
    white-space: nowrap;
}

.autoworks-home .image {
    position: absolute;
    top: 123px;
    left: 42px;
    width: 982px;
    height: 154px;
}

.autoworks-home .button {
    all: unset;
    box-sizing: border-box;
    position: absolute;
    top: 619px;
    left: 104px;
    width: 255px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e71d36;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid;
    border-color: transparent;
    box-shadow: 0px 0px 0px transparent, 0px 1px 2px #0000000d;
    text-decoration: none;
    cursor: pointer;
}

.autoworks-home .text-wrapper-7 {
    height: 30px;
    width: 128px;
    font-family: "Open Sans", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: 30px;
    white-space: nowrap;
}

.autoworks-home .opravy-karoseri-po {
    position: absolute;
    top: 504px;
    left: 104px;
    font-family: "Oswald", Helvetica;
    font-weight: 700;
    color: #dee1e6;
    font-size: 32px;
    letter-spacing: 0;
    line-height: 48px;
}

.autoworks-home .img {
    position: absolute;
    top: 16px;
    left: 104px;
    width: 27px;
    height: 46px;
}

.autoworks-home .container-2 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 993px;
    background-color: transparent;
    /* Was #171a1f */
    border: 0px none;
}

.autoworks-home .p {
    position: absolute;
    top: 30px;
    left: 465px;
    font-family: "Oswald", Helvetica;
    font-weight: 700;
    color: #dee1e6;
    font-size: 64px;
    text-align: center;
    letter-spacing: 0;
    line-height: 84px;
    white-space: nowrap;
}

.autoworks-home .container-3 {
    position: absolute;
    top: 157px;
    left: 1075px;
    width: 280px;
    height: 360px;
    display: flex;
    flex-direction: column;
    background-color: #1e2128;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid;
    border-color: #565d6d;
    box-shadow: 0px 0px 0px transparent, 0px 1px 2px #0000000d;
}

.autoworks-home .img-2 {
    margin-left: 112px;
    width: 56px;
    height: 56px;
    margin-top: 32px;
}

.autoworks-home .text-wrapper-8 {
    margin-left: 33px;
    width: 214px;
    height: 36px;
    margin-top: 18.0px;
    font-family: "Oswald", Helvetica;
    font-weight: 600;
    color: #dee1e6;
    font-size: 30px;
    text-align: center;
    letter-spacing: 0;
    line-height: 36px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-9 {
    margin-left: 32.0px;
    width: 216px;
    height: 140px;
    margin-top: 48px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
    line-height: 28px;
}

.autoworks-home .container-4 {
    position: absolute;
    top: 583px;
    left: 761px;
    width: 280px;
    height: 360px;
    display: flex;
    flex-direction: column;
    background-color: #1e2128;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid;
    border-color: #565d6d;
    box-shadow: 0px 0px 0px transparent, 0px 1px 2px #0000000d;
}

.autoworks-home .text-wrapper-10 {
    margin-left: 32px;
    width: 215px;
    height: 36px;
    margin-top: 18.0px;
    font-family: "Oswald", Helvetica;
    font-weight: 600;
    color: #dee1e6;
    font-size: 30px;
    text-align: center;
    letter-spacing: 0;
    line-height: 36px;
    white-space: nowrap;
}

.autoworks-home .container-5 {
    position: absolute;
    top: 583px;
    left: 1073px;
    width: 280px;
    height: 360px;
    display: flex;
    flex-direction: column;
    background-color: #1e2128;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid;
    border-color: #565d6d;
    box-shadow: 0px 0px 0px transparent, 0px 1px 2px #0000000d;
}

.autoworks-home .text-wrapper-11 {
    margin-left: 32.0px;
    width: 216px;
    height: 72px;
    margin-top: 18.0px;
    font-family: "Oswald", Helvetica;
    font-weight: 600;
    color: #dee1e6;
    font-size: 30px;
    text-align: center;
    letter-spacing: 0;
    line-height: 36px;
}

.autoworks-home .text-wrapper-12 {
    margin-left: 32.0px;
    width: 216px;
    height: 140px;
    margin-top: 12px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
    line-height: 28px;
}

.autoworks-home .metoda-PDR-paintless {
    position: absolute;
    top: 148px;
    left: 100px;
    width: 590px;
    font-family: "Oswald", Helvetica;
    font-weight: 600;
    color: #bdc1ca;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 36px;
}

.autoworks-home .container-6 {
    position: absolute;
    top: 157px;
    left: 763px;
    width: 280px;
    height: 360px;
    display: flex;
    flex-direction: column;
    background-color: #1e2128;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid;
    border-color: #565d6d;
    box-shadow: 0px 0px 0px transparent, 0px 1px 2px #0000000d;
}

.autoworks-home .container-7 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 512px;
    background-color: transparent;
    /* Was #171a1f */
    border-radius: 10px;
    border: 0px none;
    box-shadow: 0px 0px 0px transparent, 0px 4px 7px #171a1f21;
}

.autoworks-home .container-8 {
    position: absolute;
    top: 180px;
    left: 415px;
    width: 260px;
    height: 225px;
    background-color: #1e2128;
    border-radius: 16px;
    border: 1px solid;
    border-color: #565d6d;
    box-shadow: 0px 0px 0px transparent, 0px 1px 3px #171a1f12;
}

.autoworks-home .text-wrapper-13 {
    position: absolute;
    top: 25px;
    left: 25px;
    font-family: "Oswald", Helvetica;
    font-weight: 700;
    color: #e71d36;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 32px;
    white-space: nowrap;
}

.autoworks-home .img-3 {
    position: absolute;
    top: 25px;
    left: 55px;
    width: 32px;
    height: 32px;
}

.autoworks-home .text-wrapper-14 {
    position: absolute;
    top: 73px;
    left: 25px;
    font-family: "Oswald", Helvetica;
    font-weight: 700;
    color: #f3f4f6;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 28px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-15 {
    position: absolute;
    top: 108px;
    left: 25px;
    width: 210px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 23px;
}

.autoworks-home .container-9 {
    position: absolute;
    top: 180px;
    left: 758px;
    width: 260px;
    height: 225px;
    background-color: #1e2128;
    border-radius: 16px;
    border: 1px solid;
    border-color: #565d6d;
    box-shadow: 0px 0px 0px transparent, 0px 1px 3px #171a1f12;
}

.autoworks-home .container-10 {
    position: absolute;
    top: 180px;
    left: 1101px;
    width: 260px;
    height: 225px;
    background-color: #1e2128;
    border-radius: 16px;
    border: 1px solid;
    border-color: #565d6d;
    box-shadow: 0px 0px 0px transparent, 0px 1px 3px #171a1f12;
}

.autoworks-home .text-wrapper-16 {
    position: absolute;
    top: 48px;
    left: 418px;
    font-family: "Oswald", Helvetica;
    font-weight: 700;
    color: #dee1e6;
    font-size: 64px;
    text-align: center;
    letter-spacing: 0;
    line-height: 84px;
    white-space: nowrap;
}

.autoworks-home .container-11 {
    position: absolute;
    top: 180px;
    left: 72px;
    width: 260px;
    height: 225px;
    background-color: #1e2128;
    border-radius: 16px;
    border: 1px solid;
    border-color: #565d6d;
    box-shadow: 0px 0px 0px transparent, 0px 1px 3px #171a1f12;
}

.autoworks-home .lightbulb {
    position: absolute;
    top: 25px;
    left: 52px;
    width: 32px;
    height: 32px;
}

.autoworks-home .container-12 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 844px;
    background-color: #262a33;
    border: 0px none;
}

.autoworks-home .image-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 574px;
    height: 844px;
}

.autoworks-home .group {
    position: absolute;
    top: 77px;
    left: 665px;
    width: 694px;
    height: 690px;
}

.autoworks-home .text-wrapper-17 {
    position: absolute;
    top: 1px;
    left: 0;
    font-family: "Oswald", Helvetica;
    font-weight: 700;
    color: #dee1e6;
    font-size: 64px;
    letter-spacing: 0;
    line-height: 84px;
    white-space: nowrap;
}

.autoworks-home .container-13 {
    position: absolute;
    top: 168px;
    left: 0;
    width: 56px;
    height: 56px;
}

.autoworks-home .text-wrapper-18 {
    position: absolute;
    top: 206px;
    left: 80px;
    width: 384px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #9ca3af;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 20px;
}

.autoworks-home .container-14 {
    position: absolute;
    top: 316px;
    left: 0;
    width: 56px;
    height: 56px;
}

.autoworks-home .text-wrapper-19 {
    position: absolute;
    top: 354px;
    left: 80px;
    width: 384px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #9ca3af;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 20px;
}

.autoworks-home .container-15 {
    position: absolute;
    top: 464px;
    left: 0;
    width: 56px;
    height: 56px;
}

.autoworks-home .text-wrapper-20 {
    position: absolute;
    top: 502px;
    left: 80px;
    width: 384px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #9ca3af;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 20px;
}

.autoworks-home .text-wrapper-21 {
    position: absolute;
    top: 650px;
    left: 80px;
    width: 384px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #9ca3af;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 20px;
}

.autoworks-home .text-wrapper-22 {
    position: absolute;
    top: 94px;
    left: 2px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #e71d36;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: 29px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-23 {
    position: absolute;
    top: 173px;
    left: 82px;
    font-family: "Oswald", Helvetica;
    font-weight: 600;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: 33px;
    white-space: nowrap;
}

.autoworks-home .container-16 {
    position: absolute;
    top: 615px;
    left: 0;
    width: 56px;
    height: 56px;
}

.autoworks-home .text-wrapper-24 {
    position: absolute;
    top: 316px;
    left: 80px;
    font-family: "Oswald", Helvetica;
    font-weight: 600;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: 33px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-25 {
    position: absolute;
    top: 464px;
    left: 80px;
    font-family: "Oswald", Helvetica;
    font-weight: 600;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: 33px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-26 {
    position: absolute;
    top: 615px;
    left: 80px;
    font-family: "Oswald", Helvetica;
    font-weight: 600;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: 33px;
    white-space: nowrap;
}

.autoworks-home .container-17 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 454px;
    background-color: #171a1f;
    border: 0px none;
}

.autoworks-home .text-wrapper-27 {
    position: absolute;
    top: 57px;
    left: 510px;
    font-family: "Oswald", Helvetica;
    font-weight: 700;
    color: #dee1e6;
    font-size: 64px;
    text-align: center;
    letter-spacing: 0;
    line-height: 84px;
    white-space: nowrap;
}

.autoworks-home .group-2 {
    position: absolute;
    top: 185px;
    left: 76px;
    width: 1288px;
    height: 202px;
    display: flex;
    gap: 68px;
}

.autoworks-home .container-18 {
    width: 384px;
    height: 202px;
    position: relative;
    background-color: #1e2128;
    border-radius: 16px;
    border: 1px solid;
    border-color: #565d6d;
    box-shadow: 0px 0px 0px transparent, 0px 2px 4px #171a1f17;
}

.autoworks-home .text-wrapper-28 {
    position: absolute;
    top: 25px;
    left: 77px;
    font-family: "Open Sans", Helvetica;
    font-weight: 700;
    color: #f3f4f6;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-29 {
    position: absolute;
    top: 49px;
    left: 77px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
}

.autoworks-home .avatar {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 40px;
    height: 40px;
    display: flex;
    background-color: #e4f0fb;
    border-radius: 20px;
    overflow: hidden;
    border: 0px none;
}

.autoworks-home .rectangle-3 {
    flex: 1;
    width: 40px;
    background-color: #d9d9d9;
    border: 1px solid;
    border-color: transparent;
}

.autoworks-home .rating {
    position: absolute;
    top: 83px;
    left: 25px;
    width: 80px;
    height: 16px;
}

.autoworks-home .text-wrapper-30 {
    position: absolute;
    top: 81px;
    left: 113px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
    white-space: nowrap;
}

.autoworks-home .container-19 {
    position: absolute;
    top: 117px;
    left: 25px;
    width: 334px;
    height: 60px;
    display: flex;
    overflow: hidden;
    border: 0px none;
}

.autoworks-home .text-wrapper-31 {
    margin-top: 0;
    width: 334px;
    height: 80px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
}

.autoworks-home .rectangle-wrapper {
    background-color: #f7e6e6;
    position: absolute;
    top: 25px;
    left: 25px;
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    border: 0px none;
}

.autoworks-home .container-20 {
    position: absolute;
    top: 117px;
    left: 25px;
    width: 334px;
    height: 40px;
    display: flex;
    overflow: hidden;
    border: 0px none;
}

.autoworks-home .text-wrapper-32 {
    margin-top: 0;
    width: 334px;
    height: 40px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
}

.autoworks-home .avatar-2 {
    background-color: #f8e8ea;
    position: absolute;
    top: 25px;
    left: 25px;
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    border: 0px none;
}

.autoworks-home .text-wrapper-33 {
    margin-top: 0;
    width: 334px;
    height: 60px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
}

.autoworks-home .container-21 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 827px;
    background-color: #262a33;
    border: 0px none;
}

.autoworks-home .image-3 {
    position: absolute;
    top: 128px;
    left: 0;
    width: 1225px;
    height: 831px;
}

.autoworks-home .text-wrapper-34 {
    position: absolute;
    top: 46px;
    left: 526px;
    font-family: "Oswald", Helvetica;
    font-weight: 700;
    color: #dee1e6;
    font-size: 60px;
    text-align: center;
    letter-spacing: 0;
    line-height: 60px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-35 {
    position: absolute;
    top: 185px;
    left: 108px;
    width: 512px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 28px;
}

.autoworks-home .phone {
    position: absolute;
    top: 340px;
    left: 108px;
    width: 24px;
    height: 24px;
}

.autoworks-home .text-wrapper-36 {
    position: absolute;
    top: 337px;
    left: 148px;
    font-family: "Oswald", Helvetica;
    font-weight: 500;
    color: #f3f4f6;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 28px;
    white-space: nowrap;
    text-decoration: none;
}

.autoworks-home .mail {
    position: absolute;
    top: 384px;
    left: 108px;
    width: 24px;
    height: 24px;
}

.autoworks-home .text-wrapper-37 {
    position: absolute;
    top: 381px;
    left: 148px;
    font-family: "Oswald", Helvetica;
    font-weight: 500;
    color: #f3f4f6;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 28px;
    white-space: nowrap;
    text-decoration: none;
}

.autoworks-home .text-wrapper-38 {
    position: absolute;
    top: 480px;
    left: 108px;
    font-family: "Oswald", Helvetica;
    font-weight: 600;
    color: #e71d36;
    font-size: 30px;
    letter-spacing: 0;
    line-height: 36px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-39 {
    position: absolute;
    top: 544px;
    left: 108px;
    font-family: "Oswald", Helvetica;
    font-weight: 500;
    color: #f3f4f6;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 28px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-40 {
    position: absolute;
    top: 580px;
    left: 108px;
    font-family: "Oswald", Helvetica;
    font-weight: 400;
    color: #f3f4f6;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 28px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-41 {
    position: absolute;
    top: 616px;
    left: 108px;
    font-family: "Oswald", Helvetica;
    font-weight: 400;
    color: #f3f4f6;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 28px;
    white-space: nowrap;
    font-style: normal;
}

.autoworks-home .text-wrapper-42 {
    position: absolute;
    top: 652px;
    left: 108px;
    font-family: "Oswald", Helvetica;
    font-weight: 400;
    color: #f3f4f6;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 28px;
    white-space: nowrap;
    font-style: normal;
}

.autoworks-home .container-22 {
    position: absolute;
    top: 185px;
    left: 742px;
    width: 586px;
    height: 562px;
    background-color: #1e2128;
    border-radius: 16px;
    border: 1px solid;
    border-color: #565d6d;
    box-shadow: 0px 0px 0px transparent, 0px 1px 2px #0000000d;
}

.autoworks-home .text-wrapper-43 {
    position: absolute;
    top: 27px;
    left: 32px;
    font-family: "Oswald", Helvetica;
    font-weight: 600;
    color: #f3f4f6;
    font-size: 30px;
    letter-spacing: 0;
    line-height: 36px;
    white-space: nowrap;
}

.autoworks-home .textbox {
    position: absolute;
    top: 92px;
    left: 32px;
    width: 522px;
    height: 76px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.autoworks-home .text-wrapper-44 {
    margin-right: 486px;
    flex: 1;
    max-height: 20px;
    height: 20px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 20px;
    white-space: nowrap;
}

.autoworks-home .textfield {
    margin-left: -1px;
    flex: 1;
    display: flex;
    align-items: center;
    background-color: #000000;
    border-radius: 6px;
    border: 1px solid;
    border-color: #323743;
}

.autoworks-home .text-wrapper-45 {
    margin-top: -1px;
    height: 22px;
    margin-left: 12px;
    margin-right: 435px;
    flex: 1;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #565d6d;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 22px;
    white-space: nowrap;
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
}

.autoworks-home .text-wrapper-45::placeholder {
    color: #565d6d;
}

.autoworks-home .textbox-2 {
    left: 304px;
    position: absolute;
    top: 192px;
    width: 250px;
    height: 76px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.autoworks-home .text-wrapper-46 {
    margin-right: 208px;
    flex: 1;
    max-height: 20px;
    height: 20px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 20px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-47 {
    margin-right: 166px;
    margin-top: -1px;
    height: 22px;
    margin-left: 12px;
    flex: 1;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #565d6d;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 22px;
    white-space: nowrap;
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
}

.autoworks-home .text-wrapper-47::placeholder {
    color: #565d6d;
}

.autoworks-home .textarea {
    position: absolute;
    top: 292px;
    left: 32px;
    width: 522px;
    height: 162px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.autoworks-home .text-wrapper-48 {
    margin-right: 483px;
    flex: 1;
    max-height: 20px;
    height: 20px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 20px;
    white-space: nowrap;
}

.autoworks-home .textfield-2 {
    margin-left: -1px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    background-color: #000000;
    border-radius: 6px;
    border: 1px solid;
    border-color: #323743;
    position: relative;
}

.autoworks-home .text-wrapper-49 {
    margin-left: 12px;
    margin-right: 13px;
    flex: 1;
    max-height: 22px;
    margin-top: 12px;
    height: 22px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #565d6d;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 22px;
    background: transparent;
    border: none;
    outline: none;
    width: calc(100% - 25px);
    resize: none;
    position: absolute;
    top: 0;
    left: 0;
}

.autoworks-home .text-wrapper-49::placeholder {
    color: #565d6d;
}

.autoworks-home .resizing-handle {
    margin-right: 4px;
    width: 12px;
    height: 12px;
    margin-bottom: 4px;
}

.autoworks-home .button-2 {
    all: unset;
    box-sizing: border-box;
    position: absolute;
    top: 478px;
    left: 32px;
    width: 521px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e71d36;
    border-radius: 6px;
    overflow: hidden;
    border: 0px none;
    cursor: pointer;
}

.autoworks-home .text-wrapper-50 {
    height: 30px;
    width: 120px;
    font-family: "Oswald", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: 30px;
    white-space: nowrap;
}

.autoworks-home .textbox-3 {
    left: 32px;
    position: absolute;
    top: 192px;
    width: 250px;
    height: 76px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.autoworks-home .text-wrapper-51 {
    margin-right: 219px;
    flex: 1;
    max-height: 20px;
    height: 20px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #bdc1ca;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 20px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-52 {
    margin-right: 176px;
    margin-top: -1px;
    height: 22px;
    margin-left: 12px;
    flex: 1;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #565d6d;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 22px;
    white-space: nowrap;
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
}

.autoworks-home .text-wrapper-52::placeholder {
    color: #565d6d;
}

.autoworks-home .container-23 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 144px;
    background-color: #171a1f;
    border: 0px none;
}

.autoworks-home .text-wrapper-53 {
    position: absolute;
    top: 48px;
    left: 549px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: 20px;
    white-space: nowrap;
}

.autoworks-home .text-wrapper-54 {
    position: absolute;
    top: 76px;
    left: 620px;
    font-family: "Open Sans", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: 20px;
    white-space: nowrap;
    font-style: normal;
}

/* Status message styling for contact form */
.autoworks-home .status-msg {
    margin-top: 16px;
    margin-left: 32px;
    font-family: "Open Sans", Helvetica;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
    text-align: left;
}

/* ========================================
   RESPONSIVE FIXES FOR AUTOWORKS HOME  
   ========================================
   Opravuje: fixní šířky, overflow, formulář
   Přidává: mobile/tablet responsiveness
*/

/* Base responsive container fixes */
.autoworks-home .rectangle,
.autoworks-home .div,
.autoworks-home .header-menu-wrapper {
    max-width: 1440px;
    width: 100% !important;
    margin: 0 auto;
}

/* Form field sizing fixes */
.autoworks-home .textfield input,
.autoworks-home .textfield textarea {
    width: 100% !important;
    min-height: 47px;
    padding: 12px !important;
    font-size: 14px;
}

.autoworks-home .textfield-2 textarea {
    width: 100% !important;
    min-height: 120px !important;
    padding: 12px !important;
    resize: vertical;
}

/* Responsive breakpoints */
@media (max-width: 1439px) {

    .autoworks-home .rectangle,
    .autoworks-home .div,
    .autoworks-home .header-menu-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 1023px) {

    /* Tablet adjustments */
    .autoworks-home .container {
        height: auto;
        min-height: 600px;
    }

    .autoworks-home .header-menu {
        width: 90%;
        margin-right: 5%;
    }
}

@media (max-width: 767px) {

    /* Mobile adjustments */
    .autoworks-home .header-menu-wrapper {
        height: auto;
        padding: 10px 0;
    }

    .autoworks-home .header-menu {
        width: 100%;
        margin: 0;
        padding: 10px;
    }

    .autoworks-home .container {
        height: auto;
        min-height: 500px;
    }
}

/* ========================================
   CENTER ALIGNMENT FIXES
   ========================================
   Všechny content sekce na střed
*/

.autoworks-home .container-2,
.autoworks-home .container-7,
.autoworks-home .container-12,
.autoworks-home .container-17,
.autoworks-home .container-21,
.autoworks-home .container-23 {
    max-width: 1200px !important;
    margin-left: auto;
    margin-right: auto;
}

/* Header a navigace na střed */
.autoworks-home .div,
.autoworks-home .header-menu-wrapper {
    max-width: 1200px !important;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   COMPLETE RESPONSIVE REFACTOR
   ======================================== */

/* Fix logo positioning and sizing */
.autoworks-home .image {
    left: 80px !important;
    width: 800px !important;
    max-width: calc(100vw - 208px) !important;
    min-width: 400px !important;
    top: 150px !important;
    transform: none !important;
}

/* Make all containers responsive */
.autoworks-home .container-2 {
    height: auto !important;
    padding: 60px 20px !important;
}

.autoworks-home .p,
.autoworks-home .text-wrapper-16,
.autoworks-home .text-wrapper-17,
.autoworks-home .text-wrapper-27,
.autoworks-home .text-wrapper-34 {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    margin: 0 auto 40px !important;
    text-align: center !important;
    top: auto !important;
}

/* Fix card containers to be flexible */
.autoworks-home .container-3,
.autoworks-home .container-4,
.autoworks-home .container-5,
.autoworks-home .container-6 {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin: 20px auto !important;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
    .autoworks-home .image {
        width: 60vw !important;
        left: 5% !important;
    }
}

@media (max-width: 768px) {
    .autoworks-home .image {
        width: 70vw !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        top: 150px !important;
        min-width: 300px !important;
    }

    .autoworks-home .opravy-karoseri-po {
        left: 50% !important;
        transform: translateX(-50%) !important;
        text-align: center !important;
        font-size: 28px !important;
    }

    .autoworks-home .button {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

@media (max-width: 480px) {
    .autoworks-home .image {
        width: 85vw !important;
        min-width: 250px !important;
        top: 120px !important;
    }
}