@media (max-width: 480px) {
    .hterm {
        display: none;
    }
    .hterm-hidden {
        display: table-cell;
    }
}

@media (max-width: 640px) {
    .hterm {
        display: none;
    }
    .hterm-hidden {
        display: table-cell;
    }
}

@media (min-width:641px) {
    .hterm {
        display: table-cell;
    }
    .hterm-hidden {
        display: none;
    }
}

.term1,
.term2,
.hterm-hidden {
    text-align: center;
    font-weight: 500;
}

.table .hterm-hidden {
    padding: 1px;
}

.table thead {
    table-layout: fixed;
    border-collapse: collapse;
}

.table thead .choose {
    border-block-end-width: 5px;
    border-block-end-color: #F8777d;
}

.choose {
    color: #F8777d;
}

.table thead .term1:hover,
.table thead .term2:hover {
    background-color: #EEEEEE;
}

#investor::before,
#strategy_expert::before {
    content:"";
    display: block;
    margin-top: -350px;
    height: 350px;
    visibility: hidden;
}
#investor,
#strategy_expert {
    display: none;
}

#investor:target,
#strategy_expert:target {
    display: block;
}
.investor_btn .investor_active,
.strategy_expert_btn .strategy_expert_active{
    display: none;
}

.active.investor_btn .investor_active,
.active.strategy_expert_btn .strategy_expert_active{
    display: block;
}

.investor_btn:focus,
.strategy_expert_btn:focus {
    box-shadow: 0 0 0 0;
}

.donatecard {
    text-align: center;
    border-radius: 0.3rem;
    background-color: white;
    overflow: hidden;
    margin: 20px;
}
.donatecard .head {
    background-color:#FF808B ;
    padding: 0.5rem 0;
    margin: 0 -15px;
}
.donatecard .head h4{
    color: white;
    font-size: 1.5rem;
}
.donatecard .body {
    padding: 10px;
    width: 100%;
    min-height: 200px;
}
.donatecard .foot {
    padding: 10px 0;
    bottom: 0;
    width: 100%;
}
.donatecard .donatebtn {
    border: 1.5px solid #FF808B;
    border-radius: 0.3rem;
    color: #FF808B;
    width: 80%;
}
.donatecard .donatebtn:hover{
    background-color: #FF808B;
    color: white;
}
.donatecard .donatebtn:focus{
    box-shadow: none;
}