* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.production {
    margin:auto;
    text-align: center;
}

.performance {
    background: linear-gradient(135deg, #1E73FF 0%, #1e40af 100%);
    color: white;
    padding: 70px 6%;
    text-align: center;
    max-width: 1400px;
    margin: 60px auto;
    border-radius: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.production h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.production .desc {
    width: 70%;
    margin: 10px auto 100px auto;
    line-height: 1.7rem;
    font-size: 17px;
}

/* BLOCKS */
.block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 60px auto;
    width: 85%;
}

.block.reverse {
    flex-direction: row-reverse;
}

/* ICON */
.icon img {
    width: 100px;
    filter: brightness(0) saturate(100%);
}

/* CONTENT */
.content {
    text-align: left;
    width: 70%;
}

.content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.content p {
    font-size: 17px;
    line-height: 1.7rem;
}

/* HORIZONTAL LINE */
.line {
    width: 85%;
    margin: 20px auto;
    height: 3px;
    background: white;
    border-radius: 6px;
    position: relative;
}

.line::after,
.line::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 20px;
    background: #fff;
    border-radius: 20px;
    top: -9px;
}

.line::before {
    left: 0;
}

.line::after {
    right: 0;
}

@media (max-width: 992px) {
    .performance {
        padding: 50px 5%;
        margin: 40px 16px;
        border-radius: 44px;
    }
    .block {
        width: 92%;
        gap: 24px;
        margin: 40px auto;
    }
}

@media (max-width: 576px) {
    .performance {
        padding: 40px 20px;
        margin: 24px 12px;
        border-radius: 36px;
    }
    .block {
        flex-direction: column !important;
        width: 100%;
        gap: 16px;
    }
    .content {
        width: 100%;
    }
    .icon img {
        width: 72px;
    }
}