/* SECTION */
.mining-section {
    background: #ffffff;
    padding: 80px 20px;
}

/* CONTAINER */
.mining-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* GRID */
.mining-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* IMAGE */
.mining-image {
    flex: 1;
    text-align: center;
}

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

/* CONTENT */
.mining-content {
    flex: 1;
}

.mining-content h2 {
    color: #c2d600;
    font-size: 36px;
    margin-bottom: 20px;
}

.mining-content p {
    color: #333;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .mining-grid {
        flex-direction: column;
        text-align: center;
    }

    .mining-content h2 {
        font-size: 28px;
    }
}


/*slides*/
.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}