@import url('https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i,700,900|Open+Sans:400,600');
:root {
    --pcolour: #fd961a;
}
#stickyDiv {
    position: sticky;
    top: 0px;
    z-index: 50000000;
}

html{
    -webkit-transition: smooth;
}
.buy_package {
    background-color: var(--pcolour);
    border: none;
    box-shadow: none;
    width: 100px;
    margin: auto;
    color: white;
    border-radius: 10px;
}

.flex {
    display: flex;
}
.grid{
    display: grid;
}
.package_box {
    margin-top: 20px;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.package_box img {
width: 100%;
border-radius: 20px;
}

.package_box_img {
    flex-direction: column;
    background-color: #383838;
    border: 1px solid white;
    align-items: center;
    width: 20%;
    height: 250px;
    border-radius: 20px;
    justify-content: space-around;
}
.buy_now{
    background-color: #fd961a;
    color: white;
    padding: 0px 20px;
    border-radius: 10px;
    font-weight: 600;
}
.buy_now:hover{
    color: black;
    transition: all 1s ;
}
.image img{
    width: 150px;
}
.details-row{
    padding: 40px 0px;
    place-items: center;
    background-color: #2f2f2f;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}
.datas .box{
    font-family: 'Lato', sans-serif;
    color: #999;
}
.bg-black{
    background-color: #2f2f2f;
}
.apidata{
    margin-left: 5px;
}
.imgbox img{
   width: 100px;
}
.imgbox{
    font-family: 'Lato', sans-serif;
    align-items: center;
    justify-content: center;
    color: #999;
}
@media only screen and (max-width:600px) {
    .package_box_img {
        flex-direction: column;
        background-color: #383838;
        border: 1px solid white;
        align-items: center;
        width: 50%;
        border-radius: 20px;
        height: 211px;
        justify-content: space-around;
    }
    .details-row{
        background-color: #2f2f2f;
        grid-template-columns: 1fr;
    }
}