.optha > h2 {
    position: relative;
    z-index: 1;
    width: fit-content;
    margin: 20px auto clamp(38px, 5vw, 64px);
    padding-bottom: 18px;
    color: var(--brand-900, #17346f);
    font-size: clamp(28px, 5vw, 34px);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -0.045em;
    text-align: center;
    text-wrap: balance;
}



.optha > h2::after {
    content: "";
    position: absolute;
    right: 18%;
    bottom: 0;
    left: 18%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--accent, #20a7a0),
        var(--brand-600, #3c69c7)
    );
    border-radius: 999px;
    box-shadow: 0 5px 14px rgba(47, 87, 173, 0.2);
}


.optha_cont{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 90%;
    gap: 3%;
    justify-items: center;
    margin-left: 5%;
}
.opth_frm{
    width: 30%;
    padding: 10px;
    background-color: #f8f8f8;
    color: rgb(5, 5, 5);
    text-align: justify;
    line-height: 1.5;
    border-radius: 20px;
    box-shadow: 2px 2px 1px #374193;
    margin-top: 20px;
}
.opth_frm:hover{
    background-color: #374193;
    color: white;
    scale: 1.05;
    transition: 0.5s;
}
.opth_frm p{
    padding: 10px;
}
.opth_frm ul{padding: 15px;}

.optha{
    padding: 20px;
}
@media (max-width: 780px) {
.optha_cont{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 90%;
    gap: 3%;
    justify-items: center;
    margin-left: 5%;
}
.opth_frm{
    width: 100%;
    padding: 10px;
    background-color: #f8f8f8;
    color: rgb(5, 5, 5);
    text-align: justify;
    line-height: 1.5;
    border-radius: 20px;
    box-shadow: 2px 2px 1px #374193;
    margin-top: 20px;
}
}