.plansTitle {
    font-family: "oswald";
    font-weight: normal;
    font-size: 42px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 35px;
}

.heroContentContainer.plans {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.plansContentContainer {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.plansCard {
    max-width: 300px;
    background-color: #7BE7FF;
    padding: 20px 28px;
    border-radius: 22px;
    user-select: none;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}

.plansCard.secondary {
    background-color: #1E96C0;
}

.plansCard.tertiary {
    background-color: #006082;
}

.plansCardTitle {
    font-family: "oswald";
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
}

.plansCardTitle.secondary {
    color: #FFFFFF;
}

.plansCardSubTitle {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
}

.plansCardSubTitle.secondary {
    color: #FFFFFF;
}

.plansCardPriceOriginal {
    font-size: 16px;
    text-decoration: line-through;
    text-align: center;
    opacity: 0.8;
}

.plansCardPrice {
    font-size: 20px;
    font-weight: bolder;
    margin-bottom: 20px;
    text-align: center;
}

.plansCardPrice.secondary {
    color: #FFFFFF;
}

.plansCardAction {
    padding: 10px 20px;
    border-radius: 25px;
    background-color: #FFFFFF;
    font-weight: bold;
    width: max-content;
    margin: auto;
    margin-bottom: 20px;
    user-select: none;
    cursor: pointer;
}

.plansCardAction:hover {
    background-color: #eeeeee;
    scale: 1.03;
}

.plansCardIncludeTitle {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 7px;
}

.plansCardIncludeTitle.secondary {
    color: #FFFFFF;
}

.plansCardIncludeList {
    margin-left: 15px;
}

.plansCardIncludeList.secondary {
    color: #FFFFFF;
}

.planAdditions {
    padding: 12px 25px;
    background-color: #FFFFFF;
    border-radius: 12px;
    color: #414141;
    margin-bottom: 40px;
    max-width: 225px;
    user-select: none;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}

.planAdditionsTitle {
    font-family: "Oswald";
    font-size: 18px;
    text-align: center;
}

.planAdditionsPrice {
    color: #29C8FF;
    font-weight: bolder;
    text-align: center;
}

.planServiceIva {
    font-weight: bold;
    padding: 12px 25px;
    background-color: #FFFFFF;
    color: #414141;
    border-radius: 12px;
    margin-bottom: 65px;
    user-select: none;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}

.planFreeTest {
    font-weight: bold;
    padding: 12px 25px;
    background-color: #D4AF37;
    border-radius: 12px;
    text-align: center;
    user-select: none;
    cursor: pointer;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}

.planFreeTest:hover {
    background-color: #be9e32;
    scale: 1.03;
}

@media (max-width: 1366px) {
    .plansContentContainer{
        gap: 30px;
        height: calc(100% - 70px);
    }

    .plansTitle {
        font-size: 2.8vw;
        margin-bottom: 25px;
    }

    .plansCard {
        max-width: 290px;
    }

    .plansCardTitle {
        font-size: 1.35vw;
    }

    .plansCardSubTitle {
        font-size: 1.1vw;
    }

    .plansCardPrice {
        font-size: 1.3vw;
    }

    .plansCardAction {
        font-size: 1.1vw;
    }

    .plansCardIncludeTitle {
        font-size: 1.1vw;
    }

    .plansCardIncludeList {
        font-size: 1.1vw;
    }

    .planAdditionsTitle {
        font-size: 1.2vw;
    }

    .plansCardSubTitle.secondary {
        margin-bottom: 15px !important;
    }

    .planAdditionsPrice {
        font-size: 1.2vw;
    }

    .planAdditions {
        padding: 10px 18px;
    }
    
    .planServiceIva {
        font-size: 1.2vw;
        padding: 10px 18px;
    }

    .planFreeTest {
        font-size: 1.2vw;
        padding: 10px 18px;
    }
}