.page {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 0 5vh 20vh;
}
.page h1 {
    width: 100%;
    text-align: center;
    /* max-width: 70vw; */
}
.page__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* justify-content: space-between; */
    align-items: start;
    width: 100%;
    height: 100%;
}
.page__item {
    border: 1px solid rgb(20,20,20,.1);
    padding: 10px 3%;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    height: 100%;
    gap: 15px;
}
.page__item img {
    height: 150px
}
.page__item:first-child {
    border-radius: 10px 0 0 10px ;
}
.page__item:last-child {
    border-radius:0 10px 10px 0;
}
.page__item h3 {
    font-size: calc((1vw + 1vh) * 1.3);
    text-align: center;
}
.page__item p {
    font-size: rgb(254,254,254,.7);
    font-size: calc((1vw + 1vh) * .9);
}

@media screen and (max-width:600px) {
    .page {
        padding: 1vh 3vw;
        padding-bottom: 30vh;
    }
    .page h2 {
        font-size: calc((1vw + 1vh) * 2.4);
    }
    .page__items {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .page__item {
        width: 100%;
        border-radius: 10px;
        border: none;
    }
    .page__item p {
        font-size: calc((1vw + 1vh) * 1.6);
    }
    .page__item h3 {
        font-weight: 600;
        width: 100%;
        text-align: center;
        
        font-size: calc((1vw + 1vh) * 2);
    }
}