*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container{
    width: 100%;
    min-height: 100vh;
    background: #fFF;

}
.container h2{
    color: rgb(0, 0, 0);
    font-size: 48px;
    padding: 50px 0;
    text-align: center;
    font-weight: bold;
}
.container h1{
    color: #000000;
    font-size: 22px;
    text-align: center;
    font-style: italic;
}
.price-row{
    width: 100%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
}
.price-col{
    background: #0b1622;
    padding: 5% 10%;
    border-radius: 10px;     
    color: #fff;
    text-align: center;
}


.price-col p{
    font-size: 34px;
   font-family: Helvetica;


}
.price-col h3{
    font-size: 44px;
    margin: 20px 0 40px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    font-style: bold;
} 

.price-col ul{
    text-align: left;
    margin: 20px 0;
    color: #ddd;
    list-style:  none;
}
.price-col ul li{
    margin: 12px 0;
}
.price-col ul li::before{
    content: '\2022';
    color: #1994d6;
    font-weight: bold;
    margin-right: 8px;
}

.price-col button:hover{
    background: #e33058;
}

.cuck{
   background-color: transparent;
   color: white;
   border: 12px;
   border-radius: 12px;
   padding: 15px 32px;
   text-align: center;
   text-decoration: none;
   display: inline-block;
   font-size: 25px;

}

.button02{
    
    display: inline-block;
    outline: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    border-radius: 500px;
    transition-property: background-color,border-color,color,box-shadow,filter;
    transition-duration: .3s;
    border: 1px solid transparent;
    letter-spacing: 2px;
    min-width: 160px;
    text-transform: uppercase;
    white-space: normal;
    font-weight: 700;
    text-align: center;
    padding: 16px 14px 18px;
    color: #ffffff;
    box-shadow: inset 0 0 0 2px #ffffff;
    background-color: transparent;
    height: 48px;
    :hover{
        color: #fff;
        background-color: #ffffff;
    }

                    }