.pcs-card-parent {
    --width: 100%;
    --height: 300px;
    --radius: 30px;
    width: var(--width);
    transform: scale(0.9);
    transition: all 0.5s;
}

.pcs-card-parent:hover {
    transform: scale(0.97);
}

.pcs-card {
    background-color: transparent;
    width: var(--width);
    height: var(--height);
    perspective: 1000px;
    border-radius: var(--radius);
}

.pcs-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: var(--radius);

}

.pcs-card:hover .pcs-card-inner {
    transform: rotateY(180deg);
}

.pcs-title {
    color: var(--this-third);
    font-weight: bold;
    padding: 10px;
    text-align: center;
    text-shadow: 0px 0px 2px #00000080;
}

.pcs-img {
    width: var(--width);
    height: var(--height);
    object-fit: cover;
}

.pcs-card-front,
.pcs-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--radius);
    overflow: hidden;
}

.pcs-card-front {
    background-color: #bbb;
    color: black;
}

.pcs-card-back {
    background-color: var(--this-primary);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.pcs-card-back>div {
    width: 100%;
}

.pcs-b-title {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
}

.pcs-b-sub {
    font-size: 15px;
    margin-bottom: 15px;
}

.ami-hol {
    background: white;
    padding: 10px;
    margin-top: 35px;
    border-radius: 10px;
}

.ami-main-title,
.am-title {
    color: var(--this-primary);
}

.ami-main-title {
    font-size: 20px;
    font-weight: normal;
}

.am-title {
    font-size: 12px;
}

.pcs-card .dn-pill {
    background: var(--hm-red);
    color: var(--white);
    font-size: 18px;
    font-weight: bold;
    width: 107px;
    padding: 2px 10px;
    border-radius: 10px;
}

.ami-hol .dn-pill {
    margin: -30px auto 10px auto;
}

.pcs-card-front .dn-pill {
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 20px;
}

.pri-hol,
.pri-hol .b-text {
    font-size: 20px;
    font-weight: bold;
    margin-right: 5px;
}

.pri-hol .cur {
    font-family: auto;
    font-weight: normal;
}

.pri-hol .b-text {
    color: var(--hm-yellow);
}

.pri-hol .pri {
    font-size: 25px;
}

.dis-cross-line::after {
    background-color: var(--this-secondary);
    transform: rotate(162deg);
    height: 1.5px;
}

/*  */
.to-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.to-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border: 3px solid var(--white);
    border-radius: 30px;
}

.to-card .cont-sec {
    color: var(--white);
    padding: 15px 0;
}

.to-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.to-card .cont-sec p {
    font-size: 16px;
    text-align: justify;
}

.to-card .cont-sec .highlight {
    color: #00ffff;
    font-weight: 500;
}

.faq-cont {
    color: var(--white);

}

.faq-cont .faq-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.faq-cont ul {
    padding-left: 15px;
}

.faq-cont ul li {
    list-style: disc;
    font-size: 18px;
}

@media(min-width:768px) {
    .to-card>div {
        width: 48%;
    }
}