#sect-2 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    gap: 15px;
    padding: 260px 70px 40px 70px !important;
    position: relative;
    overflow: hidden;
}

#sect-2 .background {
    width: 100%;
    height: 100%;
    /* background-color: red; */
    position: absolute;
    z-index: 1;
}

#sect-2 .background .rect-1 {
    width: 400px;
    height: 400px;
    border-radius: 30px;
    background-color: #353740;
    position: absolute;
    top: 120px;
    left: -150px;
    transform: rotate(45deg);
}

#sect-2 .background .rect-2 {
    position: absolute;
    top: 220px;
    left: -50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-row: 1fr 1fr 1fr 1fr 1fr;
    gap: 30px;
}

#sect-2 .background .rect-2 .dot,
#sect-2 .background .rect-3 .dot {
    width: 10px;
    height: 10px;
    background-color: #D29B5C;
    border-radius: 50%;
}

#sect-2 .background .rect-3 {
    position: absolute;
    bottom: 20px;
    right: 0px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-row: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 30px;
}

#sect-2 .background .rect-4 {
    width: 200px;
    height: 200px;
    border-radius: 30px;
    background-color: #D29B5C;
    position: absolute;
    top: 350px;
    right: -80px;
    transform: rotate(45deg);
}

#sect-2 .benefits {
    width: 100%;
    top: 0px;
    height: auto;
    z-index: 999;
    position: absolute;
    background: #ffffff;
    background: linear-gradient(180deg,rgba(240, 240, 240, 1) 50%, rgba(240, 240, 240, 1) 50%, rgba(255, 255, 255, 0) 0%);
}

#sect-2 .benefits .card-list {
    width: 90%;
    padding: 50px;
    border-radius: 20px;
    background-color: white;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 60px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
}

#sect-2 .benefits .card-list .card-item {
    display: grid;
    gap: 10px;
    position: relative;
}

#sect-2 .benefits .card-list .card-item:not(:last-child):after {
    position: absolute;
    content: '';
    height: 100%;
    width: 3px;
    background-color: #ECECEC;
    right: -15px;
    top: 0;
}

#sect-2 .benefits .card-list .card-item h2 {
    line-height: 1.2em;
}

#sect-2 .benefits .card-list .card-item span {
    width: fit-content;
    width: 50px;
    height: 50px;
    padding: 15px;
    border-radius: 8px;
    background-color: #ECECEC;
    display: flex;
    align-items: center;
    justify-content: center;
}

#sect-2 .info {
    width: 80%;
    margin: auto;
    position: relative;
    z-index: 1;
}

#sect-2 .info h1 {
    text-align: center;
}

#sect-2 .info h2 {
    padding: 80px 0px 40px 0px;
} 

#sect-2 .info h3 {
    line-height: 1.6em;
}

#sect-2 .illustration {
    display: flex;
    padding: 70px 0px;
    position: relative;
    z-index: 1;
}

#sect-2 .illustration img {
    width: 400px;
    margin: auto 0 auto auto;
}

#sect-3 {
    background-color: rgba(30, 36, 42);
}