.section-1 {
    padding: 100px 0;
    background: radial-gradient(circle at top left, #444444, #000000 85%);
    text-align: center;
    color: #fff;
}

.section-2 {
    padding: 60px 0 100px;
}

.section-2 .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
}

.section-2 .list {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.section-2 h2 {
    margin-bottom: 40px;
}

.section-2 .list-one {
    width: 100%;
}

.section-2 .list-two {
    width: 100%;
}


.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.section-2 .list-new {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.section-2 .new {
    margin-bottom: 20px;
}

.section-2 .list-new .list-three {
    width: 100%;
}

.list-four {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
}

@media screen and (max-width: 996px) {
    .section-2 .list {
        display: flex;
        flex-direction: column;
    }

    .section-2 .list-one {
        width: 100%;
    }
}