header{
    height: 50vh !important;
}

main{
    padding-top: 0 !important;
}

.information-items{
    margin-top: -50px;
    background-color: var(--color-white);
    padding: calc(var(--vertical-indent) / 2);
    justify-content: space-between;
}

.information-item{
    flex-direction: column;
}

.information-item-title{
    font-weight: 600; 
}

.age-limit{
    display: block;
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-black);
    border-radius: 10px;
    line-height: 50px;
    text-align: center;
    font-weight: 600;
}

h2{
    margin-top: 40px;
    margin-bottom: 20px;
}

@media screen and (max-width: 1400px) {

}

@media screen and (max-width: 1280px) {
   
}

@media screen and (max-width: 992px) {
    .information-items{
        flex-direction: column;
    }

    .information-item{
        flex-direction: row;
    }

    .information-item span{
        margin-right: 10px;
    }
}

@media screen and (max-width: 768px) {
    
}

@media screen and (max-width: 576px) {
    .information-items{
        justify-content: center;
        align-items: center;
    }

    .information-item{
        flex-direction: column;
    }

    .information-item span{
        margin-right: 0;
        text-align: center;
    }
}