#sect-4 {
    width: 100%;
    display: grid;
    place-content: center;
    position: relative;
    overflow: hidden;
}

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

#sect-4 .info {
    width: 100%;
    min-height: 100dvh;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 100px 0px;
    position: relative;
    z-index: 1;
}

#sect-4 .info h1 {
    width: 100%;
    font-size: 3em;
    font-weight: 700;
    padding: 50px 0px 0px 0px;
}

#sect-4 .channels {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

#sect-4 .info .channels .card {
    padding: 15px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    background-color: white;
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25);
}

#sect-4 .info .channels .card .card-info h3 {
    font-size: 2em;
}

#sect-4 .info .channels .card .card-info {
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 20px;
}

#sect-4 .info .channels .card .illustration {
    height: 220px;
}

#sect-4 .info .channels .card .illustration img {
    height: 100%;
}

#sect-4 .info .payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding: 0px 0px 100px 0px;
}

#sect-4 .info .payment-methods .method {
    display: grid;
    grid-template-rows: auto auto auto auto;
    gap: 10px;
}

#sect-4 .info .payment-methods .method .logos {
    height: 40px;
}

#sect-4 .info .payment-methods .method .logos img {
    height: 100%;
}