.nav-link, a {
    transition: color .3s
}

.about-card, .hero, .service-card {
    overflow: hidden
}

.btn, .cta-inner, .info-item, .section-header {
    text-align: center
}

.form-group input, .form-group textarea, body {
    font-family: Jost,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif
}

@font-face {
    font-family: Jost;
    src: url(jost.woff2) format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

:root {
    --c-darkest: #152E3E;
    --c-dark: #152E3E;
    --c-red: #E60F12;
    --c-orange: #DB3312;
    --c-cream: #F3E6C4;
    --bg-color: #f9fafb;
    --white: #ffffff;
    --text-main: #14212B;
    --text-muted: #4A5D6E
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.btn-dark, header {
    background: var(--c-darkest)
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.text-red {
    color: var(--c-red);
    font-weight: 700
}

.text-white {
    color: #e7874b;
    font-size: 1.5rem;
    font-weight: 900
}

header {
    box-shadow: 0 4px 10px rgb(0 0 0 / .3);
    position: sticky;
    top: 0;
    z-index: 1000
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px
}

.desktop-nav {
    display: none;
    gap: 32px;
    align-items: center
}

.language-switcher {
    display: flex;
    gap: 10px;
    align-items: center
}

    .language-switcher a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 12px;
        border: 1px solid rgb(243 230 196 / .18);
        border-radius: 999px;
        color: var(--c-cream);
        background: rgb(255 255 255 / .05);
        font-weight: 700;
        transition: background .2s,border-color .2s
    }

        .language-switcher a:hover, .mobile-language-switcher a:hover {
            background: rgb(255 255 255 / .12)
        }

        .language-switcher a.active {
            border-color: var(--white)
        }

.nav-link.active, .nav-link:hover {
    border-bottom: 2px solid #fff;
    padding-bottom: 4px
}

@media (min-width:768px) {
    .desktop-nav {
        display: flex
    }

    .mobile-menu-btn {
        display: none !important
    }
}

.nav-link {
    font-weight: 600;
    color: var(--c-cream);
    position: relative
}

    .nav-link.active {
        color: #fff;
        font-size: 1.2rem
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    gap: 8px
}

.btn-dark {
    color: var(--white)
}

    .btn-dark:hover {
        background: var(--c-dark)
    }

.btn-red, .btn-red:hover {
    background: var(--c-red);
    color: var(--white)
}

.btn-red {
    text-shadow: 1px 1px 2px #000
}

    .btn-red:hover {
        padding-bottom: 6px;
        border-bottom: 8px solid var(--white);
        box-shadow: 5px 5px 15px rgb(0 0 0 / .3)
    }

.btn-outline {
    background: 0 0;
    border: 2px solid var(--white);
    color: var(--white)
}

    .btn-outline:hover, .btn-white {
        background: var(--white);
        color: var(--c-darkest)
    }

.btn-white {
    box-shadow: 0 4px 6px rgb(0 0 0 / .1)
}

.info-item p, .info-item svg, .mobile-menu a, .mobile-menu-btn {
    color: var(--c-cream)
}

.btn-white:hover {
    background: var(--c-cream)
}

.mobile-menu-btn {
    background: 0 0;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}

.mobile-menu {
    display: none;
    background: var(--c-darkest);
    border-top: 1px solid rgb(243 230 196 / .1);
    position: absolute;
    width: 100%;
    left: 0;
    box-shadow: 0 10px 15px rgb(0 0 0 / .3)
}

.about-card, .hero, .hero > *, .icon-box, .service-content, .service-list li {
    position: relative
}

.mobile-menu.open {
    display: block
}

.mobile-menu a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid rgb(243 230 196 / .05);
    font-weight: 600;
    transition: background-color .3s,color .3s
}

    .mobile-menu a:hover {
        color: var(--c-orange);
        background-color: rgb(255 255 255 / .03)
    }

    .link-dark, .link-darkest, .link-orange, .link-red, .mobile-menu a.highlight {
        color: var(--c-red)
    }

.mobile-language-switcher {
    display: flex;
    gap: 10px;
    padding: 16px 20px;
    flex-wrap: wrap;
    border-top: 1px solid rgb(243 230 196 / .08)
}

    .mobile-language-switcher a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 10px 14px;
        border: 1px solid rgb(243 230 196 / .14);
        border-radius: 999px;
        color: var(--c-cream);
        background: rgb(255 255 255 / .05);
        font-weight: 700
    }

.hero {
    min-height: 400px;
    padding: 140px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background-color: #14212b
}

    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg,rgb(20 33 43 / .75) 0,rgb(21 46 62 / .75) 100%) center/cover fixed,url(img/hero.webp) center/cover fixed;
        opacity: .5;
        z-index: 1
    }

.carousel::after, .carousel::before {
    content: '';
    top: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    width: 50px
}

.hero.hero-bemutatkozas::before {
    background: linear-gradient(135deg,rgb(20 33 43 / .75) 0,rgb(21 46 62 / .75) 100%) center/cover,url(hero/bemu.webp) center/cover
}

.hero.hero-szolgaltatasok::before {
    background: linear-gradient(135deg,rgb(20 33 43 / .75) 0,rgb(21 46 62 / .75) 100%) center/cover,url(hero/szolg.webp) center/cover
}

.hero.hero-referenciaink::before {
    background: linear-gradient(135deg,rgb(20 33 43 / .75) 0,rgb(21 46 62 / .75) 100%) center/cover,url(hero/refek.webp) center/cover
}

.hero.hero-kv::before {
    background: linear-gradient(135deg,rgb(20 33 43 / .75) 0,rgb(21 46 62 / .75) 100%) center/cover,url(img/hero.webp) center/cover
}

.hero > * {
    z-index: 2
}

.hero-badge {
    display: inline-block;
    background: var(--c-cream);
    color: var(--c-darkest);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 800px;
    text-shadow: 0 2px 10px rgb(0 0 0 / .3)
}

.hero p {
    font-size: 1.25rem;
    opacity: .9;
    margin-bottom: 40px;
    max-width: 700px;
    font-weight: 300;
    text-shadow: 0 2px 5px rgb(0 0 0 / .3)
}

.cta-buttons, .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.info-bar, .info-bar-only-border {
    background: var(--c-dark);
    border-bottom: 8px solid var(--c-red)
}

.info-bar {
    padding: 40px 0
}

.faq-grid, .info-grid, .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px
}

@media (min-width:768px) {
    .info-grid, .services-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .info-item:not(:last-child) {
        border-right: none
    }
}

.info-item {
    color: var(--white);
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center
}

    .info-item svg {
        margin-bottom: 16px
    }

    .info-item h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
        font-weight: 700
    }

    .info-item p {
        font-size: .9rem;
        opacity: .8
    }

.about {
    padding: 100px 0;
    background-color: var(--white)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center
}

.about-card {
    border-radius: 18px;
    box-shadow: 0 24px 56px rgb(20 33 43 / .12);
    min-height: 420px;
    background: #fff
}

    .about-card img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center
    }

@media (max-width:767px) {
    .about-card {
        min-height: 400px;
        height: 400px
    }

        .about-card img {
            object-position: top center
        }
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center
}

    .about-text h2, .section-header h2 {
        color: var(--c-red);
        text-transform: uppercase;
        font-size: .9rem;
        letter-spacing: 1px;
        margin-bottom: 8px;
        font-weight: 700
    }

    .about-text h3 {
        font-size: 2.2rem;
        color: var(--c-darkest);
        margin-bottom: 24px;
        line-height: 1.2
    }

    .about-text p {
        color: var(--text-muted);
        font-size: 1.1rem;
        margin-bottom: 20px
    }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--c-darkest);
    font-size: .95rem
}

    .feature-item svg {
        color: var(--c-orange)
    }

.services {
    padding: 100px 0;
    background-color: var(--bg-color)
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

    .section-header h3 {
        font-size: 2.2rem;
        color: var(--c-darkest);
        margin-bottom: 16px
    }

.divider {
    width: 60px;
    height: 4px;
    background: var(--c-orange);
    margin: 0 auto 24px;
    border-radius: 2px
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem
}

.link-dark:hover, .link-darkest:hover, .link-orange:hover, .link-red:hover, .service-card h4 {
    color: var(--c-darkest)
}

@media (min-width:1024px) {
    .info-grid {
        grid-template-columns: repeat(5,1fr)
    }

    .info-item:not(:last-child) {
        border-right: 1px solid rgb(243 230 196 / .15)
    }

    .services-grid {
        grid-template-columns: repeat(3,1fr)
    }
}

@media (min-width:1400px) {
    .services-grid {
        grid-template-columns: repeat(5,1fr)
    }
}

.service-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: transform .3s,box-shadow .3s;
    display: flex;
    flex-direction: column
}

.ib-darkest, footer {
    background: var(--c-darkest)
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgb(20 33 43 / .12)
}

.service-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative
}

    .service-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s
    }

.service-card:hover .service-img-wrapper img {
    transform: scale(1.05)
}

.service-content {
    padding: 0 30px 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -32px;
    margin-bottom: 24px;
    color: var(--white);
    box-shadow: 0 10px 20px rgb(20 33 43 / .15);
    z-index: 10
}

.ib-dark, .ib-darkest {
    color: var(--c-cream)
}

.service-image, .team-image {
    box-shadow: 0 20px 40px rgb(20 33 43 / .15);
    overflow: hidden
}

.ib-dark {
    background: var(--c-dark)
}

.ib-orange, .ib-red {
    color: var(--white)
}

.ib-red {
    background: var(--c-red)
}

.ib-orange {
    background: var(--c-orange)
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px
}

.service-card p {
    color: var(--text-muted);
    font-size: .95rem;
    margin-bottom: 24px;
    flex-grow: 1
}

.cta-text h2, .footer-contact a:hover, .footer-links a:hover {
    color: var(--white)
}

.card-link {
    font-weight: 700;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.cta {
    background: linear-gradient(rgb(20 33 43 / .92),rgb(21 46 62 / .92)) center/cover,url(img/footer.webp) center/cover;
    padding: 80px 0;
    border-top: 4px solid var(--c-red)
}

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

.info-block, .reference-item, .team-member {
    text-align: center
}

.cta-text h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    text-shadow: 0 2px 5px rgb(0 0 0 / .5)
}

.cta-text p {
    color: var(--c-cream);
    font-size: 1.1rem;
    max-width: 600px;
    opacity: .9
}

footer {
    color: #8a9cae;
    padding: 60px 0 30px;
    margin-top: auto
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px
}

.footer-bottom, .footer-end {
    padding-top: 30px;
    gap: 15px;
    display: flex
}

.footer-logo img {
    background: var(--white);
    padding: 6px;
    border-radius: 4px;
    max-width: 180px;
    margin-bottom: 20px
}

.footer-col h4 {
    color: var(--c-cream);
    margin-bottom: 24px;
    text-transform: uppercase;
    font-size: .9rem;
    letter-spacing: 1px
}

.footer-contact li, .footer-links li {
    margin-bottom: 12px
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start
}

.footer-contact svg {
    color: var(--c-orange);
    flex-shrink: 0;
    margin-top: 4px
}

.footer-bottom {
    border-top: 1px solid rgb(243 230 196 / .1);
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
    color: #8a9cae
}

.footer-end {
    flex-direction: column;
    align-items: center;
    font-size: .9rem;
    color: #fcdf08
}

.qualifications-list, .service-list, .sub-list {
    list-style: none;
    padding: 0
}

.fade-transition {
    transition: opacity .5s ease-in-out;
    opacity: 1
}

.fade-out {
    opacity: 0
}

.logo {
    display: flex;
    align-items: center;
    height: 100%
}

.main-logo {
    width: auto;
    max-height: 90%;
    height: 80%;
    display: block;
    border-radius: 8px
}

.faq-card, .reference-item, .service-image, .team-image {
    border-radius: 12px
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 50px
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center
}

.team-image {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
    height: 400px
}

    .service-image img, .team-image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover
    }

.team-content h3 {
    color: var(--c-red);
    font-size: 1.5rem;
    margin-bottom: 5px
}

.team-content h4 {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 15px
}

.team-content p {
    margin-bottom: 10px;
    line-height: 1.6
}

.detailed-services {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center
}

    .service-detail:nth-child(2n) .service-image {
        order: 2
    }

    .service-detail:nth-child(2n) .service-text {
        order: 1
    }

.service-image {
    width: 100%
}

.service-text h3 {
    color: var(--c-red);
    font-size: 1.8rem;
    margin-bottom: 15px
}

.service-text p {
    margin-bottom: 15px;
    line-height: 1.6
}

.service-list {
    margin: 20px 0
}

    .service-list li {
        margin-bottom: 12px;
        padding-left: 25px;
        line-height: 1.6;
        color: var(--text-main)
    }

.qualifications-list li, .sub-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    line-height: 1.5;
    position: relative
}

.service-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--c-orange);
    font-weight: 700;
    font-size: 1.2rem
}

.qualifications-list li:before, .sub-list li:before {
    font-size: 1rem;
    font-weight: 700;
    left: 0;
    position: absolute
}

.sub-list {
    margin: 10px 0 10px 20px
}

    .sub-list li {
        color: var(--text-muted);
        font-size: .95rem
    }

        .sub-list li:before {
            content: "◦";
            color: var(--c-orange)
        }

.qualifications-list {
    margin: 15px 0
}

    .qualifications-list li {
        text-align: left;
        color: var(--text-main)
    }

        .qualifications-list li:before {
            content: "✓";
            color: var(--c-red)
        }

.faq {
    padding: 100px 0 140px;
    background-color: var(--bg-color)
}

@media (min-width:768px) {
    .faq-grid, .footer-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between
    }

    .service-detail {
        grid-template-columns: 1fr 1fr
    }
}

@media (min-width:1024px) {
    .faq-grid {
        grid-template-columns: repeat(3,1fr)
    }
}

.faq-card {
    background: var(--white);
    padding: 30px;
    box-shadow: 0 4px 12px rgb(20 33 43 / .08);
    transition: transform .3s,box-shadow .3s;
    display: flex;
    flex-direction: column
}

.reference-item, .reference-logo {
    box-shadow: 0 4px 10px rgb(0 0 0 / .1)
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgb(20 33 43 / .12)
}

.faq-card h4 {
    font-size: 1.1rem;
    color: var(--c-darkest);
    margin-bottom: 16px;
    font-weight: 700
}

.faq-card p {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.6
}

.references, .references-list {
    padding: 60px 0;
    background-color: var(--bg-color)
}

.references-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px
}

@media (min-width:768px) {
    .references-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (min-width:992px) {
    .about-grid {
        grid-template-columns: minmax(220px,1fr) minmax(380px,1.6fr) minmax(220px,1fr);
        gap: 32px;
        align-items: start
    }

    .cta-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left
    }

    .footer-grid {
        grid-template-columns: repeat(4,1fr)
    }

    .team-grid {
        grid-template-columns: 1fr 1fr
    }

    .references-grid {
        grid-template-columns: repeat(3,1fr)
    }
}

.reference-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    padding: 20px
}

.reference-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden
}

    .reference-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain
    }

.reference-content h3 {
    color: var(--c-red);
    font-size: 1.2rem;
    margin-bottom: 10px
}

.reference-content p {
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: .9rem
}

.carousel {
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
    position: relative
}

    .carousel::before {
        position: absolute;
        left: 0;
        background: linear-gradient(to right,var(--bg-color),transparent)
    }

    .carousel::after {
        position: absolute;
        right: 0;
        background: linear-gradient(to left,var(--bg-color),transparent)
    }

.carousel-inner, .carousel-inner_m {
    display: flex;
    gap: 20px;
    animation: 30s linear infinite scroll
}

    .carousel-inner img, .carousel-inner_m img {
        width: 250px;
        height: 150px;
        object-fit: contain;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgb(0 0 0 / .1);
        flex-shrink: 0
    }

@media (max-width:480px) {
    .main-logo {
        max-height: 60%
    }
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgb(20 33 43 / .1)
}

.form-group {
    margin-bottom: 24px
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--text-main)
    }

    .form-group input, .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        font-size: 1rem;
        transition: border-color .3s
    }

        .form-group input:focus, .form-group textarea:focus {
            outline: 0;
            border-color: var(--c-red);
            box-shadow: 0 0 0 3px rgb(230 15 18 / .1)
        }

    .form-group textarea {
        resize: vertical;
        min-height: 150px
    }

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px
}

@media (max-width:768px) {
    .hero {
        padding: 100px 0;
        background-attachment: scroll
    }

        .hero h1 {
            font-size: 2.2rem
        }

        .hero p {
            font-size: 1.1rem
        }

    .contact-info {
        grid-template-columns: 1fr
    }
}

.info-block h3 {
    font-size: 1.5rem;
    color: var(--c-darkest);
    margin-bottom: 16px
}

.info-block p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 8px
}

.info-block a {
    color: var(--c-red);
    font-weight: 600;
    transition: opacity .3s
}

    .info-block a:hover {
        opacity: .8
    }

.message {
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-weight: 600
}

    .message.success {
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb
    }

    .message.error {
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb
    }

#open_preferences_center {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: #2b2b2b;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgb(0 0 0 / .3);
    z-index: 9999;
    color: #fff0;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .2s,background-color .2s
}

    #open_preferences_center::before {
        content: "🍪";
        font-size: 24px;
        position: absolute;
        color: #fff
    }

    #open_preferences_center:hover {
        transform: scale(1.1);
        background-color: #444;
        cursor: pointer
    }




/* Tiszta CSS animáció a logóknak */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.carousel-inner, .carousel-inner_m {
    display: flex;
    gap: 20px;
    width: max-content; /* EZ A KULCS: Hagyja kinyúlni a teljes sor szélességében */
    animation: scroll 30s linear infinite;
    will-change: transform; /* Szólunk a videókártyának, hogy ez mozogni fog */
}

/* Opcionális: Ha ráviszik az egeret, megáll az animáció, hogy meg tudják nézni */
.carousel:hover .carousel-inner,
.carousel:hover .carousel-inner_m {
    animation-play-state: paused;
}