/* STYLE 19 SPA */
.style19 .title-header h4{
    font-size: 16px;
    font-weight: bold;
    font-weight: 400;
}

.style19 .title-header h4 span{
    line-height: 1;
    font-size: 30px;
    font-weight: 700;
}

.style19 .nav.nav1 li,.style19 .nav.nav2 li,.style19 .nav.nav3 li{
    font-weight: 400;
    font-size: 16px;
}
.style19 .part-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.style19 .container19 .part {
    height: fit-content;
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

.style19 .part img {
    width: 100%;
    max-height: 250px;
}

.style19 .container19 .price-info h4 {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    color: #333;
}

.style19 .container19 .price-info h4 a {
    color: unset;
    text-decoration: none;
}

.style19 .container19 .price-info ul {
    font-weight: 400;
    font-size: 16px;
    color: #929292;
    margin: 0;
    text-align: center;
    padding-left: 0;
}

.style19 .container19 .price-info ul li {
    list-style: none;
    color: #929292;
}

.style19 .container19 .price-info p {
    text-align: center;
    font-weight: 500;
    font-size: 30px;
    color: #7d3c92;
    margin-bottom: 20px;
}

.style19 .container19 .price-info p sub {
    position: unset;
    font-size: 15px;
}

.style19 .container19 .price-info a {
    text-decoration: none;
}

.style19 .container19 .price-info a button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-color: #FFF;
    color: #7d3c92;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 27px;
    border: 2px solid #7d3c92;
    padding: 10px 20px;
}

.style19 .container19 .price-info a button:hover {
    background-color: #7d3c92;
    color: #FFF;
}

.style19 .container19 .part:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
    box-shadow: 0 30px 40px rgb(0 0 0 / 10%);
}

.style19 .container19 .part .price-info {
    width: 100%;
    float: left;
    height: auto;
    padding: 30px 15px 35px;
    position: relative;
    background-color: #fafafa;
}

.style19 .container19 .part .price-info:before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    height: 35px;
    width: 51%;
    background: #fafafa;
    transform: skew(0deg, 6deg);
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.style19 .container19 .part .price-info:after {
    content: '';
    position: absolute;
    top: -12px;
    right: 0;
    height: 35px;
    width: 50%;
    background: #fafafa;
    transform: skew(0deg, -6deg);
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}