.packages{
    display: flex;
    flex-direction: row;
    margin: 30px 0px 30px 0px;
}
@media only screen and (max-width: 1200px){
    .packages{
        flex-direction: column;
    }
}
.package{
    text-align: center;
    display: flex;
    width: 350px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 20px 10px 20px 10px;
    background-color: #3a3a3a;
    border-radius: 10px;
    color: #ffffff;
}
.package button{
    margin-bottom: -20px;
}

.package hr{
    width: 70%;
}
.package .top{
    width: 100%;
    border-radius: 10px 10px 0px 0px;
}
.package .top.one{
    background-image: linear-gradient(to right, #df8e0d 0%, #f4661f 100%);
}
.package .top.two{
    background: linear-gradient(to right, #f4661f 0%, #ff5619 100%);
}
.package .top.three{
    background-image: linear-gradient(to right, #ff5619 0%, #ff0000 100%);
}
.package .speed{
    margin: 15px;
}
.package .price{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.package .price h3{
    font-family: 'Poppins';
    font-size: 50px;
}
.price-one{
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #df8e0d 0%, #f4661f 100%);
    margin: 0px 10px 0px 10px;
}
.price-two{
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #f4661f 0%, #ff5619 100%);
    margin: 0px 10px 0px 10px;
}
.price-three{
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #ff5619 0%, #ff0000 100%);
    margin: 0px 10px 0px 10px;
}
.speed{
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.speed .upload-download{
    display: flex;
    flex-direction: column;
}
.speed .upload-download div{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}