#sect-3 {
    width: 100%;
    height: 100dvh;
    display: grid;
    grid-template-columns: 1fr;
    place-content: center;
    position: relative;
    overflow: hidden;
}

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

#sect-3 .background .rect-1 {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 400px;
}

#sect-3 .background .rect-1 img {
    width: 100%;
}

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

#sect-3 .info {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    place-content: center;
    gap: 60px;
    padding: 100px 10% 0px 30% !important;
    position: relative;
    overflow: hidden;
}

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

#sect-3 .info ol,
#sect-3 .info ol li {
    color: #EEF7F8;
    font-weight: 600;
}

#sect-3 .info ol {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0px 0px 0px 20px;
}