.allMotorcards{
    display:flex;
    width:100%;
    justify-content: center;
    gap:199px;
    padding:30px; 
    box-sizing: border-box;
}

.motorcard{
    width:22%;
    display:flex;
    flex-direction: column;
    font-family: 'Roboto';
    color: white;
    align-items: center;
    border-radius: 13px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: white;
}

.motorcard h2{
    font-size: 1.4rem;
    font-weight: 500;
    margin:0;
}

.motorcard img{
    width: 80%;
    padding:35px;
    box-sizing: border-box;
}

.motorcard p{
    font-size: 1.2rem;
    margin:0;
}

.motorcard select{
    border-color: transparent;
    height:30px;
    border-radius: 8px;
}

.motorcard__description{
    box-sizing: border-box;
    width:100%;
    background:#11286a;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    gap:22px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius:8px;
}

.description__horizontal{
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.description__solenoidDescription p{
    font-size:15px;
    text-align: right;
}
.horizontal__buynow{
    color:white;
    background: radial-gradient(farthest-corner at 40px 40px, #F0780F 0%, #F0780F 100%);
    border-radius: 10px;
    padding: 10px 16px;
    transition:all .1s ease;
}

.horizontal__buynow:hover{
    transform: scale(1.05);
}
.pointer-cursor {
    cursor: pointer;
}


@media screen and (max-width: 1024px){
    .allMotorcards{
        gap:0px;
        justify-content: space-around;
    }

    .motorcard{
        width:40%;
    }

    .motorcard__description{
        padding:15px;
    }

    .motorcard h2{
        font-size: 24px;
    }

    .motorcard p{
        font-size: 19px;
    }

}
@media screen and (max-width: 450px) {
    .allMotorcards{
        flex-direction: column;
        gap:30px;
        align-items: center;
    }

    .motorcard{
        width:100%;
    }

    .motorcard h2{
        font-size: 22px;
    }

    .motorcard p{
        font-size: 17px;
    }
}