.bikes {
    padding: 60px 10px;
    padding-top: 20px;
}
.bikes-grid {
    display: grid;
    grid-template-columns: max-content max-content;
    justify-content: center;
    justify-items: center;
    align-items: center;
    text-align: center;
    gap: 60px;
}
.bikes a {
    display: grid;
    gap: 10px;
}
.bikes a:hover img {
    transform: translateY(-10px);
}
.bikes a img {
    transition: .3s ease-out;
}
.bikes a h2 {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 900;
    padding: 8px 12px;
    border-radius: 20px;
    transition: .3s;
}
.bikes a:hover h2 {
    background-color: #E30613;
    border-radius: 20px;
    color: #FFED00;
}

.bikes-title p {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 500;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    margin-bottom: 100px;
    margin-top: 20px;
}
.bikes-title p span {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
}

@media only screen and (min-width: 460px) and (max-width: 690px) {

    .bikes-grid {
        grid-template-columns: 1fr;
    }
    .bikes-title p {
        font-size: 1.5rem;
        max-width: 850px;
    }
    .bikes-title p span {
        font-size: 2rem;
    }
    
}

@media only screen and (min-width: 0px) and (max-width: 459px) {

    .bikes-grid {
        grid-template-columns: 1fr;
    }
    .bikes-title p {
        font-size: 1.2rem;
        max-width: 850px;
    }
    .bikes-title p span {
        font-size: 1.5rem;
    }
    
}