.ContentNav .tabNav{
    display: none;
}
.ContentNav .activeNav{
    display: block;
}
.contAccordion .accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}
.contAccordion .active, .contAccordion .accordion:hover {
    background-color: #ccc;
}
.contAccordion .panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    overflow-y: scroll;
}
.contAccordion .accordion:after {
    content: '+';
    font-size: 20px;
    color: #777;
    float: right;
    margin-left: 5px;
}
.contAccordion .active:after {
    content: "-";
}
.c-point{
    cursor: pointer;
}
img.lazy{
    display: block;
}
.w-90{
    max-width: 90%;
}