#pricing {
    color: #000;
    font-family: UniviaProLight;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    text-align: center;
    margin-bottom: 50px;
    margin: 0 auto;
    max-width: 1200px;
    padding-bottom: 50px;
}

#pricing * {
    box-sizing: border-box;
}

#pricing h2 {
    font-family: UniviaProMedium;
    font-size: 29px;
    line-height: 35px;
    margin-block-end: 1.5em;
    margin-block-start: .83em;
    padding-top: 20px;
    display: none;
}

#pricing a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

#pricing hr {
    border: 0;
    margin: 0;
    padding: 10px 0;
    background-image: none;
    display: none;
}

#pricing .pricing-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 5px;
    padding: 0;
}

#pricing .pricing-flex-item {
    background: white;
    justify-content: space-between;
    margin: 10px;
    border-radius: 15px;
    padding: 60px 40px 50px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex: 1 1 0px;
    transition: 0.3s ease;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
}

#pricing .pricing-flex-item#pro {
    order: 2;
}
#pricing .pricing-flex-item#free {
    order: 1;
}
#pricing .pricing-flex-item#team {
    order: 3;
}

#pricing ul {
    font-weight: normal;
    
    padding-left: 0;
    text-align: left;
}

#pricing li {
    margin-top: 15px;
    line-height: 20px;
    font-size: 16px;
}

#pricing .button {
    background: #e53327;
    border: none;
    color: #fff !important;
    cursor: pointer;
    display: inline-flex;
    line-height: 20px;
    outline: none;
    border-radius: 8px;
    padding: 0 15px;
    width: 180px;
    text-align: center;
    width: 100%;
    font-size: 16px;
    font-family: 'UniviaProBook' !important;
    align-items: center;
    margin-top: 36px;
    margin-bottom: 10px;
    max-width: unset;
    min-width: unset;
    min-height: 54px;
    transition: 0.3s ease;
    justify-content: center;
}

#pricing .button:hover {
    background: #e58327;
    color: #fff !important;
}

#pricing .pricing-flex-item .button.blue {
    background: #DEEDFF;
    color: #1789FC !important;
}
#pricing .pricing-flex-item:hover .button,
#pricing .pricing-flex-item.highlighted .button,
#pricing .pricing-flex-item .button.blue:hover {
    background: #1789FC;
    color: #fff !important;
}
#pricing .pricing-flex-item:hover .button:hover,
#pricing .pricing-flex-item.highlighted .button:hover {
    background: #2D3D52;
    color: #fff !important;
}
#pricing .pricing-flex-item:hover .button,
#pricing .pricing-flex-item.highlighted .button{
    font-family: 'UniviaPro' !important;
}


#pricing .pricing-flex-item .name {
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    margin-top: 0;
}

#pricing .pricing-flex-item .price {
    color: #000000;
    font-size: 40px;
    line-height: 40px;
    padding-bottom: 20px;
    font-weight: bold;
    font-family: 'Roboto';
}
#pricing .pricing-flex-item .price:nth-child(3)  {
    font-weight: normal;
    margin-top: 0;
    line-height: 20px;
}
#pricing .pricing-flex-item:hover {
    transform: scale(1.05);
}
#pricing .pricing-flex-item:hover,
#pricing .pricing-flex-item.highlighted {
    background: #E5F1FF;
    color: #000000;
}

#pricing .pricing-flex-item:hover .price,
#pricing .pricing-flex-item:hover .name,
#pricing .pricing-flex-item.highlighted .price,
#pricing .pricing-flex-item.highlighted .name {
    color: #1789FC;
}

#pricing .enterprise {
    display: none;
}

@media only screen and (min-width: 600px) {
    #pricing {
        margin-bottom: 100px;
    }
    #pricing h2 {
        font-size: 40px;
        line-height: 49px;
    }
    #pricing .pricing-flex-item .price {
        font-size: 44px;
        padding-bottom: 20px;
    }
    #pricing .enterprise h2 {
        font-size: 42px;
    }
}

@media only screen and (min-width: 768px) {
    #pricing {
        padding: 20px;
        margin-bottom: 150px;
    }
    #pricing .pricing-flex-item {
        padding: 40px 20px;
    }
    #pricing .pricing-flex-item#pro,
    #pricing .pricing-flex-item#free,
    #pricing .pricing-flex-item#team {
        order: unset;
    }
    #pricing .pricing-flex {
        margin: 0;
        flex-direction: row;
        
    }
    #pricing .enterprise {
        margin: 10px 10px;
    }
}

@media only screen and (min-width: 992px) {
    #pricing .pricing-flex {
        padding: 0;
    }
    #pricing .pricing-flex-item {
        padding: 50px;
    }
    #pricing .enterprise {
        margin: 10px 15px;
    }
}