#sect-7 {
    width: 100%;
    display: grid;
    place-content: center;
    grid-template-areas: 
        "info illustration"
        "contact contact";
    grid-template-columns: 1fr 0.6fr;
    grid-template-rows: auto auto;
    position: relative;
    overflow: hidden;
    gap: 0px 40px;
    padding: 150px 50px 0px 150px;
}

#sect-7 .background { 
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
}

#sect-7 .background .rect-1 {
    width: 600px;
    height: 600px;
    border-radius: 30px;
    background-color: #353740;
    position: absolute;
    top: -200px;
    left: -380px;
    transform: rotate(30deg);
}

#sect-7 .info {
    grid-area: info;
    display: grid;
    gap: 20px;
    place-content: center;
    position: relative;
    z-index: 1;
}

#sect-7 .info h1 {
    font-size: 2.5em;
    line-height: 1.5em;
}

#sect-7 .info h3 {
    line-height: 1.5em;
}

#sect-7 .info .list {
    padding: 0px 0px 0px 20px;
    display: grid;
    gap: 20px;
}

#sect-7 .info .list ol {
    display: grid;
    gap: 20px;
}

#sect-7 .illustration {
    grid-area: illustration;
}

#sect-7 .illustration img {
    width: 100%;
}

#sect-7 .contact {
    width: 100%;
    grid-area: contact;
    display: flex;
    justify-content: space-between;
    background-color: #1E242A;
    padding: 15px;
}

#sect-7 .contact h3,
#sect-7 .contact b {
    color: white;
}