/*------------------------------------------------------- HERO-SECTION: */

.hero-home {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #DCE8F5 100%);
}

.hero-trust i {
    color: #ff8c00;
}

.hero-img {
    box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.2);
    border-radius: 8px;
}

.hero-image {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50vw;
    background-image: url("../images/senior-phone-happy.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/*------------------------------------------------------- PRODUCT-SECTION: */

.product-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

/* Scrollbar verstecken */

.product-slider::-webkit-scrollbar {
    display: none;
}

.product-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Produkt Card */

.product-card {
    min-width: 290px;
    max-width: 290px;
    height: 350px;
    border: 1px solid #DCE8F5;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #DCE8F5 100%);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    scroll-snap-align: start;
    transition: .25s;
    word-break: break-word;
    overflow-wrap: break-word;
    display: flex;
    flex-direction: column;
}

.product-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 12px;
}

.product-card h6 {
    font-size: 15px;
    color: #001f3f;
    font-weight: 600;
}

.product-card button {
    margin-top: auto;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #DCE8F5;
    cursor: pointer;
    transition: 0.2s;
}

.slider-dot.active {
    background: #001f3f;
    transform: scale(1.2);
}

/*------------------------------------------------------- REQUIREMENT-SECTION: */

.requirement {
    background-color: #DCE8F5;
}

.requirement-content-wrapper {
    background: #fff;
    color: #001f3f;
    border-radius: 12px;
    padding: 20px;
}

/*------------------------------------------------------- PROCESS STEPS */

.process-steps {
    background: linear-gradient(180deg, #ffffff 0%, #DCE8F5 100%);
    border: 1px solid #DCE8F5;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: #ff8c00;
    line-height: 1;
    min-width: 70px;
}

.process-content h5 {
    font-weight: 600;
    color: #001f3f;
    margin-bottom: 5px;
}

.process-content p {
    margin: 0;
    color: #555;
}

/*------------------------------------------------------- QUALITY SECTION */

.quality {
    position: relative;
    color: white;
    background: url("../images/hands-sanitizer.jpg") rgba(0, 0, 0, 0.65);
    background-blend-mode: multiply;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Intro */

.quality-intro {
    max-width: 650px;
    color: rgba(255,255,255,0.9);
}

/* GRID */

.quality-grid .col-lg-6 {
    display: flex;
}

/* CARD */

.quality-card {
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 30px 25px;
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;

    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

/* Hover */

.quality-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.14);
}

/* ICON */

.quality-card i {
    font-size: 30px;
    color: #ff8c00;
    margin-bottom: 12px;
}

/* TITLE */

.quality-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* TEXT */

.quality-card p {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/*------------------------------------------------------- FAQ SECTION */

.accordion-item {
    border: none;
    border-bottom: 1px solid #DCE8F5;
}

.accordion-button {
    font-weight: 600;
    color: #001f3f;
    background: #fff;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #001f3f;
    background: #fff;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    color: #555;
}

/*------------------------------------------------------- MEDIAQUERY: */

@media screen and (min-width: 992px) {
    .hero-home, .products, .requirement, .process, .quality, .faq {
        padding: 100px 0;
    }

    .requirement-content-wrapper {
        min-height: 200px;
    }
}

@media screen and (max-width: 991px) {
    .hero-home, .products, .requirement, .process, .quality, .faq {
        padding: 50px 0;
    }

    .hero-image {
        display: none;
    }

    .process-steps {
        padding: 50px 20px;
    }
}

@media screen and (max-width: 575.99px) {
    .hero-home {
        padding: 0 0 50px;
    }

    .hero-img {
        box-shadow: none;
        border-radius: 0px;
    }

    .hero-img-container {
        padding: 0;
    }
}