﻿.kadrHeader {
    height: 100vh;
    position: relative;
    top: 2rem;
    overflow: hidden;
    height: 900px;
}

.product_info {
    background-color: #f5f5f5;
    border-radius: 15px;
}

.product_text {
    padding: 3rem;
}

.product_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
    font-family: sans-serif;
    gap: 30px 30px;
}

.btn_product {
    position: relative;
    left: 50%;
    right: 50%;
    transform: translate(-50%, 0);
    margin: 50px 0;
}

.slider {
    position: relative;
    width: 100%;
    height: 686px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s;
}

    .slide:first-child {
        opacity: 1;
    }

@media (max-width: 440px) {
    /* Adjustments for Mobile Devices (320px to 425px) */
    .product_list {
        display: block;
    }

        .product_list li {
            margin-top: 1.5rem;
        }

    .img_slider {
        display: none;
    }

    .kadrHeader {
        padding: 0;
    }
}

@media (min-width: 768px) {
    /* Adjustments for Tablets (768px) */

    .product_info {
        margin-top: 5rem;
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {
    /* Adjustments for Laptops (1024px to 1440px) */

    .product_info {
        margin-top: 5rem;
    }
}
