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

#sect-1 .background {
    width: 100%;
    height: 100%;
    background-color: rgba(240, 240, 240);
    position: absolute;
    z-index: 1;
}

#sect-1 .background .rect-1 {
    position: absolute;
    content: '';
    width: 300px;
    height: 300px;
    border-radius: 40px;
    background-color: #353740;
    z-index: 3;
    top: -150px;
    right: calc(50% - 200px);
    transform: rotate(45deg);
}

#sect-1 .background .rect-2 {
    position: absolute;
    content: '';
    width: 1000px;
    height: 1000px;
    border-radius: 60px;
    background-color: #931637;
    z-index: 2;
    top: -300px;
    right: -400px;
    transform: rotate(135deg);
}

#sect-1 .background .rect-3 {
    position: absolute;
    content: '';
    width: 300px;
    height: 300px;
    border-radius: 20px;
    background-color: #D29B5C;
    z-index: 1;
    top: 200px;
    right: 340px;
    transform: rotate(45deg);
}

#sect-1 .info {
    height: 100%;
    min-height: 100%;
    display: grid;
    grid-template-areas: "logo"
                        "title"
                        "description"
                        "buttons"
                        "logos";
    grid-template-rows: auto auto auto auto auto;
    place-content: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

#sect-1 .info .title {
    grid-area: "title";
    display: flex;
    align-content: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
}

#sect-1 .info .title h1,
#sect-1 .info .title h3 {
    width: 100%;
}

#sect-1 .info .title h1 {
    font-size: 3.5em;
}

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

#sect-1 .info .buttons {
    grid-area: "buttons";
    display: flex;
    gap: 10px;
}

#sect-1 .info .logos {
    grid-area: "logos";
    display: flex;
    justify-content: flex-end;
}

#sect-1 .illustration {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 30px;
    height: 100%;
    position: relative;
    z-index: 2;
}

#sect-1 .illustration .logo {
    width: 55%;
    margin: 0 0 0 auto;
    position: relative;
    z-index: 5;
}

#sect-1 .illustration .logo img {
    width: 100%;
    margin: auto;
}

#sect-1 .illustration .photo {
    width: 55%;
    height: auto;
    background-color: white;
    overflow: hidden;
    border-radius: 35px;
    margin: 0 0 0 auto;
}

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