.opciones{
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    width: 97% !important;
    max-width: 1700px !important;
    scroll-margin-top: 100px;
}

.opciones .items {
    text-align: center;
    display: grid;
    row-gap: 35px;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    justify-content: space-between;
    align-items: center;
}

.opciones .items .opcion {
    width: 350px;
    height: 150px;
    margin: auto;
    padding: 2px;
    background-color: #5D9500;
    border-radius: 5px;
}

.opciones .items .opcion a {
    width: 100%;
    height: 100%;
    display: flex;
    text-decoration: none;
    color: #fff;
    padding: 20px;
    margin: auto;
}

.opciones .items .opcion a div {
    margin-right: 20px;
}

.opciones .items .opcion a div h1 {
    font-size: 1.5rem;
    font-weight: bolder;
    text-align: left;
}

.opciones .items .opcion a div p {
    font-size: 1rem;
    text-align: left;
}

.opciones .items .opcion a i {
    font-size: 3rem;
    margin-top: -12px;
}

@media screen and (max-width: 1150px) {
    .opciones .items {
        grid-template-columns: repeat(2, 1fr);
    }   
}

@media screen and (max-width: 800px) {
    .opciones .items {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 400px) {
    .opciones .items .opcion {
        width: 250px;
        height: auto;
    }
}