@font-face {
    font-family: "Square";
    src: url("http://web50.linux1.public-model.de/fonts/tt0247m.ttf") format("ttf")
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(45deg)
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(45deg)
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(45deg)
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(45deg)
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg)
    }

    50% {
        -webkit-transform: translateY(11px) rotate(0deg)
    }

    100% {
        -webkit-transform: translateY(11px) rotate(135deg)
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg)
    }

    50% {
        transform: translateY(11px) rotate(0deg)
    }

    100% {
        transform: translateY(11px) rotate(135deg)
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg)
    }

    50% {
        -webkit-transform: translateY(11px) rotate(0deg)
    }

    100% {
        -webkit-transform: translateY(11px) rotate(135deg)
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg)
    }

    50% {
        transform: translateY(11px) rotate(0deg)
    }

    100% {
        transform: translateY(11px) rotate(135deg)
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg)
    }

    50% {
        -webkit-transform: translateY(-11px) rotate(0deg)
    }

    100% {
        -webkit-transform: translateY(-11px) rotate(135deg)
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg)
    }

    50% {
        transform: translateY(-11px) rotate(0deg)
    }

    100% {
        transform: translateY(-11px) rotate(135deg)
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg)
    }

    50% {
        -webkit-transform: translateY(-11px) rotate(0deg)
    }

    100% {
        -webkit-transform: translateY(-11px) rotate(135deg)
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg)
    }

    50% {
        transform: translateY(-11px) rotate(0deg)
    }

    100% {
        transform: translateY(-11px) rotate(135deg)
    }
}


/* ===== GLOBAL STYLES ===== */
:root {
    /* Main Colors */
    --primary-color: #036b8b;
    --secondary-color: #f9b104;
    --tertiary-color: #036b8b;
    --dark-color: #121318;
    --light-color: #F7F9FC;
    --gray-color: #8A94A6;
    --gray-dark-color: #4E5D78;
    --gray-light-color: #E5E9F2;

    /* Font Sizes */
    --font-size-xxl: 3.5rem;
    --font-size-xl: 3rem;
    --font-size-lg: 1.875rem;
    --font-size-md: 1.25rem;
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-xs: 0.75rem;
}

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

html {
    scroll-behavior: smooth;
}


p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: var(--font-size-xl);
    margin-bottom: 1rem;
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-header p {
    color: var(--gray-color);
    font-size: var(--font-size-md);
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

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

.btn-secondary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ===== HEADER STYLES ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 150px;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu li a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 150px 0 100px;

    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero h1 {
    font-size: var(--font-size-xxl);
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--primary-color);
    display: block;
}

.hero p {
    font-size: var(--font-size-md);
    color: var(--gray-dark-color);
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.stat-item h3 {
    font-size: var(--font-size-lg);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: var(--font-size-sm);
    color: var(--gray-color);
    margin-bottom: 0;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(76, 111, 255, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: var(--font-size-lg);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--gray-dark-color);
    margin-bottom: 2rem;
}

.about-features {
    margin-bottom: 2rem;
}

.about-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.about-features li i {
    color: var(--tertiary-color);
    font-size: var(--font-size-md);
}

/* ===== ROADMAP SECTION ===== */
.roadmap {
    padding: 100px 0;
    background-color: var(--light-color);
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--gray-light-color);
}

.roadmap-item {
    position: relative;
    padding-bottom: 50px;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--gray-light-color);
    z-index: 1;
}

.roadmap-item.completed::before {
    background-color: var(--tertiary-color);
}

.roadmap-item.active::before {
    background-color: var(--primary-color);
}

.roadmap-content {
    width: 45%;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.roadmap-item:nth-child(odd) .roadmap-content {
    margin-left: auto;
}

.roadmap-date {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: 10px;
}

.roadmap-content h3 {
    font-size: var(--font-size-md);
    margin-bottom: 10px;
}

.roadmap-content ul {
    padding-left: 20px;
    list-style-type: disc;
}

.roadmap-content ul li {
    color: var(--gray-dark-color);
    font-size: var(--font-size-sm);
    margin-bottom: 5px;
}


.second .roadmap-content ul li {
    color: #333;
    font-size: var(--font-size-sm);
    margin-bottom: 5px;
}

/* ===== TOKENOMICS SECTION ===== */
.tokenomics {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.tokenomics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(76, 111, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 76, 124, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.tokenomics-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.tokenomics-center {
    position: sticky;
    top: 120px;
}

.token-main-info {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(76, 111, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.token-main-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.token-logo {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3rem;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.token-main-info h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.token-supply {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.supply-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.supply-text {
    font-size: var(--font-size-base);
    opacity: 0.9;
}

.blockchain-info {
    display: flex;
    gap: 15px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.blockchain-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.tokenomics-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.detail-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(76, 111, 255, 0.15);
}

.detail-card:hover::before {
    transform: scaleY(1);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.detail-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-content h4 {
    font-size: var(--font-size-md);
    color: var(--dark-color);
    margin-bottom: 8px;
}

.card-content p {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.card-content span {
    font-size: var(--font-size-sm);
    color: var(--gray-color);
}

/* Individual card icon colors */
.wallet-limit .card-icon {
    background: linear-gradient(135deg, #4C6FFF, #6B8AFF);
}

.transaction-fee .card-icon {
    background: linear-gradient(135deg, #FF4C7C, #FF6B91);
}

.rewards .card-icon {
    background: linear-gradient(135deg, #3CE5AA, #5CEAB8);
}

.mining .card-icon {
    background: linear-gradient(135deg, #FFB74C, #FFC56B);
}

.governance .card-icon {
    background: linear-gradient(135deg, #9C4CFF, #B06BFF);
}

/* ===== TOKEN BENEFITS SECTION ===== */
.token-benefits {
    padding: 100px 0;
    background-color: #f0f0f0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: white;
    border-radius: 15px;
    padding: 35px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(76, 111, 255, 0.15);
}

.benefit-card:hover::before {
    transform: translateX(0);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(76, 111, 255, 0.3);
}

.benefit-card h3 {
    font-size: var(--font-size-md);
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    color: var(--gray-dark-color);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Specific icon colors for variety */
.benefit-card:nth-child(1) .benefit-icon {
    background: linear-gradient(135deg, #4C6FFF, #6B8AFF);
}

.benefit-card:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, #3CE5AA, #5CEAB8);
}

.benefit-card:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, #FF4C7C, #FF6B91);
}

.benefit-card:nth-child(4) .benefit-icon {
    background: linear-gradient(135deg, #FFB74C, #FFC56B);
}

.benefit-card:nth-child(5) .benefit-icon {
    background: linear-gradient(135deg, #9C4CFF, #B06BFF);
}

.benefit-card:nth-child(6) .benefit-icon {
    background: linear-gradient(135deg, #4CE5FF, #6BEAFF);
}

.benefit-card:nth-child(7) .benefit-icon {
    background: linear-gradient(135deg, #4C6FFF, #FF4C7C);
}

/* ===== VISION SECTION ===== */
.vision {
    padding: 100px 0;

    position: relative;
    overflow: hidden;
}


.vision-content {
    position: relative;
    z-index: 2;
}

.vision-main {
    margin-bottom: 50px;
}

.vision-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vision-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background-color: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.vision-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(76, 111, 255, 0.15);
}

.vision-item:hover::before {
    transform: scaleY(1);
}

.vision-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 1.8rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.vision-item:hover .vision-icon {
    transform: scale(1.1) rotate(5deg);
}

.vision-description {
    flex: 1;
}

.vision-description p {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--gray-dark-color);
    margin-bottom: 0;
}

.vision-quote {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision-quote::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.quote-content {
    position: relative;
    z-index: 2;
}

.quote-icon {
    margin-bottom: 20px;
}

.quote-icon i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

.vision-quote blockquote {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: white;
    font-style: italic;
    line-height: 1.4;
    margin: 0;
    position: relative;
}

/* Different icon gradients for variety */
.vision-item .vision-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color));
}



/* ===== ECOSYSTEM SECTION ===== */
.ecosystem {
    padding: 100px 0;
    background-color: var(--light-color);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ecosystem-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.ecosystem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(76, 111, 255, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: white;
    font-size: var(--font-size-lg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ecosystem-card h3 {
    font-size: var(--font-size-md);
    margin-bottom: 1rem;
}

.ecosystem-card p {
    color: var(--gray-dark-color);
    font-size: var(--font-size-base);
    margin-bottom: 0;
}

/* ===== PARTNERS SECTION ===== */
.partners {
    padding: 100px 0;
    background-color: white;
}

.partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 100px 0;
    background-color: var(--light-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: var(--font-size-md);
    margin-bottom: 0;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2E4BFF 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: var(--font-size-xl);
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content h2 span {
    color: #FFE74C;
}

.cta-content p {
    font-size: var(--font-size-md);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta .btn-outline {
    color: white;
    border-color: white;
}

.cta .btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

/* ===== FOOTER SECTION ===== */
.footer {
    padding: 80px 0 30px;
    background-color: var(--dark-color);
    color: white;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    max-width: 200px;
}

.footer-logo p {
    margin-top: 20px;
    color: var(--gray-color);
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-link-group h4 {
    font-size: var(--font-size-md);
    margin-bottom: 20px;
    color: white;
}

.footer-link-group ul li {
    margin-bottom: 10px;
}

.footer-link-group ul li a {
    color: var(--gray-color);
    transition: all 0.3s ease;
}

.footer-link-group ul li a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: var(--gray-color);
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--gray-color);
    font-size: var(--font-size-lg);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: white;
}

/* ===== SERVICES PAGE STYLES ===== */
.services-hero {
    margin-top: 80px;
    background-color: #1F1F1F;
    color: white;
}

/* Services Overview Section */
.services-overview {
    padding: 100px 0;
    background-color: #ebebeb
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--light-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: var(--font-size-md);
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Strengths Section */
.strengths {
    padding: 100px 0;
    background-color: #1F1F1F;
}

.strengths h3 {
    color: #ebebeb !important;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.strength-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-height: 140px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.strength-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.strength-icon {
    width: 60px;
    height: 60px;
    background-color: var(--tertiary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 5px;
}

.strength-icon i {
    font-size: 1.5rem;
    color: white;
}

.strength-content {
    flex: 1;
    min-width: 0;
}

.strength-item h3 {
    font-size: var(--font-size-base);
    margin-bottom: 10px;
    color: #1F1F1F !important;
    line-height: 1.4;
    font-weight: 600;
}

.strength-item p {
    color: var(--gray-color);
    font-size: var(--font-size-sm);
    margin-bottom: 0;
    line-height: 1.5;
    word-wrap: break-word;
    hyphens: auto;
}

/* Target Groups Section */
.target-groups {
    padding: 100px 0;
    background-color: white;
}

.target-groups-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.target-group {
    text-align: center;
    padding: 40px 30px;
    border: 2px solid var(--gray-light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.target-group:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(76, 111, 255, 0.1);
}

.target-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.target-icon i {
    font-size: 1.8rem;
    color: white;
}

.target-group h3 {
    font-size: var(--font-size-md);
    margin-bottom: 15px;
    color: var(--dark-color);
}

.target-group p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* DDD Connection Section */
.ddd-connection {
    padding: 100px 0;
    background: #1F1F1F;
}

.ddd-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.ddd-text {
    padding: 40px;
}

.ddd-text p {
    font-size: var(--font-size-md);
    color: var(--gray-dark-color);
    line-height: 1.8;
    margin-bottom: 30px;
}

.ddd-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ddd-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Contact CTA Section */
.contact-cta {
    padding: 100px 0;
    background: #f9b104;
    color: white;
}

.contact-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: var(--font-size-xl);
    color: white;
    margin-bottom: 1.5rem;
}

.contact-cta h2 span {
    color: #FFE74C;
}

.contact-cta p {
    font-size: var(--font-size-md);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-cta .btn-primary {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
    padding: 15px 30px;
    font-size: var(--font-size-md);
}

.contact-cta .btn-primary:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

/* Responsive Styles for Services Page */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .strength-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
        min-height: auto;
    }

    .strength-icon {
        margin: 0 auto 10px;
    }

    .target-groups-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ddd-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ddd-text {
        padding: 20px;
    }

    .contact-cta .btn-primary {
        padding: 12px 24px;
        font-size: var(--font-size-base);
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #F0F4FF 100%);
}

.contact-hero .hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section {
    padding: 100px 0;
    background-color: white;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-info h2 {
    font-size: var(--font-size-xl);
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-info p {
    color: var(--gray-color);
    font-size: var(--font-size-md);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-text h4 {
    font-size: var(--font-size-base);
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-text p {
    color: var(--gray-color);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Contact Form Styles */
.contact-form {
    background-color: #ebebeb;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-light-color);
    border-radius: 8px;
    font-size: var(--font-size-base);
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 111, 255, 0.1);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 2px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    color: var(--gray-color);
    font-size: var(--font-size-sm);
}

.checkbox-group label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: var(--font-size-md);
    margin-top: 10px;
}

/* Responsive Styles for Contact Page */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .strength-content {
        min-width: 100%;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-details {
        gap: 25px;
    }

    .contact-item {
        gap: 15px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-icon i {
        font-size: 1.1rem;
    }
}

.contact-white-btn {
    background-color: white !important;
    color: #1f1f1f !important;
    ;
}

@media (max-width: 470px) {
    .services-hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }

    .contact-hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
}

.header {
    background-color: #1f1f1f;
    display: -webkit-box !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    height: 130px;
    width: 100%;
    max-width: 100vw;
    position: fixed;
    left: 0;
    z-index: 100;
    transition: all .5s ease;
    overflow: hidden
}

.header.navopen {
    height: 100% !important
}

.header.navopen .header-wrapper {
    margin-top: 0 !important
}

.header .logo {
    margin: 18px 0
}

.header .logo img {
    min-width: 250px
}

.header-wrapper {
    width: 100%;
    max-width: 1760px;
    margin: auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 25px 80px;
    max-height: 78px
}

.header #nav {
    transition: all .2s ease-in;
    overflow: hidden
}

.header #nav.open {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    background-color: #1f1f1f
}

.header #nav.open .navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    height: auto
}

.header #nav.open .navbar li {
    margin: 10px auto
}

.header #nav.open .navbar li a {
    font-size: 30px
}

.header nav .navbar {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    list-style-type: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 26px;
    line-height: 32px;
    height: 53px;
    transition: display .3s ease;
    transition: opacity .3s ease;
    opacity: 1
}

.header nav .navbar li {
    margin: 5px 25px
}

.header nav .navbar li a {
    color: #fff;
    letter-spacing: 2px
}

.header nav .navbar li a.btn-white {
    font-size: 26px;
    color: #383737;
    padding: 7px 30px
}

.header nav .navbar li:last-of-type {
    margin: 5px 0 5px 25px
}

.header.active {
    left: 0;
    height: 80px;
    transition: all .3s ease
}

.header.active .header-wrapper {
    padding: 15px 80px !important
}

.header.active .navbar {
    font-size: 20px
}

.header.active .navbar--extra {
    display: none
}

.navTrigger {
    display: none;
    cursor: pointer;
    width: 36px;
    z-index: 109;
    height: 25px
}

.navTrigger i {
    background-color: #e6e6e6;
    border-radius: 1px;
    content: '';
    display: block;
    width: 100%;
    height: 0px;
    border: 1px solid #e6e6e6
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT .8s backwards;
    animation: outT .8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse
}

.navTrigger i:nth-child(2) {
    margin: 9px 0;
    -webkit-animation: outM .8s backwards;
    animation: outM .8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm .8s backwards;
    animation: outBtm .8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT .8s forwards;
    animation: inT .8s forwards
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM .8s forwards;
    animation: inM .8s forwards
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm .8s forwards;
    animation: inBtm .8s forwards
}

@media screen and (max-width:1479.98px) {
    .header #nav {
        z-index: 100;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        height: 0
    }

    .header #nav .navbar {
        font-size: 23px
    }

    .header #nav .navbar li {
        margin: 10px auto
    }

    .header .navTrigger {
        display: block
    }

    .header .logo {
        margin: 0
    }

    .header,
    .header.active {
        height: 80px
    }

    .header .header-wrapper,
    .header.active .header-wrapper {
        align-items: center;
        max-height: 100%;
        padding: 30px !important
    }
}

@media screen and (max-width:767.98px) {
    .header .logo {
        width: calc(40%);
        max-width: 200px;
        min-width: auto
    }
}

@media screen and (max-width:539.98px) {
    .header .logo {
        max-width: calc(40%)
    }
}

.footer {
    background-color: #1f1f1f;
    color: #fff;
    width: 100%
}

.footer .logo {
    max-width: 350px
}

.footer .logo .small {
    font-size: 12px;
    line-height: 12px
}

.footer-wrapper {
    padding: 80px;
    width: 100%;
    max-width: 1760px;
    margin: auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap
}

.footer-wrapper-top {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px
}

.footer-wrapper-top ul {
    list-style-type: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.footer-wrapper-contact {
    font-weight: 200;
    line-height: 27px
}

.footer-wrapper-contact p {
    margin-bottom: 15px !important
}

.footer-wrapper-contact ul {
    display: block
}

.footer-wrapper-contact ul li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center
}

.footer-wrapper-contact ul li a,
.footer-wrapper-contact ul li a:hover {
    color: #fff !important;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    font-size: 20px;
    line-height: 27px
}

.footer-wrapper-contact ul li img {
    margin-right: 10px;
    width: 25px
}

.footer-wrapper-contact ul li:first-of-type {
    margin-bottom: 5px
}

.footer-wrapper-bottom {
    border-top: 2px solid #fff;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px
}

.footer-wrapper-bottom ul {
    list-style-type: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.footer-wrapper-bottom ul li {
    margin-right: 10px
}

.footer-wrapper-bottom ul li a {
    color: #fff
}

.footer-wrapper-bottom ul li:last-of-type {
    margin-right: 0
}

@media screen and (max-width:991.98px) {
    .footer-wrapper {
        padding: 50px 30px
    }
}

@media screen and (max-width:767.98px) {

    .footer-wrapper-top,
    .footer-wrapper-bottom {
        flex-direction: column;
        align-items: center
    }

    .footer-wrapper-top-contact ul li,
    .footer-wrapper-bottom-contact ul li {
        justify-content: center
    }

    .footer-wrapper-contact {
        margin-top: 30px
    }
}

@media screen and (max-width:539.98px) {

    .footer-wrapper-top,
    .footer-wrapper-bottom {
        flex-direction: column;
        align-items: center
    }

    .footer-wrapper-bottom ul {
        flex-wrap: wrap;
        flex-direction: column
    }

    .footer-wrapper-bottom ul li {
        margin-right: 0
    }

    .footer-wrapper-contact {
        margin-top: 30px
    }
}

.align-right {
    text-align: right;
    width: 100%
}

.old-price {
    position: relative;
    width: 100%;
    text-align: right
}

.old-price::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 12px;
    right: -4px;
    transform: skewY(-11deg);
    width: 80px;
    height: 2px;
    background: #F9B104
}

.disabled {
    pointer-events: none;
    opacity: 0.5
}

.fixed-contact {
    background-color: #f9b104;
    color: #fff;
    position: fixed;
    top: 70%;
    right: 60px;
    z-index: 99;
    transform: translate(100%, -50%);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.fixed-contact #phone,
.fixed-contact #mail {
    cursor: pointer
}

.fixed-contact ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.fixed-contact ul li {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    transform: translate(0, 0);
    background-color: #f9b104;
    transition: all .7s ease-in
}

.fixed-contact ul li img {
    width: 30px;
    height: 30px;
    margin-right: 15px
}

.fixed-contact ul li a,
.fixed-contact ul li a:hover {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    color: #fff !important
}

.fixed-contact ul li:hover {
    transform: translate(calc(-100% + 60px), 0)
}

.wrapper {
    width: 100%;
    max-width: 1760px;
    padding: 100px 80px;
    margin: auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap
}

.container {
    width: 100%;
    max-width: 1600px;
    margin: auto;
    padding-right: 30px;
    padding-left: 30px
}

#app {
    min-height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff
}

main {
    flex-grow: 1;
    width: 100%
}

main>div {
    position: relative;
    z-index: 1
}

ul {
    list-style-type: none;
    margin: 0 !important;
    padding: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    margin: 0
}

h1 {
    font-size: 100px;
    line-height: 100px
}

h2 {
    font-size: 70px;
    line-height: 109px
}

h3 {
    font-size: 35px;
    font-weight: 200
}

h1 {
    font-weight: 700;
    margin-bottom: 10px
}

h1 .small {
    display: block;
    font-size: 30px;
    line-height: 28px;
    font-weight: 400
}

p {
    margin-top: 0
}

p .primary {
    font-size: inherit !important;
    line-height: inherit !important
}

p:last-of-type {
    margin-bottom: 0
}

a {
    color: #383737;
    text-decoration: none
}

a:hover {
    text-decoration: none;
    color: #f9b104 !important
}

a.current_page_item {
    color: #f9b104
}

.btn-primary {
    margin-top: 25px;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    border: 2px solid #036b8b;
    border-radius: 4px;
    padding: 20px 50px !important;
    font-size: 25px;
    line-height: 25px;
    color: #036b8b;
    outline: 0;
    transition: all .1s ease-in-out;
    display: inline-flex;
    align-items: center;
    background-color: #036b8b;
    justify-content: center
}

.btn-primary:hover {
    color: #fff;
    background-color: #036b8b;
    cursor: pointer;
    text-decoration: none
}

.btn-white {
    margin-top: 25px;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 4px;
    padding: 15px 40px;
    font-size: 25px;
    line-height: 25px;
    color: #383737;
    outline: 0;
    transition: all .1s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.btn-white:hover {
    color: #fff !important;
    background-color: transparent;
    border: 2px solid #fff;
    cursor: pointer;
    -webkit-text-stroke: transparent;
    text-decoration: none
}

.btn-yellow {
    margin-top: 25px;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    background-color: #f9b104;
    border: 2px solid #f9b104;
    border-radius: 4px;
    padding: 15px 40px !important;
    font-size: 25px;
    line-height: 25px;
    color: #fff;
    outline: 0;
    transition: all .1s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.btn-yellow:hover {
    color: #f9b104 !important;
    background-color: transparent;
    border: 2px solid #f9b104;
    cursor: pointer;
    -webkit-text-stroke: transparent;
    text-decoration: none
}

.btn-outline {
    margin-top: 25px;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 400;
    background-color: transparent;
    border: 2px solid #fff !important;
    border-radius: 4px !important;
    padding: 15px 40px !important;
    font-size: 25px !important;
    line-height: 25px !important;
    color: #fff;
    outline: 0;
    transition: all .1s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.btn-outline:hover {
    color: #383737 !important;
    background-color: #fff;
    border: 2px solid #fff;
    cursor: pointer;
    -webkit-text-stroke: transparent;
    text-decoration: none
}

.primary {
    color: #036b8b
}

.logo {
    width: 100%;
    max-width: 250px
}

img {
    width: 100%;
    height: auto;
    align-self: center;
    display: block
}

.tns-outer {
    width: 100%;
    position: relative
}

.tns-outer .tns-nav {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3
}

.tns-outer .tns-nav button {
    width: 10px;
    height: 10px;
    background: #1f1f1f;
    border: 2px solid #f9b104;
    border-radius: 50%;
    padding: 0;
    margin: 0 5px;
    cursor: pointer
}

.tns-outer .tns-nav .tns-nav-active {
    background: #f9b104;
    border: 2px solid #f9b104
}

.tns-outer .tns-controls button {
    border: 0;
    background: transparent;
    font-size: 30px
}

.tns-outer .tns-controls button:first-of-type {
    position: absolute;
    left: -28px;
    top: 50%;
    transform: rotate(90deg) translateY(-50%);
    z-index: 3;
    width: 54px;
    height: 30px;
    color: transparent;
    background-image: url('../../../../themes/myairprotector/img/icons/Pfeil.svg');
    background-repeat: no-repeat;
    background-size: 100% auto
}

.tns-outer .tns-controls button:first-of-type:hover {
    cursor: pointer;
    background-image: url('../../../../themes/myairprotector/img/icons/Pfeil_gefuellt.svg')
}

.tns-outer .tns-controls button:last-of-type {
    position: absolute;
    right: -24px;
    top: 50%;
    transform: rotate(-90deg) translateY(-50%);
    z-index: 3;
    width: 54px;
    height: 30px;
    color: transparent;
    background-image: url('../../../../themes/myairprotector/img/icons/Pfeil.svg');
    background-repeat: no-repeat;
    background-size: 100% auto
}

.tns-outer .tns-controls button:last-of-type:hover {
    cursor: pointer;
    background-image: url('../../../../themes/myairprotector/img/icons/Pfeil_gefuellt.svg')
}

.tns-outer .tns-liveregion {
    display: none
}

.start {
    background-color: #1f1f1f;
    height: 100vh;
    position: relative;
    overflow: hidden
}

.start #tns1-item1 img {
    max-width: 140%;
    margin-right: -40%
}

.start .wrapper {
    padding: 0px 80px
}

.start .banner {
    position: relative;
    overflow: hidden
}

.start .banner::before {
    padding: 15px;
    width: 100%;
    content: 'Solange der Vorrat reicht: -31%';
    position: absolute;
    border: 2px solid #f9b104;
    color: #F9B104;
    box-sizing: border-box;
    top: 0;
    left: 0;
    z-index: 1;
    text-align: center
}

.start .tns-outer {
    width: 100%;
    position: relative;
    margin: 0 auto;
    overflow: hidden
}

.start .tns-outer .tns-item {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.start .tns-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-top: 200px
}

.news-wrapper {
    background-image: url('../../../../themes/myairprotector/img/news-bg-light.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.news-wrapper .heading {
    width: 100%
}

.news-wrapper h2 {
    text-align: center;
    display: block;
    margin-bottom: 30px
}

.news-wrapper .tns-outer {
    width: 100%;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 30px
}

.news-wrapper .tns-outer .tns-item {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 0 20px !important
}

.news-wrapper .tns-inner {
    overflow: hidden;
    margin: 0 !important
}

.news-wrapper .news-slider {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between
}

.news-wrapper .news-slider .tns-item div {
    height: calc(100% - 1px);
    background-color: #fff;
    border: 1px solid #383737;
    padding: 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
}

.news-wrapper .news-slider .tns-item div img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    margin-bottom: 35px;
}

.news-wrapper .news-slider .tns-item div ul {
    width: 100%
}

.news-wrapper .news-slider .tns-item div ul li {
    display: flex;
    margin-bottom: 10px
}

.news-wrapper .news-slider .tns-item div h3 {
    margin-bottom: 25px;
    font-size: 30px;
    line-height: 36px;
    min-height: 72px;
    text-align: center
}

.news-wrapper .news-slider .tns-item div p:last-of-type {
    margin-top: auto;
    text-align: center
}

.news-wrapper .news-slider .tns-item div p {
    width: 100%;
    margin-bottom: 30px
}

.tabs {
    padding: 67px 0 0 0;
    flex: 1;
    display: flex
}

.tabs>div {
    padding: 75px 50px 50px 50px;
    position: relative;
    flex: 1
}

.tabs>div .line {
    top: 0
}

.tabs .simpleTabs {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    border-bottom: 0
}

.tabs .simpleTabs li {
    margin: 0 !important;
    padding: 0px !important;
    border: 1px solid #036b8b;
    background-color: #1f1f1f
}

.tabs .simpleTabs li a {
    padding: 15px 40px !important;
    color: #fff !important;
    font-weight: 300 !important;
    font-size: 25px;
    line-height: 34px
}

.tabs .simpleTabs li:hover,
.tabs .simpleTabs li.active {
    background-color: #036b8b
}

.tabs .simpleTabs li:hover a,
.tabs .simpleTabs li.active a,
.tabs .simpleTabs li:hover a:hover,
.tabs .simpleTabs li.active a:hover {
    color: #fff !important
}

.tabs .simpleTabs li:first-of-type {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.tabs .simpleTabs li:last-of-type {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.tabs .simpleTabsContent ul {
    margin-top: 10px !important
}

.tabs .simpleTabsContent table {
    vertical-align: top;
    width: 100%
}

.tabs .simpleTabsContent table td {
    width: 33% !important;
    padding: 5px 10px
}

#more {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 0);
    color: #f9b104;
    font-weight: 300;
    font-size: 25px;
    line-height: 47px;
    background-image: url('../../../../themes/myairprotector/img/icons/Pfeil.svg');
    background-repeat: no-repeat;
    background-size: 54px auto;
    background-position: 50% 40px;
    padding-bottom: 30px
}

#more:hover {
    background-image: url('../../../../themes/myairprotector/img/icons/Pfeil_gefuellt.svg');
    text-decoration: none
}

.concept {
    overflow: hidden;
    position: relative;
    background-color: #fff;
    background-image: url('../../../../themes/myairprotector/img/Was_wir_machen_small.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%
}

.concept h2 {
    line-height: 80px;
    margin: 0px 0 20px 0
}

.concept p {
    font-size: 20px;
    line-height: 30px;
    max-width: 90%;
    text-align: justify
}

.concept .extra {
    font-size: 35px
}

.concept .anchor {
    position: absolute;
    top: -80px
}

.concept .left,
.concept .right {
    width: 50%
}

.concept .right {
    display: none
}

.light-grey {
    background-color: #ebebeb
}

.light-grey .wrapper {
    flex-direction: column;
    max-width: 1500px;
    padding: 100px 80px
}

.light-grey .wrapper>* {
    width: 100%
}

.diagramm {
    background-color: #1f1f1f
}

.diagramm .wrapper {
    padding: 0
}

.diagramm .left,
.diagramm .right {
    width: 50%
}

.benefit {
    background-color: #ebebeb
}

.benefit .wrapper {
    max-width: 1500px;
    padding: 100px 80px;
    align-items: flex-start;
    justify-content: center
}

.benefit h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 50px
}

.benefit .advantage {
    width: calc(100% / 3)
}

.benefit .advantage>div {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    max-width: 370px;
    margin: 30px auto
}

.benefit .advantage p {
    margin-bottom: 0;
    font-size: 25px;
    line-height: 34px
}

.benefit .advantage img {
    width: 100%;
    height: auto;
    max-width: 76px;
    margin: 0px 30px 0 0
}

.benefit .advantage:first-of-type>div,
.benefit .advantage:nth-of-type(4)>div {
    margin-left: 0
}

.benefit .advantage:nth-of-type(3)>div,
.benefit .advantage:nth-of-type(5)>div {
    margin-right: 0
}

.pre-order {
    background-color: #fff;
    position: relative
}

.pre-order .bg-dark {
    background-color: #1f1f1f;
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 0
}

.pre-order h2 {
    font-size: 35px;
    line-height: 41px
}

.pre-order p {
    font-size: 25px;
    line-height: 34px;
    width: 100%
}

.pre-order .left,
.pre-order .right {
    width: 50%
}

.pre-order img {
    position: relative;
    z-index: 0
}

.pre-order .wrapper {
    padding: 0 80px
}

.pre-order .right {
    padding: 80px 0 80px 50px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    text-align: center
}

.pre-order .right>div {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center
}

.pre-order .right>div h2 {
    width: 100%;
    margin-bottom: 15px
}

.pre-order .right>div img {
    margin-right: 7.5px;
    max-width: 200px
}

.pre-order .right>div a {
    margin-bottom: 60px;
    margin-top: 10px
}

.pre-order a {
    margin-top: 30px
}

.interest {
    background-color: #ebebeb;
    color: #383737
}

.interest .wrapper {
    align-items: center;
    max-width: 1400px;
    padding: 100px 30px
}

.interest h2 {
    font-size: 35px;
    line-height: 47px
}

.interest p {
    margin-bottom: 0
}

.interest a,
.interest a:hover {
    color: #383737 !important;
    font-size: 32px;
    line-height: 47px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
    font-weight: 400
}

.interest img {
    width: 32px;
    height: 32px;
    margin-right: 10px
}

.products {
    background-color: #1f1f1f;
    position: relative;
    overflow: hidden
}

.products .anchor {
    top: 50px;
    position: absolute
}

.products .tns-controls button:first-of-type {
    left: -28px
}

.products .tns-controls button:last-of-type {
    right: -24px
}

.products .product-slider {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.products .product-slider .tns-item {
    width: 30%;
    padding: 30px !important
}

.products .product-image {
    height: 420px;
    max-height: 420px;
    padding-top: 58px
}

.products .product-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 420px;
    margin: auto
}

.products .banner {
    position: relative;
    overflow: hidden
}

.products .banner::before {
    padding: 15px;
    width: 100%;
    content: 'Solange der Vorrat reicht: -31%';
    position: absolute;
    border: 2px solid #f9b104;
    color: #F9B104;
    box-sizing: border-box;
    top: 0;
    left: 0;
    z-index: 1;
    text-align: center;
    display: none;
}

.products .product-box {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: #fff;
    text-align: center;
    justify-content: flex-start
}

.products .product-box h3,
.products .product-box p {
    max-width: 400px;
    margin: 0 auto auto auto
}

.products .product-box h3 {
    font-size: 60px;
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 82px;
    white-space: nowrap
}

.products .product-box .info-text {
    height: 135px
}

.products .product-box .extra-price {
    font-size: 35px;
    line-height: 47px;
    font-weight: 400;
    margin-bottom: 0;
    text-align: right;
    margin-top: 20px
}

.products .product-box .price {
    font-size: 35px;
    line-height: 47px;
    font-weight: 200;
    text-align: right;
    width: 100%;
    margin-bottom: 0
}

.products .product-box .soon {
    padding-bottom: 40px;
    margin-bottom: 0
}

.products .product-box .small {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
    width: 100%;
    text-align: right
}

.products .product-box .product-actions {
    margin-top: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.products .product-box .product-actions a {
    width: 48%;
    padding: 12px;
    font-size: 23px;
    line-height: 34px
}

.roommap-configurator {
    background-color: #1f1f1f;
    position: relative
}

.roommap-configurator .wrapper {
    padding-top: 0
}

.roommap-configurator h2 {
    margin: 0px 0 20px 0
}

.roommap-configurator h2,
.roommap-configurator p {
    color: #fff
}

.roommap-configurator #roommap {
    top: auto;
    bottom: 120px;
    position: absolute
}

.line {
    height: 4px;
    width: 100vw;
    background-color: #383737;
    position: absolute
}

.v-line {
    width: 4px;
    background-color: #383737;
    position: absolute
}

.roommap,
.travelmap,
.roofmap {
    overflow: hidden;
    background-color: #1f1f1f;
    color: #fff;
    position: relative
}

.roommap .wrapper,
.travelmap .wrapper,
.roofmap .wrapper {
    align-items: flex-start;
    padding: 0 80px
}

.roommap h2,
.travelmap h2,
.roofmap h2 {
    padding-top: 50px;
    padding-bottom: 16.5px;
    font-size: 60px;
    line-height: 82px
}

.roommap .left,
.travelmap .left,
.roofmap .left,
.roommap .right,
.travelmap .right,
.roofmap .right {
    height: 100%;
    min-height: 750px;
    position: relative
}

.roommap .left p,
.travelmap .left p,
.roofmap .left p,
.roommap .right p,
.travelmap .right p,
.roofmap .right p {
    line-height: 27px
}

.roommap img,
.travelmap img,
.roofmap img {
    max-height: 750px
}

.roommap .img-left,
.travelmap .img-left,
.roofmap .img-left,
.roommap .img-right,
.travelmap .img-right,
.roofmap .img-right {
    padding-top: 50px
}

.roommap .img-left img,
.travelmap .img-left img,
.roofmap .img-left img,
.roommap .img-right img,
.travelmap .img-right img,
.roofmap .img-right img {
    position: absolute;
    height: 700px !important;
    max-height: calc(100% - 50px);
    width: auto !important;
    max-width: calc(100% - 30px);
    margin: 0 auto;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0%)
}

.roommap .img-right img,
.travelmap .img-right img,
.roofmap .img-right img {
    position: absolute;
    height: 100%;
    width: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.roommap .applications,
.travelmap .applications,
.roofmap .applications {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
    padding: 50px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.roommap .applications img,
.travelmap .applications img,
.roofmap .applications img {
    width: 76px;
    margin: 5px 35px
}

.roommap .left,
.travelmap .left,
.roofmap .left {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1
}

.roommap .right,
.travelmap .right,
.roofmap .right {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2
}

.roommap h3,
.travelmap h3,
.roofmap h3 {
    color: #036b8b;
    margin-top: auto;
    font-weight: 400
}

.roommap .tabs ul li,
.travelmap .tabs ul li,
.roofmap .tabs ul li {
    display: flex;
    align-items: center;
    margin: 10px 0 !important
}

.roommap .tabs ul li img,
.travelmap .tabs ul li img,
.roofmap .tabs ul li img {
    width: 50px;
    margin-right: 15px
}

.roommap .simpleTabsContent ul li a,
.travelmap .simpleTabsContent ul li a,
.roofmap .simpleTabsContent ul li a {
    color: #f9b104;
    display: flex;
    align-items: center;
    margin: 0 0 10px 0
}

.roommap .simpleTabsContent ul li a:hover,
.travelmap .simpleTabsContent ul li a:hover,
.roofmap .simpleTabsContent ul li a:hover {
    text-decoration: underline
}

.roommap .simpleTabsContent a,
.travelmap .simpleTabsContent a,
.roofmap .simpleTabsContent a {
    color: #f9b104
}

.roommap .simpleTabsContent a:hover,
.travelmap .simpleTabsContent a:hover,
.roofmap .simpleTabsContent a:hover {
    text-decoration: underline
}

.roommap #roofmap,
.travelmap #roofmap {
    bottom: 120px;
    position: absolute
}

.roommap .left,
.travelmap .left {
    width: 50%;
    padding-right: 50px
}

.roommap .left .line,
.travelmap .left .line {
    top: 0;
    right: 0
}

.roommap .left .v-line,
.travelmap .left .v-line {
    right: 0;
    top: 0;
    height: 219.5px
}

.roommap .right,
.travelmap .right {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    width: 50%;
    background-color: #1f1f1f;
    position: relative;
    z-index: 1
}

.roommap .right .v-line,
.travelmap .right .v-line {
    right: 0;
    top: 0;
    height: 100%
}

.roommap .right h2,
.travelmap .right h2,
.roommap .right h3,
.travelmap .right h3 {
    padding-left: 50px
}

.roommap .right h3,
.travelmap .right h3 {
    position: relative
}

.roommap .right h3::after,
.travelmap .right h3::after {
    width: 4px;
    height: 75px;
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #383737
}

.roommap .right .tabs,
.travelmap .right .tabs {
    position: relative;
    overflow: hidden
}

.roommap .right .tabs .line,
.travelmap .right .tabs .line {
    top: 0;
    left: 0
}

.roommap .applications,
.travelmap .applications {
    overflow: hidden;
    position: relative
}

.roommap .applications .v-line,
.travelmap .applications .v-line {
    height: 100%;
    right: 0;
    top: 0
}

.roommap .applications .line,
.travelmap .applications .line {
    bottom: 0;
    left: 50%
}

.travelmap .applications {
    overflow: visible
}

.travelmap .applications .line {
    left: auto;
    right: 0
}

.travelmap .wrapper {
    padding-bottom: 100px
}

.travelmap .img-left {
    overflow: hidden
}

.roofmap #travelmap {
    bottom: 120px;
    position: absolute
}

.roofmap .tabs .primary {
    margin-top: 50px;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700
}

.roofmap .left {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    width: 50%;
    background-color: #1f1f1f;
    position: relative;
    z-index: 1
}

.roofmap .left h2,
.roofmap .left h3 {
    padding-left: 50px
}

.roofmap .left .v-line {
    left: 0;
    top: 0px;
    height: 100%
}

.roofmap .left .line {
    bottom: 0;
    left: 0
}

.roofmap .left .tabs {
    position: relative;
    overflow: hidden
}

.roofmap .left .tabs .line {
    top: 0;
    right: 0
}

.roofmap .left h3 {
    position: relative
}

.roofmap .left h3::after {
    width: 4px;
    height: 75px;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #383737
}

.roofmap .right {
    width: 50%;
    padding-left: 50px;
    position: relative
}

.roofmap .right .line {
    bottom: 0;
    left: 0
}

.roofmap .right .v-line {
    left: 0;
    top: 0;
    height: 219.5px
}

.roofmap .applications {
    position: relative
}

.roofmap .applications .line {
    bottom: 0;
    right: 50%;
    display: none
}

.roofmap .applications .v-line {
    bottom: 0;
    left: 0;
    width: 4px;
    height: 100%
}

.qualification {
    background-image: url('../../../../themes/myairprotector/img/news-bg-light.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.qualification .simple-accordion-group.open .simple-accordion-description {
    background-color: #383737 !important
}

.qualification .simple-accordion-description {
    margin-top: -10px
}

.contact {
    background-color: #fff;
    position: relative
}

.contact>img {
    position: absolute;
    left: -520px;
    top: 110px;
    width: auto;
    height: 115%;
    z-index: 0
}

.contact h2 {
    color: #036b8b;
    margin-bottom: 30px;
    font-size: 80px;
    line-height: 109px
}

.contact .extra {
    font-size: 35px;
    line-height: 34px;
    font-weight: 400;
    margin-bottom: 40px
}

.contact .left,
.contact .right {
    width: 50%
}

.scroll-container {
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100%
}

.scroll-container .success {
    max-width: 500px;
    margin: 10px auto;
    color: #fff
}

#datenschutzbestimmung {
    cursor: pointer;
    color: #036b8b;
    text-decoration: underline
}

#impressum,
#datenschutz {
    color: #fff
}

#impressum a,
#datenschutz a {
    word-break: break-all
}

#impressum h3,
#datenschutz h3 {
    font-size: 30px;
    line-height: 37px;
    margin-top: 20px;
    margin-bottom: 15px
}

#impressum .wrapper,
#datenschutz .wrapper {
    flex-direction: column;
    align-items: flex-start;
    height: 100vh
}

#impressum ul,
#datenschutz ul {
    list-style-type: circle;
    padding-left: 30px;
    margin-bottom: 20px !important
}

#impressum a,
#datenschutz a {
    color: #fff
}

.impressum-datenschutz .spacer {
    height: 130px
}

.impressum-datenschutz .wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 80px
}

.impressum-datenschutz h3 {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 35px
}

.short-url .wrapper {
    flex-direction: column;
    align-items: flex-start
}

.faq .spacer {
    height: 130px
}

.faq h2 {
    font-size: 35px;
    line-height: 41px;
    margin-top: 50px;
    width: 100%;
    margin-bottom: 15px
}

video {
    width: 100%;
    position: relative;
    height: auto;
    min-height: 100%;
    object-fit: cover
}

.room-volume-configurator {
    text-align: center;
    z-index: 0;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden
}

.room-volume-configurator h2 {
    position: absolute;
    top: 100px;
    left: 30px;
    color: #fff;
    z-index: 3
}

.room-volume-configurator .img-wrapper>p {
    position: absolute;
    top: 209px;
    left: 30px;
    color: #fff;
    z-index: 3;
    font-size: 35px;
    line-height: 40px
}

.room-volume-configurator .img-wrapper>select {
    position: absolute;
    top: 270px;
    left: 30px;
    color: #fff;
    padding: 5px;
    border: 1px solid #fff;
    background-color: transparent;
    z-index: 3;
    font-size: 22px;
    line-height: 40px
}

.room-volume-configurator .img-wrapper>select option {
    background-color: #000
}

.room-volume-configurator .resize-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    flex: 1
}

.room-volume-configurator .resize {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: flex-end
}

.room-volume-configurator .resize video {
    object-fit: cover
}

.room-volume-configurator .geraete {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex
}

.room-volume-configurator .geraete img {
    display: none;
    opacity: 0;
    transition: all .3s ease
}

.room-volume-configurator .geraete img.active {
    display: block;
    opacity: 1;
    transition: all .3s ease
}

.room-volume-configurator .ringe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    display: flex
}

.room-volume-configurator .ringe img {
    display: none;
    opacity: 0;
    transition: all .3s ease
}

.room-volume-configurator .ringe img.active {
    display: block;
    opacity: 1;
    transition: all .3s ease
}

.room-volume-configurator .panel {
    position: relative;
    min-height: 100vh;
    z-index: 5
}

.room-volume-configurator .panel-fixed {
    z-index: 1
}

.room-volume-configurator .panel-inner {
    width: 100%;
    height: 100%;
    overflow: hidden
}

.room-volume-configurator .panel-inner .resize-wrapper {
    height: 100%;
    overflow: hidden;
    width: auto;
    position: relative;
    width: 100%;
    margin: auto
}

.room-volume-configurator .panel-inner img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: auto;
    z-index: -1
}

.room-volume-configurator .panel-fixed .panel-inner {
    position: fixed;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column
}

.room-volume-configurator .panel-fixed .panel-inner .container {
    margin-top: auto;
    margin-bottom: 50px;
    z-index: 1;
    position: relative;
    color: #fff;
    font-size: 42px;
    line-height: 50px
}

.room-volume-configurator .panel-fixed .panel-inner .container .center {
    height: 150px
}

.room-volume-configurator .panel-fixed .panel-inner .container p {
    margin-top: 0
}

.room-volume-configurator .panel-fixed .panel-inner .container .center {
    text-align: center
}

.room-volume-configurator .img-wrapper {
    position: relative;
    width: 100%;
    background-color: #1f1f1f;
    height: 100vh
}

.room-volume-configurator .img-wrapper .rangeslider-container {
    width: 100%;
    max-width: 400px;
    position: absolute;
    bottom: 100px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2
}

.room-volume-configurator .img-wrapper .rangeslider-container p {
    color: #fff;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 20px
}

.room-volume-configurator .img-wrapper .rangeslider-container span {
    border: 1px solid #fff;
    font-size: 26px;
    line-height: 34px;
    height: 50px;
    color: #fff;
    display: flex;
    margin: 5px;
    padding: 10px;
    align-items: center
}

.room-volume-configurator .img-wrapper .rangeslider-container span input[type="number"] {
    width: 70px
}

.room-volume-configurator .img-wrapper img {
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover
}

.room-volume-configurator .number-wrapper {
    position: absolute;
    top: 0;
    left: 30px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 180px;
    align-items: flex-start;
    padding-bottom: 92px;
    z-index: 2
}

.room-volume-configurator .number-wrapper p {
    margin: 5px;
    color: #fff;
    font-size: 12px !important;
    line-height: 14px !important;
    margin-top: 30px;
    width: calc(100vw - 480px);
    text-align: left
}

.room-volume-configurator .number-wrapper div {
    margin: 5px;
    width: 155px;
    display: flex;
    justify-content: space-between;
    overflow: hidden
}

.room-volume-configurator .number-wrapper div .btn {
    border: 1px solid #f9b104;
    display: inline-block;
    padding: 10px;
    position: relative;
    text-align: center;
    color: #fff;
    height: 50px;
    transition: background 600ms ease, color 600ms ease
}

.room-volume-configurator .number-wrapper div input[type="radio"].toggle {
    display: none
}

.room-volume-configurator .number-wrapper div input[type="radio"].toggle+label {
    cursor: pointer;
    width: 100%
}

.room-volume-configurator .number-wrapper div input[type="radio"].toggle+label:hover {
    background: none;
    color: #f9b104
}

.room-volume-configurator .number-wrapper div input[type="radio"].toggle+label:after {
    background: #f9b104;
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    transition: left 200ms cubic-bezier(.77, 0, .175, 1);
    width: 100%;
    z-index: -1
}

.room-volume-configurator .number-wrapper div input[type="radio"].toggle.toggle-left+label {
    border-right: 0
}

.room-volume-configurator .number-wrapper div input[type="radio"].toggle.toggle-left+label:after {
    left: 100%
}

.room-volume-configurator .number-wrapper div input[type="radio"].toggle.toggle-right+label {
    margin-left: -5px
}

.room-volume-configurator .number-wrapper div input[type="radio"].toggle.toggle-right+label:after {
    left: -100%
}

.room-volume-configurator .number-wrapper div input[type="radio"].toggle:checked+label {
    cursor: default;
    color: #fff;
    transition: color 200ms
}

.room-volume-configurator .number-wrapper div input[type="radio"].toggle:checked+label:after {
    left: 0
}

.room-volume-configurator .number-wrapper>span {
    border: 1px solid #fff;
    width: 155px;
    font-size: 26px;
    line-height: 34px;
    height: 50px;
    color: #fff;
    display: flex;
    margin: 5px;
    padding: 10px;
    align-items: center;
    position: relative
}

.room-volume-configurator .number-wrapper>span:nth-of-type(1)::after {
    content: 'bei 5-facher Luftumwälzung*'
}

.room-volume-configurator .number-wrapper>span:nth-of-type(2)::after {
    content: 'bei 4-facher Luftumwälzung*'
}

.room-volume-configurator .number-wrapper>span:nth-of-type(3)::after {
    content: 'bei 3-facher Luftumwälzung*'
}

.room-volume-configurator .number-wrapper>span:nth-of-type(4)::after {
    content: 'bei 2-facher Luftumwälzung*'
}

.room-volume-configurator .number-wrapper>span:nth-of-type(5)::after {
    content: 'bei 1-facher Luftumwälzung*'
}

.room-volume-configurator .number-wrapper>span:nth-of-type(1)::after,
.room-volume-configurator .number-wrapper>span:nth-of-type(2)::after,
.room-volume-configurator .number-wrapper>span:nth-of-type(3)::after,
.room-volume-configurator .number-wrapper>span:nth-of-type(4)::after,
.room-volume-configurator .number-wrapper>span:nth-of-type(5)::after {
    display: block;
    margin-left: 20px;
    font-size: 14px;
    line-height: 15px;
    text-align: left;
    left: 100%;
    position: absolute;
    width: 105px
}

.room-volume-configurator .number-wrapper>span.en:nth-of-type(1)::after {
    content: 'at 5-fold air circulation*'
}

.room-volume-configurator .number-wrapper>span.en:nth-of-type(2)::after {
    content: 'at 4-fold air circulation*'
}

.room-volume-configurator .number-wrapper>span.en:nth-of-type(3)::after {
    content: 'at 3-fold air circulation*'
}

.room-volume-configurator .number-wrapper>span.en:nth-of-type(4)::after {
    content: 'at 2-fold air circulation*'
}

.room-volume-configurator .number-wrapper>span.en:nth-of-type(5)::after {
    content: 'at 1-fold air circulation*'
}

.room-volume-configurator input[type="number"] {
    width: 100px;
    font-size: 26px;
    line-height: 34px;
    background-color: transparent;
    border: 0px;
    color: #fff;
    text-align: right;
    padding-right: 10px
}

.room-volume-configurator input[type="number"]:focus {
    border: 0;
    outline: 0
}

.room-volume-configurator input[type=number]::-webkit-outer-spin-button,
.room-volume-configurator input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.room-volume-configurator input[type=number] {
    -moz-appearance: textfield
}

.room-volume-configurator .wrapper {
    flex-direction: column
}

.room-volume-configurator .wrapper>div:last-of-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%
}

.uv-c-lampen {
    height: 100vh;
    position: relative;
    overflow: hidden
}

.uv-c-lampen img {
    height: auto;
    width: auto;
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute
}

.uv-c-lampen h2 {
    position: absolute;
    top: 100px;
    left: 100px;
    color: #fff;
    z-index: 1
}

.uv-c-lampen>p {
    position: absolute;
    top: 209px;
    left: 100px;
    color: #fff;
    z-index: 1
}

.uv-c-lampen strong {
    font-size: 80px;
    line-height: 80px;
    font-weight: 700
}

.uv-c-lampen p {
    font-size: 40px;
    line-height: 45px;
    color: #fff
}

.uv-c-lampen .three-times {
    position: absolute;
    bottom: 100px;
    left: 100px
}

.uv-c-lampen .lifespan {
    position: absolute;
    right: 100px;
    bottom: 100px;
    text-align: right
}

.leistungsstark {
    background-color: #ebebeb;
    display: grid;
    align-items: center;
    height: 100vh;
    position: relative;
    grid-template-columns: calc((100% / 3) * 2) calc(100% / 3)
}

.leistungsstark::after {
    content: '';
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #ebebeb 0%, #ebebeb 68%, rgba(235, 235, 235, 0) 74%);
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute
}

.leistungsstark .text-wrapper {
    position: relative;
    z-index: 2;
    padding: 100px
}

.leistungsstark .text-wrapper h2 {
    line-height: 80px !important;
    margin-bottom: 20px !important
}

.leistungsstark .text-wrapper ul {
    list-style-type: none;
    margin-bottom: 20px !important
}

.leistungsstark .text-wrapper ul li {
    padding: 5px 0 5px 20px;
    position: relative;
    height: 37px
}

.leistungsstark .text-wrapper ul li::before {
    content: '–';
    display: block;
    position: absolute;
    left: 0;
    top: 5px
}

.leistungsstark .text-wrapper ul li:nth-of-type(3)::before,
.leistungsstark .text-wrapper ul li:nth-of-type(4)::before {
    top: 10px
}

.leistungsstark .text-wrapper ul li a {
    display: flex;
    color: #f9b104
}

.leistungsstark .img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 0
}

.leistungsstark .img-wrapper img {
    position: absolute;
    width: auto;
    height: 100%
}

.leistungsstark .anrufen-mobile {
    display: none
}

.leistungsstark .anrufen-desktop {
    margin-top: 25px
}

.orange {
    background-color: #f9b104;
    text-align: center
}

.orange .wrapper {
    justify-content: center;
    padding: 30px 40px !important
}

.orange .wrapper p {
    font-size: 25px;
    line-height: 31px;
    color: #fff;
    font-weight: 400
}

.orange .wrapper a {
    color: #fff;
    text-decoration: underline
}

.orange .wrapper a:hover {
    color: #fff !important;
    text-decoration: underline
}

.rangeslider-wrapper {
    margin-top: 50px;
    width: 100%
}

.rangeslider-wrapper .rangeslider,
.rangeslider-wrapper input[type='range'] {
    max-width: 400px;
    margin: auto
}

.rangeslider-wrapper .rangeslider__handle {
    border-radius: 22px;
    line-height: 42px;
    text-align: center;
    font-weight: bold;
    font-size: 16px
}

.rangeslider-wrapper .rangeslider__handle:after {
    background: 0
}

.rangeslider-wrapper .rangeslider,
.rangeslider-wrapper .rangeslider__fill {
    display: block;
    border-radius: 10px
}

.rangeslider-wrapper .rangeslider {
    background: #e6e5ea;
    background-image: linear-gradient(to right, #4bc67d 30%, #f1c40f 45%, #b94a48 99%);
    position: relative
}

.rangeslider-wrapper .rangeslider--horizontal {
    height: 10px;
    width: 100%
}

.rangeslider-wrapper .rangeslider--vertical {
    width: 20px;
    min-height: 150px;
    max-height: 100%
}

.rangeslider-wrapper .rangeslider--disabled {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    opacity: 0.4
}

.rangeslider-wrapper .rangeslider__fill {
    position: absolute
}

.rangeslider-wrapper .rangeslider--horizontal .rangeslider__fill {
    top: 0;
    height: 100%
}

.rangeslider-wrapper .rangeslider--vertical .rangeslider__fill {
    bottom: 0;
    width: 100%
}

.rangeslider-wrapper .rangeslider__handle {
    background: white;
    border: 6px solid #4bc67d;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    position: absolute;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%
}

.rangeslider-wrapper .rangeslider__handle.js-low {
    border-color: #4bc67d
}

.rangeslider-wrapper .rangeslider__handle.js-med {
    border-color: #f1c40f
}

.rangeslider-wrapper .rangeslider__handle.js-high {
    border-color: #b94a48
}

.rangeslider-wrapper .rangeslider__handle input {
    display: block
}

.rangeslider-wrapper .rangeslider__handle:after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%
}

.rangeslider-wrapper .rangeslider--horizontal .rangeslider__handle {
    top: -30px;
    touch-action: pan-y;
    -ms-touch-action: pan-y
}

.rangeslider-wrapper .rangeslider--vertical .rangeslider__handle {
    left: -10px;
    touch-action: pan-x;
    -ms-touch-action: pan-x
}

.rangeslider-wrapper input[type="range"]:focus+.rangeslider .rangeslider__handle {
    -moz-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
    -webkit-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
    box-shadow: 0 0 8px rgba(255, 0, 255, 0.9)
}

@media screen and (max-width:1469.98px) {
    .products .product-box .info-text {
        height: 170px
    }

    .products .product-box h3 {
        font-size: 40px;
        line-height: 54px,
    }

    .products .product-box .product-actions {
        flex-direction: column
    }

    .products .product-box .product-actions a {
        width: 100%;
        max-width: 230px
    }

    .interest h2,
    .interest a {
        font-size: 25px;
        line-height: 30px
    }

    .leistungsstark .text-wrapper h2 {
        line-height: 60px !important;
        font-size: 50px !important
    }

    .uv-c-lampen strong {
        line-height: 60px !important;
        font-size: 50px !important
    }

    .uv-c-lampen p {
        line-height: 30px !important;
        font-size: 35px !important
    }

    .room-volume-configurator h2 {
        font-size: 60px;
        line-height: 80px
    }

    .room-volume-configurator .img-wrapper>p {
        font-size: 28px;
        line-height: 34px;
        top: 190px
    }

    .room-volume-configurator .img-wrapper>select {
        top: 250px
    }
}

@media screen and (max-width:1445.98px) {
    .roofmap .simpleTabs {
        flex-wrap: nowrap !important
    }

    .roofmap .left .tabs {
        overflow: visible
    }

    .roofmap .left .tabs .line {
        max-width: 100px
    }
}

@media screen and (max-width:1199.98px) {
    .news-slider .btn-yellow {
        width: 100%;
        padding: 15px 0px
    }
}

@media screen and (max-width:991.98px) {
    h2 {
        font-size: 40px !important;
        line-height: 50px !important
    }

    .start .wrapper {
        padding: 0 30px
    }

    .start #tns1-item1 img {
        max-width: 100%;
        margin-right: auto
    }

    .start .slider h2 {
        font-size: 100px !important;
        line-height: 100px !important;
        font-weight: 700;
        margin-bottom: 10px
    }

    .start .tns-item {
        padding-top: 100px;
        position: relative;
        height: 100vh
    }

    .start .left {
        position: absolute;
        z-index: -1;
        bottom: 0
    }

    .start .left img {
        margin: 0 auto 0 0
    }

    .start #tns1-item1 .left {
        bottom: 60%
    }

    .concept {
        background-image: none
    }

    .concept .left {
        order: 2
    }

    .concept .right {
        order: 1;
        display: flex
    }

    .concept p {
        max-width: 100%
    }

    .pre-order .anchor {
        position: absolute;
        top: -80px
    }

    .pre-order .wrapper {
        padding: 0 30px
    }

    .pre-order .bg-dark {
        width: 100%
    }

    .pre-order .right {
        padding-left: 0;
        position: relative;
        z-index: 1;
        color: #fff
    }

    .pre-order .right>div img {
        filter: invert(1)
    }

    .interest .wrapper {
        padding: 50px 30px;
        flex-direction: column
    }

    .interest h2 {
        font-size: 30px;
        line-height: 35px
    }

    .interest a {
        margin-top: 10px;
        font-size: 20px;
        line-height: 25px
    }

    .left,
    .right {
        width: 100% !important
    }

    .img-right,
    .img-left {
        position: relative !important;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important
    }

    .wrapper {
        padding: 50px 30px
    }

    .roommap .wrapper,
    .roofmap .wrapper,
    .travelmap .wrapper {
        padding: 0 30px !important
    }

    .roommap .left,
    .roofmap .left,
    .travelmap .left,
    .roommap .right,
    .roofmap .right,
    .travelmap .right {
        -webkit-box-ordinal-group: 2;
        -moz-box-ordinal-group: 2;
        -ms-flex-order: 2;
        -webkit-order: 2;
        order: 2
    }

    .roommap .img-left,
    .roofmap .img-left,
    .travelmap .img-left,
    .roommap .img-right,
    .roofmap .img-right,
    .travelmap .img-right {
        min-height: 1px;
        padding: 0;
        -webkit-box-ordinal-group: 1;
        -moz-box-ordinal-group: 1;
        -ms-flex-order: 1;
        -webkit-order: 1;
        order: 1
    }

    .roommap .img-left img,
    .roofmap .img-left img,
    .travelmap .img-left img,
    .roommap .img-right img,
    .roofmap .img-right img,
    .travelmap .img-right img {
        max-height: calc(100vh - 50px);
        position: relative;
        top: 0;
        left: 0;
        transform: none
    }

    .roommap .img-right .v-line,
    .roofmap .img-right .v-line,
    .travelmap .img-right .v-line {
        height: 100%
    }

    .roommap .applications,
    .roofmap .applications,
    .travelmap .applications {
        -webkit-box-ordinal-group: 3;
        -moz-box-ordinal-group: 3;
        -ms-flex-order: 3;
        -webkit-order: 3;
        order: 3
    }

    .roommap .applications .line,
    .roofmap .applications .line,
    .travelmap .applications .line {
        left: 0
    }

    .roommap .left,
    .travelmap .left {
        padding: 30px 0
    }

    .roommap .left .v-line,
    .travelmap .left .v-line {
        height: 100%
    }

    .roommap .right,
    .travelmap .right {
        position: relative
    }

    .roommap .right::before,
    .travelmap .right::before {
        width: 100%;
        height: 4px;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        background-color: #383737;
        content: ''
    }

    .roommap .right::after,
    .travelmap .right::after {
        height: 188.5px;
        width: 4px;
        position: absolute;
        display: block;
        left: 0;
        top: 0;
        background-color: #383737;
        content: ''
    }

    .travelmap .wrapper {
        padding-bottom: 50px !important
    }

    .travelmap .left {
        position: relative
    }

    .travelmap .left::before {
        width: 100%;
        height: 4px;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        background-color: #383737;
        content: ''
    }

    .travelmap .left::after {
        height: 187.5px;
        width: 4px;
        position: absolute;
        display: block;
        right: 0;
        top: 0;
        background-color: #383737;
        content: ''
    }

    .travelmap .applications {
        overflow: visible
    }

    .travelmap .applications .line {
        left: auto;
        right: 0
    }

    .roofmap .simpleTabs {
        flex-wrap: wrap !important
    }

    .roofmap .left {
        position: relative
    }

    .roofmap .left .tabs {
        overflow: hidden
    }

    .roofmap .left .tabs .line {
        max-width: 100vw
    }

    .roofmap .left::before {
        width: 100%;
        height: 4px;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        background-color: #383737;
        content: ''
    }

    .roofmap .left::after {
        height: 188.5px;
        width: 4px;
        position: absolute;
        display: block;
        right: 0;
        top: 0;
        background-color: #383737;
        content: ''
    }

    .contact .extra {
        font-size: 25px
    }

    .benefit .advantage {
        width: 48%;
        margin: 20px 1% !important
    }

    .benefit .advantage>div {
        margin: 0
    }



    .impressum-datenschutz .spacer {
        height: 80px
    }

    .impressum-datenschutz .wrapper {
        flex-direction: column;
        padding: 30px
    }

    .news-wrapper #news-slider-mw {
        padding: 0 35px
    }

    .news-wrapper .tns-outer {
        padding: 0
    }

    .orange .wrapper {
        padding: 30px 30px !important
    }

    .room-volume-configurator {
        min-height: 0 !important;
        height: auto
    }

    .room-volume-configurator .img-wrapper {
        display: flex;
        flex-direction: column;
        padding: 50px 30px;
        height: auto !important
    }

    .room-volume-configurator .img-wrapper img {
        width: 100%;
        object-fit: contain;
        min-height: 0
    }

    .room-volume-configurator h2 {
        order: 1
    }

    .room-volume-configurator .img-wrapper>p {
        order: 2;
        font-size: 30px !important;
        line-height: 35px !important
    }

    .room-volume-configurator .img-wrapper>select {
        order: 3;
        margin-top: 20px;
        max-width: 210px
    }

    .room-volume-configurator .resize-wrapper {
        order: 4;
        position: relative !important;
        padding: 20px 0
    }

    .room-volume-configurator .ringe {
        position: relative !important
    }

    .room-volume-configurator .rangeslider-container {
        order: 5;
        position: relative !important;
        bottom: 0 !important;
        right: 0 !important;
        align-items: flex-start !important;
        margin-bottom: 40px
    }

    .room-volume-configurator .number-wrapper {
        order: 6;
        position: relative !important;
        height: auto !important;
        left: 0 !important;
        padding-bottom: 0 !important
    }

    .room-volume-configurator .number-wrapper p {
        width: calc(100vw - 60px) !important
    }

    .room-volume-configurator h2,
    .room-volume-configurator p,
    .room-volume-configurator select {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        text-align: left
    }

    .leistungsstark {
        height: auto !important;
        grid-template-columns: 1fr
    }

    .leistungsstark::after {
        display: none
    }

    .leistungsstark .text-wrapper {
        padding: 50px 30px
    }

    .leistungsstark .text-wrapper h2 {
        font-size: 40px !important;
        line-height: 50px !important
    }

    .leistungsstark .img-wrapper img {
        object-fit: contain;
        width: 100%;
        min-height: 0 !important
    }

    .uv-c-lampen {
        overflow: hidden;
        padding: 50px 30px;
        height: auto
    }

    .uv-c-lampen img {
        z-index: -1
    }

    .uv-c-lampen p {
        font-size: 25px !important;
        line-height: 30px !important
    }

    .uv-c-lampen h2,
    .uv-c-lampen p,
    .uv-c-lampen .three-times,
    .uv-c-lampen .lifespan {
        position: relative;
        top: 0;
        left: 0;
        text-align: left
    }

    .uv-c-lampen .lifespan,
    .uv-c-lampen .three-times {
        margin-top: 35px
    }

    .news-slider .btn-yellow {
        width: auto;
        padding: 15px 40px
    }

    .products .product-box .info-text {
        height: 135px
    }
}

@media screen and (max-width:767.98px) {
    .products .product-box .info-text {
        height: auto
    }

    .leistungsstark .anrufen-mobile {
        display: block
    }

    .leistungsstark .anrufen-desktop {
        display: none
    }

    .btn-yellow {
        padding: 15px 20px !important
    }

    .wrapper {
        padding: 50px 30px !important
    }

    .benefit .wrapper {
        padding: 50px 30px
    }

    .start h1 {
        font-size: 60px
    }

    .start .slider h2 {
        font-size: 60px !important
    }

    .start #tns1-item1 .left {
        bottom: auto
    }

    .start .tns-item {
        display: flex;
        align-items: center
    }

    .start .right {
        order: 1;
        height: calc(50% - 100px)
    }

    .start .right .btn-yellow {
        display: none
    }

    .start .left {
        order: 2;
        position: relative;
        align-items: center;
        margin-bottom: auto;
        height: calc(50% + 100px)
    }

    .start .left img {
        margin: 0 auto auto auto
    }

    .concept {
        overflow: hidden
    }

    .concept .right {
        height: 400px;
        align-items: center;
        justify-content: flex-end
    }

    .concept .right img {
        height: 100%;
        width: auto
    }

    .products .product-slider .product-box .product-actions {
        flex-direction: column !important
    }

    .products .product-box .product-actions {
        flex-direction: row
    }

    .products .product-box .product-actions a {
        width: 48%
    }

    .roommap h2,
    .travelmap h2 {
        padding-bottom: 50px
    }

    .roommap .img-left img,
    .travelmap .img-left img,
    .roommap .img-right img,
    .travelmap .img-right img {
        max-height: 300px !important
    }

    #impressum,
    #datenschutz {
        color: #fff
    }

    #impressum .wrapper h2,
    #datenschutz .wrapper h2 {
        font-size: 30px
    }

    #impressum .wrapper h3,
    #datenschutz .wrapper h3 {
        font-size: 25px
    }

    .news-wrapper .news-slider .tns-item {
        width: calc(48%) !important;
        padding: 0 !important
    }

    .tabs {
        padding: 0 !important
    }

    .tabs .simpleTabs {
        display: none !important
    }

    .tabs .tab-title {
        padding: 0 !important;
        margin-bottom: 20px
    }

    .roommap .right::after,
    .travelmap .left::after {
        height: 150px
    }
}

@media screen and (max-width:539.98px) {
    .fixed-contact {
        display: none
    }

    h1 {
        font-size: 40px !important;
        line-height: 50px !important
    }

    h1 .small {
        font-size: 25px;
        line-height: 23px
    }

    .start .slider h2 {
        font-size: 40px !important;
        line-height: 50px !important
    }

    .start .slider h2 .small {
        font-size: 25px;
        line-height: 23px
    }

    .start .right p {
        font-size: 20px;
        line-height: 27px
    }

    .benefit .advantage {
        width: 100%;
        margin-right: 0
    }

    .benefit .advantage>div {
        margin: 0px auto !important
    }

    .pre-order p {
        font-size: 20px;
        line-height: 27px
    }

    .products .product-box .product-actions {
        flex-direction: column
    }

    .products .product-box .product-actions a {
        width: 100%
    }

    .roommap .right::before,
    .roommap .right::after {
        display: none
    }

    .roommap .right h2,
    .roommap .right .tabs>div,
    .roommap .right h3 {
        padding-left: 0
    }

    .travelmap .left h2,
    .travelmap .left .tabs>div,
    .travelmap .left h3 {
        padding-left: 0
    }

    .roommap .left,
    .travelmap .left,
    .roommap .right,
    .travelmap .right {
        min-height: 1px
    }

    .roommap .line,
    .travelmap .line,
    .roommap .v-line,
    .travelmap .v-line,
    .roommap .left::before,
    .travelmap .left::before,
    .roommap .left::after,
    .travelmap .left::after,
    .roommap h3::after,
    .travelmap h3::after {
        display: none !important
    }

    .roommap h3,
    .travelmap h3 {
        font-size: 25px
    }

    .roommap .applications,
    .travelmap .applications {
        padding-left: 0;
        padding-right: 0;
        justify-content: space-between
    }

    .roommap .applications img,
    .travelmap .applications img {
        margin: 5px
    }

    .roommap .tabs>div,
    .travelmap .tabs>div {
        padding: 0px 0 50px 0
    }

    .roommap .tabs .simpleTabsContent,
    .travelmap .tabs .simpleTabsContent {
        margin: 20px 0
    }

    .roommap .tabs .simpleTabs li a,
    .travelmap .tabs .simpleTabs li a {
        padding: 10px 20px
    }

    .news-wrapper .news-slider .tns-item {
        width: calc(100%) !important
    }
}

@media screen and (max-width:399.98px) {

    .roommap .tabs,
    .travelmap .tabs {
        padding: 60px 0 0 0
    }

    .roommap .tabs .simpleTabs,
    .travelmap .tabs .simpleTabs {
        flex-direction: column
    }

    .roommap .tabs .simpleTabs li,
    .travelmap .tabs .simpleTabs li {
        margin: 0 !important;
        border-radius: 4px
    }

    .roommap .tabs .simpleTabs li a,
    .travelmap .tabs .simpleTabs li a {
        padding: 10px 20px !important
    }
}

.bestellung-wrapper {
    width: 100%;
    max-width: 1760px;
    padding: 100px 80px;
    margin: auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap
}

.bestellung-wrapper .spacer {
    height: 80px
}

.bestellung-wrapper h1 {
    font-size: 70px;
    line-height: 109px;
    font-weight: 700;
    text-align: center
}

.bestellung-wrapper .success {
    color: #036b8b;
    margin: 30px 0;
    font-weight: 600;
    font-size: 25px
}

.bestellung-wrapper .alert-success {
    border: 0 !important;
    background-color: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center
}

.bestellung-wrapper .tooltip {
    display: none !important
}

.bestellung-wrapper #tooltip_3 {
    display: block !important;
    font-size: 12px;
    line-height: 20px
}

.bestellung-wrapper input:not([type="submit"]),
.bestellung-wrapper select,
.bestellung-wrapper textarea {
    border: 1px solid #383737 !important;
    padding: 10px 5px;
    border: 0;
    line-height: 20px;
    font-size: 20px;
    font-family: inherit;
    border-radius: 4px;
    width: 100%;
    margin: 0 !important
}

.bestellung-wrapper ::placeholder {
    color: transparent
}

.bestellung-wrapper label {
    margin-bottom: 17px;
    line-height: 20px
}

.bestellung-wrapper #angebot {
    cursor: pointer;
    color: #036b8b;
    text-decoration: underline
}

.bestellung-wrapper label {
    line-height: 26px;
    color: #383737;
    margin: 10px 0;
    display: block
}

.bestellung-wrapper .required {
    display: none
}

.bestellung-wrapper form {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.bestellung-wrapper form .width-6 {
    width: 48%
}

.bestellung-wrapper form .formidable_column {
    padding: 0
}

.bestellung-wrapper form .formidable_column:first-of-type {
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap
}

.bestellung-wrapper form .formidable_column:first-of-type h2 {
    width: 100%
}

.bestellung-wrapper form .formidable_column:first-of-type .element {
    width: 30%
}

.bestellung-wrapper form .formidable_column:first-of-type .element:last-of-type {
    width: 100%
}

.bestellung-wrapper form .formidable_column:first-of-type .element div>p {
    margin-top: 20px;
    margin-bottom: 0px
}

.bestellung-wrapper form .formidable_column:first-of-type .element div>p:last-of-type {
    margin-top: 0
}

.bestellung-wrapper form .formidable_column:last-of-type .element {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column
}

.bestellung-wrapper form .formidable_column:last-of-type .element input[type="radio"],
.bestellung-wrapper form .formidable_column:last-of-type .element input[type="checkbox"] {
    margin-right: 10px;
    width: auto
}

.bestellung-wrapper form .formidable_column:last-of-type .element label {
    position: relative;
    padding-left: 30px
}

.bestellung-wrapper form .formidable_column:last-of-type .element input[type='checkbox'],
.bestellung-wrapper form .formidable_column:last-of-type .element input[type='radio'] {
    position: absolute;
    left: 0;
    top: 5px
}

.bestellung-wrapper form .formidable_column:last-of-type .element:nth-of-type(2) label {
    margin-top: 0 !important
}

.bestellung-wrapper form .formidable_column:last-of-type a,
.bestellung-wrapper form .formidable_column:last-of-type a:hover {
    cursor: pointer;
    color: #036b8b;
    text-decoration: underline
}

.bestellung-wrapper form h2 {
    font-size: 30px;
    line-height: 40px;
    margin-top: 50px;
    font-family: "Nunito", sans-serif;
    font-weight: 400
}

.bestellung-wrapper form .formidable_column:last-of-type h2 {
    margin-top: 20px
}

.bestellung-wrapper form .formidable_row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.bestellung-wrapper form .formidable_row .element {
    width: 100%
}

.bestellung-wrapper form .formidable_row .strasse-21,
.bestellung-wrapper form .formidable_row .ort-24,
.bestellung-wrapper form .formidable_row .strasse-26,
.bestellung-wrapper form .formidable_row .ort-29 {
    width: 68%
}

.bestellung-wrapper form .formidable_row .nr-22,
.bestellung-wrapper form .formidable_row .plz-23,
.bestellung-wrapper form .formidable_row .nr-27,
.bestellung-wrapper form .formidable_row .plz-28 {
    width: 30%
}

.bestellung-wrapper form input[type="submit"] {
    margin-top: 30px
}

.bestellung-wrapper form .zusatzinformation-roofmap-61,
.bestellung-wrapper form .zusatzinformation-travelmap-62 {
    display: none
}

.bestellung-wrapper form [class*="zusatzinformation"] {
    width: 100% !important
}

@media screen and (max-width:1469.98px) {
    .bestellung-wrapper .formidable_column:first-of-type .element {
        width: 100%
    }
}

@media screen and (max-width:991.98px) {
    .bestellung form {
        margin-top: 0px
    }

    .bestellung h1 {
        font-size: 40px
    }

    .bestellung h2 {
        font-size: 30px !important;
        line-height: 40px !important
    }

    .bestellung .formidable_column:first-of-type .element {
        width: 30%
    }
}

@media screen and (max-width:767.98px) {
    .bestellung-wrapper .formidable_column:first-of-type .element {
        width: 100%
    }
}

.konfigurator {
    background-color: #1f1f1f
}

.konfigurator .start {
    min-height: 100vh;
    height: auto;
    position: relative
}

.konfigurator .start .wrapper {
    padding-top: 100px;
    align-items: center;
    flex-direction: row;
    min-height: 100vh
}

.konfigurator .start .left {
    margin-top: auto;
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-height: calc(100vh - 200px)
}

.konfigurator .start .left img {
    height: auto;
    max-height: calc(100vh - 200px);
    width: auto;
    max-width: 100%
}

.konfigurator .start .right {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    color: #ffffff
}

.konfigurator .start .right h1 {
    font-size: 100px;
    line-height: 100px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #036b8b
}

.konfigurator .start .right h1 span {
    color: #fff
}

.konfigurator .start .right h1 span .primary {
    color: #036b8b
}

.konfigurator .start .right p {
    font-size: 30px;
    line-height: 45px
}

.konfigurator .start #now {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 0);
    color: #f9b104;
    font-weight: 300;
    font-size: 25px;
    line-height: 47px;
    background-image: url(../../../../themes/myairprotector/img/icons/Pfeil.svg);
    background-repeat: no-repeat;
    background-size: 54px auto;
    background-position: 50% 40px;
    padding-bottom: 30px
}

.konfigurator .beschreibung {
    background-color: #fff
}

.konfigurator .beschreibung .wrapper {
    align-items: flex-start
}

.konfigurator .beschreibung .wrapper h2 {
    margin-bottom: 30px
}

.konfigurator .beschreibung ul {
    list-style-type: none;
    margin-bottom: 20px !important
}

.konfigurator .beschreibung ul li {
    padding: 10px 0 10px 20px;
    position: relative
}

.konfigurator .beschreibung ul li::before {
    content: '–';
    display: block;
    position: absolute;
    left: 0;
    top: 10px
}

.konfigurator .berechnen {
    background-color: #1f1f1f
}

.konfigurator .berechnen .wrapper {
    max-width: 1500px
}

.konfigurator .wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.konfigurator .wrapper .right {
    text-align: right;
    align-items: flex-end;
    padding-top: 70px
}

.konfigurator #cresponse {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 100px;
    grid-row-gap: 20px;
    align-items: flex-start
}

.konfigurator #cresponse p.bestellen {
    width: 100%;
    text-align: center;
    grid-column-start: 1;
    grid-column-end: 3
}

.konfigurator #cresponse ul {
    list-style-type: disc;
    padding-left: 25px !important;
    margin-top: 15px !important;
    width: 100%
}

.konfigurator #cresponse ul li {
    font-size: 25px;
    line-height: 34px
}

.konfigurator #cresponse ul li>div {
    display: grid;
    grid-template-columns: 1fr auto
}

.konfigurator .light-grey p {
    font-size: 25px;
    line-height: 34px
}

.konfigurator #configure {
    margin-top: 20px;
    margin-bottom: 25px;
    width: calc(100% - 125px)
}

.konfigurator #configure .form-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100px;
    font-size: 26px;
    line-height: 34px;
    position: relative;
    flex-wrap: wrap
}

.konfigurator #configure .form-group>div {
    justify-self: flex-end;
    display: none;
    align-items: center;
    justify-content: center;
    width: calc(100% - 380px);
    flex-wrap: wrap
}

.konfigurator #configure .form-group>div p {
    width: 100%;
    text-align: center;
    font-size: 24px;
    line-height: 30px;
    color: #fff
}

.konfigurator #configure .form-group>div input[type="number"] {
    width: 115px;
    padding: 10px;
    font-size: 26px;
    line-height: 34px;
    height: 50px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    margin: 5px;
    text-align: right
}

.konfigurator #configure .form-group>div input[type=number]::-webkit-outer-spin-button,
.konfigurator #configure .form-group>div input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.konfigurator #configure .form-group>div input[type=number] {
    -moz-appearance: textfield
}

.konfigurator #configure .form-group>div input[type="radio"] {
    height: 0;
    width: 0;
    opacity: 0
}

.konfigurator #configure .form-group>div input[type="radio"]:checked~label {
    border: 2px solid #036b8b;
    color: #036b8b
}

.konfigurator #configure .form-group>div div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px
}

.konfigurator #configure .form-group>div label {
    padding: 10px;
    width: 100%;
    max-width: 300px;
    border: 2px solid #fff;
    text-align: center;
    margin: 5px;
    color: #fff
}

.konfigurator #configure .form-group>div label:hover {
    cursor: pointer
}

.konfigurator #configure .form-group:first-of-type>div label {
    max-width: 100%
}

.konfigurator #configure .form-group:first-of-type>div input[type="radio"] {
    height: 0;
    width: 0
}

.konfigurator #configure .form-group:first-of-type>div input[type="radio"]:checked~label {
    border: 2px solid #036b8b;
    color: #fff
}

.konfigurator #configure .form-group>label {
    color: #036b8b;
    font-weight: 600;
    width: 300px;
    text-align: left
}

.konfigurator #configure .form-group>label:hover {
    cursor: pointer
}

.konfigurator #configure .form-group .configure_step {
    display: block;
    border-radius: 50%;
    background-color: #1f1f1f;
    color: #036b8b;
    font-weight: 600;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border: 2px solid #036b8b;
    z-index: 1
}

.konfigurator #configure .form-group .configure_step:hover {
    cursor: pointer
}

.konfigurator #configure .form-group::after {
    content: '';
    display: block;
    height: 100%;
    width: 2px;
    background-color: #036b8b;
    position: absolute;
    left: 30px;
    top: 0;
    z-index: 0
}

.konfigurator #configure .form-group:nth-of-type(1)>div {
    position: absolute;
    right: 0;
    height: 400px;
    top: 0;
    z-index: 1;
    align-content: center
}

.konfigurator #configure .form-group:nth-of-type(1)>div p {
    margin-bottom: 10px
}

.konfigurator #configure .form-group:nth-of-type(1)::after {
    height: 50%;
    top: 50%
}

.konfigurator #configure .form-group:nth-of-type(2)>div {
    position: absolute;
    right: 0;
    height: 400px;
    top: -100px;
    z-index: 2
}

.konfigurator #configure .form-group:nth-of-type(3)>div {
    position: absolute;
    right: 0;
    height: 400px;
    bottom: -100px;
    z-index: 3
}

.konfigurator #configure .form-group:nth-of-type(4)>div {
    position: absolute;
    right: 0;
    height: 400px;
    bottom: 0;
    z-index: 4
}

.konfigurator #configure .form-group:nth-of-type(4)>div label {
    width: 100%;
    text-align: center
}

.konfigurator #configure .form-group:nth-of-type(4)::after {
    height: 50%
}

.konfigurator #configure .form-group.active .configure_step {
    background-color: #036b8b;
    color: #1f1f1f
}

.konfigurator #configure .form-group.active>div {
    display: flex
}

.konfigurator #configure .form-actions {
    text-align: right
}

.konfigurator .ergebnis p:first-of-type {
    margin-bottom: 0 !important
}

.konfigurator .ergebnis p:nth-of-type(2) {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end
}

.konfigurator .conclusion {
    width: 100%;
    max-width: 650px
}

.konfigurator .conclusion>div {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 10px;
    margin-bottom: 10px;
    align-items: flex-end
}

.konfigurator .conclusion>div:first-of-type p:nth-of-type(odd) {
    margin-left: 28px
}

.konfigurator .conclusion>div:first-of-type p:first-of-type {
    margin-left: 0px
}

.konfigurator .conclusion>div:first-of-type p:nth-of-type(2),
.konfigurator .conclusion>div:first-of-type p:nth-of-type(4) {
    margin-right: -8px
}

.konfigurator .conclusion>div p {
    margin-bottom: 0
}

.konfigurator .conclusion>div p:nth-of-type(even) {
    text-align: right
}

.konfigurator .conclusion>div p sup {
    font-size: 14px
}

@media screen and (max-width:1419.98px) {

    .konfigurator .start .left,
    .konfigurator .start .right {
        width: 100%
    }

    .konfigurator .start .left {
        position: absolute;
        z-index: 0;
        bottom: 0
    }

    .konfigurator .start .left img {
        margin: 0 auto auto 0
    }
}

@media screen and (max-width:1199.98px) {
    .konfigurator .start .btn-yellow {
        display: inline-flex !important
    }

    .konfigurator .start .right {
        align-items: flex-end !important;
        order: 1;
        height: calc(-50%)
    }

    .konfigurator .start .right .btn-yellow {
        display: none
    }

    .konfigurator #cresponse {
        grid-template-columns: 1fr !important
    }

    .konfigurator #cresponse .bestellen {
        grid-column-start: 1;
        grid-column-end: 1
    }
}

@media screen and (max-width:1049.98px) {
    .konfigurator .start .left img {
        margin-left: 50px;
        opacity: 0.7
    }

    .konfigurator .start .right h1 {
        font-size: 60px !important
    }

    .konfigurator form {
        width: 100%
    }
}

@media screen and (max-width:991.98px) {
    .konfigurator .start .left img {
        margin-left: 0px
    }

    .konfigurator #cresponse h2 {
        font-size: 40px !important;
        line-height: 50px !important
    }
}

@media screen and (max-width:899.98px) {
    .konfigurator form {
        z-index: 1
    }

    .konfigurator form .form-group {
        height: auto;
        min-height: 100px
    }

    .konfigurator form .form-group>div {
        width: 100%;
        height: auto !important;
        position: relative !important;
        top: 0 !important;
        bottom: 0 !important
    }

    .konfigurator form .form-group.active::after {
        display: none
    }

    .konfigurator form .form-group>label {
        font-size: 20px;
        width: auto
    }

    .konfigurator form .form-actions {
        text-align: left
    }

    .konfigurator .start .left {
        order: 2;
        position: relative !important
    }

    .konfigurator .start .left img {
        margin: 0 auto auto auto
    }

    .konfigurator .start .right {
        order: 1
    }

    .konfigurator #configure {
        width: 100% !important
    }

    .konfigurator #configure .form-group {
        height: auto;
        margin: 20px 0
    }

    .konfigurator #configure .form-group.active .configure_step {
        background-color: #1f1f1f;
        color: #036b8b
    }

    .konfigurator #configure .form-group>label {
        width: auto
    }

    .konfigurator #configure .form-group>div {
        position: relative !important;
        height: auto !important;
        top: 0 !important;
        display: flex;
        width: 100%;
        margin: 10px 0
    }

    .konfigurator #configure .form-group::after {
        display: none
    }
}

@media screen and (max-width:575.98px) {
    .konfigurator .start .right h1 {
        font-size: 40px !important;
        line-height: 50px !important
    }

    .konfigurator .start p {
        font-size: 20px !important;
        line-height: 27px !important
    }

    .konfigurator form .form-group>div {
        padding: 10px 0
    }

    .konfigurator form .form-group span {
        display: block
    }
}

.feedback-wrapper {
    width: 100%;
    max-width: 1760px;
    padding: 100px 80px;
    margin: auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap
}

.feedback-wrapper .formidable .formidable_message {
    color: red;
    display: block !important;
    margin-bottom: 15px
}

.feedback-wrapper form {
    margin-top: 0 !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.feedback-wrapper form .has-error textarea,
.feedback-wrapper form .has-error input {
    border-color: red !important
}

.feedback-wrapper form .has-error span.error {
    display: none
}

.feedback-wrapper form .width-6 {
    width: 48%
}

.feedback-wrapper form .formidable_column {
    padding: 0
}

.feedback-wrapper form input[type=submit] {
    margin-top: 30px
}

.feedback-wrapper form .file_upload {
    border: 1px solid #383737 !important;
    height: 98px
}

.feedback-wrapper form .file_upload .dz-message {
    padding: 0
}

.feedback-wrapper form .file_upload .dz-clickable {
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex
}

.feedback-wrapper form .file_upload .dz-preview {
    margin: 0 10px;
    height: 75px;
    min-height: 1px
}

.feedback-wrapper form .file_upload .dz-preview .dz-image {
    height: 75px
}

.feedback-wrapper form .file_upload .dz-preview .dz-details {
    padding: 5px
}

.feedback-wrapper form a {
    cursor: pointer;
    color: #036b8b;
    text-decoration: underline
}

.feedback-wrapper .success {
    color: #036b8b;
    margin: 30px 0;
    font-weight: 600;
    font-size: 25px
}

.feedback-wrapper .alert-success {
    border: 0 !important;
    background-color: transparent !important;
    margin: 0 !important;
    padding: 0 !important
}

.feedback-wrapper .small {
    font-size: 12px;
    line-height: 20px
}

.feedback-wrapper label {
    line-height: 26px;
    color: #383737;
    margin: 10px 0;
    display: block
}

.feedback-wrapper label .required {
    display: none
}

.feedback-wrapper input:not([type="submit"]),
.feedback-wrapper select,
.feedback-wrapper textarea {
    border: 1px solid #383737 !important;
    padding: 10px 5px;
    border: 0;
    line-height: 20px;
    font-size: 20px;
    font-family: inherit;
    border-radius: 4px;
    width: 100%;
    margin: 0 !important
}

.feedback-wrapper .element.checkbox label {
    margin-top: 0 !important;
    position: relative;
    padding-left: 30px
}

.feedback-wrapper .element.checkbox input[type='checkbox'] {
    position: absolute;
    left: 0;
    top: 3px
}

.feedback-wrapper h1 {
    font-size: 60px
}

.feedback-wrapper .top,
.feedback-wrapper .bottom,
.feedback-wrapper .form-actions {
    width: 100%
}

.feedback-wrapper .width-6:first-of-type,
.feedback-wrapper .width-6:last-of-type {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column
}

.feedback-wrapper .sterne-35,
.feedback-wrapper .stars-100 {
    flex-direction: row !important;
    flex-wrap: wrap
}

.feedback-wrapper .sterne-35 .w20,
.feedback-wrapper .stars-100 .w20 {
    width: auto
}

.feedback-wrapper .sterne-35 .input>div,
.feedback-wrapper .stars-100 .input>div {
    display: flex
}

.feedback-wrapper .sterne-35 label,
.feedback-wrapper .stars-100 label {
    margin: 0 0 5px 0 !important
}

.feedback-wrapper .sterne-35 label img,
.feedback-wrapper .stars-100 label img {
    height: auto;
    width: 40px;
    display: block;
    align-self: center
}

.feedback-wrapper .sterne-35 .element,
.feedback-wrapper .stars-100 .element {
    flex-direction: row !important
}

.feedback-wrapper .sterne-35 input[type=radio],
.feedback-wrapper .stars-100 input[type=radio] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.feedback-wrapper .sterne-35 input[type=radio]+img+img,
.feedback-wrapper .stars-100 input[type=radio]+img+img {
    display: none;
    cursor: pointer
}

.feedback-wrapper .sterne-35 input[type=radio]+img,
.feedback-wrapper .stars-100 input[type=radio]+img {
    cursor: pointer
}

.feedback-wrapper .sterne-35 input[type=radio]:checked+img+img,
.feedback-wrapper .stars-100 input[type=radio]:checked+img+img {
    display: block !important
}

.feedback-wrapper .sterne-35 input[type=radio]:checked+img,
.feedback-wrapper .stars-100 input[type=radio]:checked+img {
    display: none !important
}

.feedback-wrapper h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 5px
}

.feedback-wrapper .width-6:first-of-type .formidable_row {
    height: 100%
}

.feedback-wrapper .width-6:first-of-type .element:nth-last-of-type(2) {
    height: calc(100% - 294px);
    display: flex;
    flex-direction: column
}

.feedback-wrapper .width-6:first-of-type .element:nth-last-of-type(2) .input {
    height: 100%
}

.feedback-wrapper .width-6:first-of-type .element:nth-last-of-type(2) textarea {
    height: 100%;
    margin-bottom: 5px;
    resize: none
}

.feedback-wrapper .width-6:nth-of-type(2) h2:nth-of-type(2) {
    margin-top: 20px;
    margin-bottom: 10px
}

.feedback-wrapper .width-6:nth-of-type(2) .element:last-of-type label {
    margin: 20px 0 0 0
}

.feedback-wrapper .width-6:nth-of-type(2) .element:last-of-type {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column
}

.feedback-wrapper .width-6:nth-of-type(2) .element:last-of-type input[type="radio"],
.feedback-wrapper .width-6:nth-of-type(2) .element:last-of-type input[type="checkbox"] {
    margin-right: 10px;
    width: auto
}

.feedback-wrapper .width-6:nth-of-type(2) .element:last-of-type label {
    position: relative;
    padding-left: 30px
}

.feedback-wrapper .width-6:nth-of-type(2) .element:last-of-type input[type='checkbox'],
.feedback-wrapper .width-6:nth-of-type(2) .element:last-of-type input[type='radio'] {
    position: absolute;
    left: 0;
    top: 5px
}

.feedback-wrapper .width-6:nth-of-type(2) .element:last-of-type:nth-of-type(2) label {
    margin-top: 0 !important
}

.feedback-wrapper .width-6:nth-of-type(2) .element .checkbox label {
    position: relative;
    padding-left: 30px
}

.feedback-wrapper .width-6:nth-of-type(2) .element input[type='checkbox'],
.feedback-wrapper .width-6:nth-of-type(2) .element input[type='radio'] {
    position: absolute;
    left: 0;
    top: 5px;
    margin-right: 10px;
    width: auto
}

.feedback-wrapper input {
    margin-bottom: 10px
}

.feedback-wrapper .formidable_column:last-of-type .element {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column
}

.feedback-wrapper .formidable_column:last-of-type .element input[type="radio"],
.feedback-wrapper .formidable_column:last-of-type .element input[type="checkbox"] {
    margin-right: 10px;
    width: auto
}

.feedback-wrapper .formidable_column:last-of-type .element label {
    position: relative;
    padding-left: 30px
}

.feedback-wrapper .formidable_column:last-of-type .element input[type='checkbox'],
.feedback-wrapper .formidable_column:last-of-type .element input[type='radio'] {
    position: absolute;
    left: 0;
    top: 5px
}

.feedback-wrapper .formidable_column:last-of-type .element:nth-of-type(2) label {
    margin-top: 0 !important
}

.feedback-wrapper .formidable_column:last-of-type a,
.feedback-wrapper .formidable_column:last-of-type a:hover {
    cursor: pointer;
    color: #036b8b;
    text-decoration: underline
}

@media screen and (max-width:1469.98px) {
    .feedback .top .width-6:first-of-type .element {
        width: 100%
    }
}

@media screen and (max-width:1219.98px) {

    .feedback .wrapper .width-6:first-of-type,
    .feedback .wrapper .width-6:last-of-type {
        width: 100% !important
    }

    .feedback .width-6:first-of-type .element:last-of-type {
        height: auto
    }

    .feedback .width-6:first-of-type .element:last-of-type textarea {
        height: 200px
    }

    .feedback .width-6:last-of-type h2 {
        margin-top: 20px
    }
}

@media screen and (max-width:991.98px) {
    .feedback .wrapper form {
        margin-top: 0px
    }

    .feedback h1 {
        font-size: 40px;
        line-height: 46px
    }

    .feedback h2 {
        font-size: 30px !important;
        line-height: 40px !important
    }

    .feedback .top .width-6:first-of-type .element {
        width: 30%
    }
}

@media screen and (max-width:767.98px) {
    .feedback .top .width-6:first-of-type .element {
        width: 100%
    }
}

.page-template-productpage .info {
    background-color: #1f1f1f;
    color: white
}

.page-template-productpage .info .tabs {
    position: relative;
    overflow: hidden
}

.page-template-productpage .info .tabs .primary {
    margin-top: 50px;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700
}

.page-template-productpage .info .tabs ul li {
    display: flex;
    align-items: center;
    margin: 10px 0 !important
}

.page-template-productpage .info .tabs ul li img {
    width: 50px;
    margin-right: 15px
}

.page-template-productpage .info .tabs .simpleTabs {
    transform: none !important
}

.page-template-productpage .info .tabs .simpleTabsContent ul li a {
    color: #f9b104;
    display: flex;
    align-items: center;
    margin: 0 0 10px 0
}

.page-template-productpage .info .tabs .simpleTabsContent ul li a:hover {
    text-decoration: underline
}

.page-template-productpage .anwendungsgebiete .applications {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
    padding: 50px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.page-template-productpage .anwendungsgebiete .applications img {
    width: 76px;
    margin: 5px 35px
}

.page-template-productpage #produktseite.start .wrapper {
    padding-top: 200px
}

.page-template-productpage #produktseite.start .wrapper .slider-wrapper,
.page-template-productpage #produktseite.start .wrapper .slider-text {
    width: calc(50% - 25px);
    max-height: calc(100vh - 200px)
}

.page-template-productpage #produktseite.start .wrapper .slider-wrapper img,
.page-template-productpage #produktseite.start .wrapper .slider-text img {
    max-width: 100%;
    width: auto;
    height: auto;
    margin: auto
}

.page-template-productpage #produktseite.start .wrapper .slider-text {
    color: white;
    text-align: right
}

.page-template-productpage #produktseite.start .wrapper .slider-text h1 {
    color: #036b8b
}

.page-template-productpage #produktseite.start .wrapper .slider-wrapper {
    display: flex;
    justify-content: space-between
}

.page-template-productpage #produktseite.start .wrapper .slider-wrapper #single-product-slider-nav {
    order: 1;
    width: calc((100% - 35px) / 4);
    padding-bottom: 50px
}

.page-template-productpage #produktseite.start .wrapper .slider-wrapper #single-product-slider-nav .slick-list {
    max-height: 100%
}

.page-template-productpage #produktseite.start .wrapper .slider-wrapper #single-product-slider-nav img {
    height: 170px;
    object-fit: cover;
    margin: 5px 0;
    user-select: all
}

.page-template-productpage #produktseite.start .wrapper .slider-wrapper #single-product-slider-nav img:hover {
    cursor: pointer
}

.page-template-productpage #produktseite.start .wrapper .slider-wrapper #single-product-slider-nav .slick-disabled {
    display: none !important
}

.page-template-productpage #produktseite.start .wrapper .slider-wrapper #single-product-slider-nav .slick-prev {
    left: 50%;
    top: -25px;
    width: 54px;
    height: 30px;
    color: transparent;
    background-image: url('../../../../themes/myairprotector/img/icons/Pfeil.svg');
    background-repeat: no-repeat;
    background-size: 100% auto;
    transform: rotate(180deg) translate(50%, 50%)
}

.page-template-productpage #produktseite.start .wrapper .slider-wrapper #single-product-slider-nav .slick-prev::before {
    display: none
}

.page-template-productpage #produktseite.start .wrapper .slider-wrapper #single-product-slider-nav .slick-next {
    right: 50%;
    top: auto;
    bottom: 25px;
    width: 54px;
    height: 30px;
    color: transparent;
    background-image: url('../../../../themes/myairprotector/img/icons/Pfeil.svg');
    background-repeat: no-repeat;
    background-size: 100% auto;
    transform: translate(50%, 50%)
}

.page-template-productpage #produktseite.start .wrapper .slider-wrapper #single-product-slider-nav .slick-next::before {
    display: none
}

.page-template-productpage #produktseite.start .wrapper .slider-wrapper #single-product-slider {
    width: calc(((100% - 35px) / 4) * 3);
    order: 2;
    display: flex;
    align-items: center
}

.page-template-productpage #produktseite.start .wrapper .slider-wrapper #single-product-slider img {
    max-height: calc(100vh - 200px);
    object-fit: contain
}

@media screen and (max-width:1300px) {
    .page-template-productpage #produktseite.start .wrapper .slider-text h1 {
        font-size: 60px !important
    }
}

@media screen and (max-width:1000px) {
    .page-template-productpage #produktseite.start {
        height: auto !important
    }

    .page-template-productpage #produktseite.start .wrapper .slider-wrapper,
    .page-template-productpage #produktseite.start .wrapper .slider-text {
        width: 100%
    }
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 200;
    src: url('../../../../themes/myairprotector/fonts/nunito-v25-latin-200.eot');
    src: local(''), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-200.eot%3F') format('embedded-opentype'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-200.woff2.html') format('woff2'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-200.woff') format('woff'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-200.ttf') format('truetype'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-200.svg') format('svg')
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 300;
    src: url('../../../../themes/myairprotector/fonts/nunito-v25-latin-300.eot');
    src: local(''), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-300.eot%3F') format('embedded-opentype'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-300.woff2.html') format('woff2'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-300.woff') format('woff'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-300.ttf') format('truetype'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-300.svg') format('svg')
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    src: url('../../../../themes/myairprotector/fonts/nunito-v25-latin-regular.eot');
    src: local(''), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-regular.eot%3F') format('embedded-opentype'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-regular.woff2.html') format('woff2'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-regular.woff') format('woff'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-regular.ttf') format('truetype'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-regular.svg') format('svg')
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 600;
    src: url('../../../../themes/myairprotector/fonts/nunito-v25-latin-600.eot');
    src: local(''), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-600.eot%3F') format('embedded-opentype'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-600.woff2.html') format('woff2'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-600.woff') format('woff'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-600.ttf') format('truetype'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-600.svg') format('svg')
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 800;
    src: url('../../../../themes/myairprotector/fonts/nunito-v25-latin-800.eot');
    src: local(''), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-800.eot%3F') format('embedded-opentype'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-800.woff2.html') format('woff2'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-800.woff') format('woff'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-800.ttf') format('truetype'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-800.svg') format('svg')
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    src: url('../../../../themes/myairprotector/fonts/nunito-v25-latin-700.eot');
    src: local(''), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-700.eot%3F') format('embedded-opentype'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-700.woff2.html') format('woff2'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-700.woff') format('woff'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-700.ttf') format('truetype'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-700.svg') format('svg')
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 900;
    src: url('../../../../themes/myairprotector/fonts/nunito-v25-latin-900.eot');
    src: local(''), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-900.eot%3F') format('embedded-opentype'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-900.woff2.html') format('woff2'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-900.woff') format('woff'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-900.ttf') format('truetype'), url('../../../../themes/myairprotector/fonts/nunito-v25-latin-900.svg') format('svg')
}

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialicons/v139/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2')
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased
}

html,
body {
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 27px;
    color: #383737;
    height: 100%;
    margin: 0;
    scroll-behavior: smooth;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto
}

* {
    box-sizing: border-box
}

*:focus {
    outline: 0 !important
}

#loader {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #383737;
    display: flex;
    align-items: center;
    justify-content: center
}

main {
    overflow: hidden
}

.CookieDeclaration {
    display: none
}

.page-type-page {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.page-type-page #footer {
    margin-top: auto
}

.main-wrapper {
    width: 100%;
    max-width: 1760px;
    padding: 100px 80px;
    margin: auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column
}

.main-wrapper h1 {
    font-size: 70px;
    line-height: 109px;
    font-weight: 400
}

.main-wrapper h2 {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 35px;
    font-weight: 200
}

.default-spacer {
    height: 130px
}

#vivid-simple-accordion-210 {
    position: relative
}

#vivid-simple-accordion-210 #foerderung {
    position: absolute;
    top: -200px;
    height: 0;
    width: 0
}

.vivid-simple-accordion {
    width: 100%
}

.vivid-simple-accordion .simple-accordion-group {
    margin: 10px 0 20px 0;
    display: flex;
    flex-direction: column
}

.vivid-simple-accordion .simple-accordion-title-shell {
    background-color: #1f1f1f;
    color: #fff;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    border: none;
    text-align: left;
    text-transform: uppercase;
    outline: none;
    font-size: 20px;
    line-height: 26px;
    transition: 0.4s;
    background-image: url('../../../../themes/myairprotector/img/icons/Pfeil.svg');
    background-repeat: no-repeat;
    background-size: 30px auto;
    background-position: right 20px top 20px
}

.vivid-simple-accordion .simple-accordion-title-shell:hover {
    cursor: pointer;
    background-image: url('../../../../themes/myairprotector/img/icons/Pfeil_gefuellt.svg')
}

.vivid-simple-accordion .simple-accordion-title-shell *::before {
    display: none
}

.vivid-simple-accordion .simple-accordion-group.open .simple-accordion-title-shell,
.vivid-simple-accordion .simple-accordion-title-shell:hover {
    background-color: #383737;
    background-image: url('../../../../themes/myairprotector/img/icons/Pfeil_gefuellt.svg')
}

.vivid-simple-accordion .simple-accordion-description {
    width: 100%;
    overflow: hidden;
    transition: max-height .2s ease-out
}

.vivid-simple-accordion .simple-accordion-description div {
    padding: 15px
}

.vivid-simple-accordion .simple-accordion-description h3 {
    color: #fff;
    margin-bottom: 20px;
    margin-top: 15px;
    margin-left: 20px
}

.vivid-simple-accordion .simple-accordion-description ul+h3 {
    margin-top: 30px
}

.vivid-simple-accordion .simple-accordion-description ul {
    list-style-type: none;
    margin-bottom: 20px !important
}

.vivid-simple-accordion .simple-accordion-description ul li {
    padding: 10px 0 10px 20px;
    position: relative
}

.vivid-simple-accordion .simple-accordion-description ul li::before {
    content: '–';
    display: block;
    position: absolute;
    left: 0;
    top: 10px
}

.vivid-simple-accordion .simple-accordion-description ul li a {
    display: flex;
    color: #f9b104
}

.vivid-simple-accordion .simple-accordion-description img {
    width: 50px;
    margin-right: 15px
}

.tns-outer .tns-liveregion {
    display: none
}

.ccm-page-id-246 form {
    width: 100%
}

.ccm-page-id-246 form h1 {
    text-align: center
}

.ccm-page-id-246 form .element {
    margin: auto;
    max-width: 500px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column
}

.ccm-page-id-246 form .element label {
    margin: 10px 0
}

.ccm-page-id-246 form .element label .required {
    display: none
}

.ccm-page-id-246 form .element input[type="text"],
.ccm-page-id-246 form .element select,
.ccm-page-id-246 form .element textarea {
    padding: 10px 5px;
    border: 1px solid #383737;
    line-height: 20px;
    font-size: 20px;
    font-family: inherit;
    border-radius: 4px;
    width: 100%;
    margin: 0
}

.ccm-page-id-246 form .element .has-error input[type="text"],
.ccm-page-id-246 form .element .has-error select,
.ccm-page-id-246 form .element .has-error textarea {
    border: 1px solid #f00
}

.ccm-page-id-246 form .element .has-error .text-danger {
    display: none
}

.ccm-page-id-246 form input[type=submit] {
    display: block;
    width: auto;
    margin: 30px auto 0 auto
}

.pop-up {
    background-color: rgba(31, 31, 31, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    z-index: 110
}

.pop-up .close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 30px;
    font-size: 50px;
    color: #fff;
    cursor: pointer
}

.pop-up .checkbox label {
    display: flex
}

.pop-up .checkbox label input[type=checkbox] {
    width: auto;
    top: 5px;
    margin-right: 10px;
    position: relative
}

.pop-up .checkbox label p {
    display: inline-block
}

.pop-up .checkbox label p a {
    color: #036b8b
}

.pop-up .wrapper {
    height: 100vh;
    padding: 50px 80px
}

.pop-up .wrapper .scroll-container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center
}

.pop-up form {
    width: 100%;
    max-width: 500px;
    margin: auto
}

.pop-up form h2 {
    font-size: 45px;
    line-height: 54px
}

.pop-up form .element {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column
}

.pop-up form .element label {
    color: #fff;
    margin: 10px 0
}

.pop-up form .element label .required {
    display: none
}

.pop-up form .element input,
.pop-up form .element select,
.pop-up form .element textarea {
    padding: 10px 5px;
    border: 1px solid #fff;
    line-height: 20px;
    font-size: 20px;
    font-family: inherit;
    border-radius: 4px;
    width: 100%;
    margin: 0
}

.pop-up form .element .has-error input,
.pop-up form .element .has-error select,
.pop-up form .element .has-error textarea {
    border: 1px solid #f00
}

.pop-up form .element .has-error .text-danger {
    display: none
}

.pop-up form input[type=submit] {
    display: block;
    width: auto;
    margin: 30px auto 0 auto
}

.pop-up .formidable_message.alert-success {
    margin: auto;
    background-color: transparent !important;
    border: 0 !important;
    color: #f9b104;
    text-align: center
}

@media screen and (max-width:991.98px) {
    .main-wrapper {
        padding: 50px 30px !important
    }
}

@media screen and (max-width:767.98px) {
    h2 {
        font-size: 30px !important;
        line-height: 40px !important
    }
}






/* ===== ROADMAP SECTION ===== */
.roadmap {
    padding: 100px 0;
    background-color: #1F1F1F;
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #EBEBEB;
}

.roadmap-item {
    position: relative;
    padding-bottom: 50px;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #036B8B;
    z-index: 1;
}

.roadmap-item.completed::before {
    background-color: #036B8B;
}

.roadmap-item.active::before {
    background-color: #036B8B;
}

.roadmap-content {
    width: 45%;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.roadmap-item.first .roadmap-content {
    background-color: #036B8B;
}


.roadmap-item.first .roadmap-date {
    background-color: white;
    color: #1F1F1F;
}

.roadmap-item.first h3 {
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.roadmap-item.first p {
    color: white !important;
    font-size: 14px;
    line-height: 22px;
}


.roadmap-item.second .roadmap-content {
    background-color: #F9B104;
}

.roadmap-item.second .roadmap-date {
    background-color: #1F1F1F;
    color: white;
}

.roadmap-item.second h3 {
    color: #1F1F1F;
    font-size: 24px;
    font-weight: 600;
}

.roadmap-item.second p {
    color: #1F1F1F !important;
    font-size: 14px;
    line-height: 22px;
}

.roadmap-item.second::before {
    background-color: #F9B104;
}



.roadmap-item.third .roadmap-content {
    background-color: #EBEBEB;
}

.roadmap-item.third .roadmap-date {
    background-color: #F9B104;
    color: #1F1F1F;
}

.roadmap-item.third::before {
    background-color: #EBEBEB;
}


.roadmap-item.third h3 {
    color: #1F1F1F;
    font-size: 24px;
    font-weight: 600;
}

.roadmap-item.third li {
    color: #757575 !important;
}

.roadmap-item.third p {
    color: #1F1F1F !important;
    font-size: 14px;
    line-height: 22px;
}




.roadmap-item:nth-child(odd) .roadmap-content {
    margin-left: auto;
}

.roadmap-date {
    display: inline-block;
    padding: 5px 10px;
    background-color: #036B8B;
    color: white;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.roadmap-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.roadmap-content ul {
    padding-left: 20px;
    list-style-type: disc;
}

.roadmap-content ul li {
    color: white;
    font-size: 18px;
    margin-bottom: 5px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;

}

.section-header h2 {
    color: white;
}


.whitepaper-section {
    background-color: #f0f0f0;
    padding: 4rem 1rem;
    text-align: center;
    /* blue border like in image */
}

.whitepaper-title {
    font-size: 3rem;
    font-weight: 500;
    color: #222;
    margin-bottom: 1.5rem;
}

.whitepaper-description {
    font-size: 1.5rem;
    max-width: 1100px;
    margin: 0 auto 2.5rem;
    color: #222;
    line-height: 1.6;
}

.whitepaper-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    transition: background-color 0.3s ease;
}

.btn-de {
    background-color: #036B8B;
}

.btn-en {
    background-color: #F9B104;
}


.btn-en:hover {
    background-color: #ffffff;
}

.btn-de:hover {
    background-color: #004f66;
}



.newsletter-section {
    background-color: #1c1c1c;
    padding: 4rem 1rem;
    color: #fff;
    text-align: center;
}

.newsletter-content {
    max-width: 900px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.newsletter-title .highlight {
    color: #007398;
    /* Türkisblau aus dem Screenshot */
}

.newsletter-subtitle {
    color: #c0c0c0;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 35px;
}

.newsletter-form input[type="email"] {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    width: 60%
}

.newsletter-form button {
    background-color: #f7a700;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #cc8800;
}


@media (max-width: 600px) {
    .newsletter-title {
        font-size: 2.2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}









/* ===== responsive ===== */


/* ===== RESPONSIVE STYLES ===== */

/* Large Devices (Desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .hero h1 {
        font-size: 3rem;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-image,
    .about-text {
        flex: none;
        width: 100%;
    }

    .tokenomics-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tokenomics-center {
        position: static;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
}

/* Medium Devices (Tablets, less than 992px) */
@media (max-width: 991.98px) {
    :root {
        --font-size-xxl: 2.75rem;
        --font-size-xl: 2.25rem;
        --font-size-lg: 1.75rem;
    }

    .hero .container {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }

    .hero p {
        margin: 0 auto 2rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: white;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 30px 30px;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1000;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-item {
        padding: 30px;
        gap: 20px;
    }

    .vision-quote {
        padding: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-link-group {
        width: calc(50% - 15px);
    }

    .roadmap-timeline::before {
        left: 40px;
    }

    .roadmap-item::before {
        left: 40px;
    }

    .roadmap-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
}

/* Small Devices (Landscape Phones, less than 768px) */
@media (max-width: 767.98px) {
    :root {
        --font-size-xxl: 2.5rem;
        --font-size-xl: 2rem;
        --font-size-lg: 1.5rem;
        --font-size-md: 1.125rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 25px 20px;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .vision-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        gap: 20px;
    }

    .vision-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }

    .vision-quote {
        padding: 30px 25px;
    }

    .vision-quote blockquote {
        font-size: var(--font-size-md);
    }

    .token-main-info {
        padding: 40px 30px;
    }

    .supply-number {
        font-size: 2rem;
    }

    .blockchain-info {
        flex-direction: column;
        gap: 10px;
    }

    .detail-card {
        padding: 25px;
        gap: 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .partners-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Extra Small Devices (Portrait Phones, less than 576px) */
@media (max-width: 575.98px) {
    .nav-buttons {
        display: none;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .footer-link-group {
        width: 100%;
    }



    .benefit-card {
        padding: 20px 15px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .benefit-card h3 {
        font-size: var(--font-size-base);
        margin-bottom: 10px;
    }

    .benefit-card p {
        font-size: var(--font-size-sm);
    }

    .vision-item {
        padding: 20px;
        gap: 15px;
    }

    .vision-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .vision-description p {
        font-size: var(--font-size-sm);
    }

    .vision-quote {
        padding: 25px 20px;
    }

    .vision-quote blockquote {
        font-size: var(--font-size-base);
    }

    .quote-icon i {
        font-size: 2rem;
    }

    .token-main-info {
        padding: 30px 20px;
    }

    .token-logo {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .supply-number {
        font-size: 1.8rem;
    }

    .token-main-info h3 {
        font-size: var(--font-size-lg);
    }

    .detail-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin: 0 auto;
    }

    .card-content h4 {
        font-size: var(--font-size-base);
    }

    .card-content p {
        font-size: var(--font-size-md);
    }

    .card-content span {
        font-size: var(--font-size-xs);
    }

    .roadmap-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        padding: 15px;
    }

    .roadmap-timeline::before,
    .roadmap-item::before {
        left: 30px;
    }
}

.video-grid {
    display: grid;
    padding: 50px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background-color: white;
    /* 16:9 Aspect Ratio */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}


@media screen and (min-width: 1000px) {
    .products .product-slider {
        gap: 300px;
        margin-top: -120px;
    }
}