.modal-body {
    padding: 20px;
    width: auto !important;
}

.modal-body h1 {
    font-size: 1.5rem;
    font-weight: bolder;
    text-align: center;
    margin-bottom: 20px;
}

.modal-body .pasos {
    display: grid;
    row-gap: 35px;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    justify-content: space-between;
    align-items: center;
}

.modal-body .pasos img {
    margin: auto;
    display: flex;
}

.colegiatura {
    background-image: url(../img/etc/7.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.colegiatura .box {
    background-color: var(--tertiary);
    padding: 30px;
    border-radius: 5px;
    max-height: 700px;
    max-width: 1000px;
    overflow-y: auto;
}

.colegiatura .box  h1 {
    font-size: 1.5rem;
    font-weight: bolder;
    text-align: center;
}

.colegiatura .box  p {
    font-size: 1rem;
    text-align: center;
}

.requisitos {
    margin: auto;
}

.requisitos .items {
    margin-top: 30px;
    display: grid;
    column-gap: 20px;
    grid-row: 20px;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    justify-content: space-between;
    align-items: center;
}

.requisitos .siguiente-paso {
    margin: auto;
    display: flex;
    margin-top: 20px;
}

.opcion-pago {
    display: flex;
    width: 750px;
    margin: auto;
}

.opcion-pago div span {
    margin-left: 10px;
}

@media screen and (max-width: 1000px){
    .modal-body .pasos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 700px){
    .modal-body .pasos {
        grid-template-columns: repeat(1, 1fr);
    }

    .requisitos .items {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 600px){
    .colegiatura .box {
        padding: 10px;
        border-radius: 5px;
        max-height: 500px;
        max-width: 300px;
        overflow-y: auto;
    }
}
