#sect-6 {
    width: 100%;
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    place-content: center;
    position: relative;
    overflow: hidden;
    gap: 40px;
    padding: 100px 15%;
}

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

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

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

#sect-6 .illustration {
    width: 400px;
    position: relative;
    z-index: 1;
}

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

#sect-6 .info {
    height: 100%;
    display: grid;
    grid-template-rows: auto auto auto auto;
    position: relative;
    gap: 30px;
    place-content: center;
    z-index: 1;
}

#sect-6 .info h1 {
    font-size: 3em;
}

#sect-6 .info .bases h3,
#sect-6 .info .schedules h3 {
    line-height: 1.5em;
}