.pricing
{
    width: 100%;
    height: 750px;
    margin: auto;
    margin-top: 50px;
}

.pricingImage
{
    position: absolute;
    width: 100%;
}

.pricingTitle
{
    position: relative;
    width: 100%;
    top: 20px;

    font-size: 50px;
    text-align: center;

    font-family: 'Salsa', 'Noto Sans', 'sans-serif';
    z-index: 3;
}

.pricingGradient
{
    position: absolute;
    width: 100%;
    height: 35.714vw;

    background: linear-gradient(0deg, 
    #DBDBC1 0%, 
    #DBDBC1cc 10%, 
    #DBDBC166 30%, 
    #DBDBC111 50%, 
    #DBDBC166 70%, 
    #DBDBC1cc 90%, 
    #DBDBC1 100%);
    z-index: 2;
}

.pricingBox
{
    position: relative;
    width: 40%;
    left: 30%;
    top: 10%;
    padding-bottom: 30px;

    background-color: #FFFFFF;
    border-radius: 10px;

    box-shadow: 0px 5px 10px 0px #00000065;

    z-index: 3;
}

.pricingAmount
{
    width: 80%;
    margin: auto;
    padding: 10px;

    font-size: 40px;
    text-align: center;

    font-family: 'Salsa', 'Noto Sans', 'sans-serif';
    z-index: 3;
}

.pricingAmountSub
{
    width: 80%;
    margin: auto;
    margin-top: 20px;
    padding: 5px;

    font-size: 25px;
    text-align: center;

    font-family: 'Salsa', 'Noto Sans', 'sans-serif';
}

.pricingList
{
    display: flex;
    flex-direction: column;
    width: 60%;
    margin: auto;
    border-top: 1px dashed #AAAAAA;
}

.pricingFeature
{
    padding: 5px;

    text-align: center;
    font-size: 20px;
    border-bottom: 1px dashed #AAAAAA;

    transition-duration: 0.2s;
}

.pricingFeature:hover
{
    background-color: #CCCCCC;
    border-bottom: 1px solid #FFFFFF;
}

@media only screen and (max-width: 1400px)
{
    .pricing
    {
        height: 550px;
    }

    .pricingBox
    {
        width: 70%;
        left: 15%;
        top: 10px;
    }
}

@media only screen and (max-width: 1000px) 
{
    .pricing
    {
        height: 400px;
    }

    .pricingBox
    {
        width: 70%;
        left: 15%;
        top: 10px;
    }

    .pricingAmount
    {
        padding-bottom: 0;
        font-size: 5vw;
    }

    .pricingAmountSub
    {
        margin-top: 0;
        font-size: 3vw;
    }

    .pricingList
    {
        width: 80%;
    }

    .pricingFeature
    {
        font-size: 2vw;
    }
}

@media only screen and (max-width: 600px) 
{
    .pricing
    {
        height: 300px;
    }

    .pricingBox
    {
        width: 90%;
        left: 5%;
        top: 10px;
    }

    .pricingAmount
    {
        padding-bottom: 0;
        font-size: 18px;
    }

    .pricingAmountSub
    {
        margin-top: 0;
        font-size: 16px;
    }

    .pricingList
    {
        width: 80%;
    }

    .pricingFeature
    {
        font-size: 14px;
    }
}