.page_structure .wrapper_structure{
    display: flex;
    padding: 20px 0;
    flex-wrap: wrap;
}
.wrapper_structure .text h2{
    margin-bottom: 0px;
    line-height: 1;
}
.page_structure .otd{
    justify-content: space-between;
}
.page_structure .bordtop{
    border-top: 1px solid #0D4C7F;
}
.page_structure h2{
    border: unset;
}
.page_structure img{
    height: fit-content;
    margin-right: 20px;
}
.page_structure .img{
    display: flex;
    justify-content: center;
    align-items: center;
}

.page_structure .text{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
}
.page_structure .dopwrap{
    /* width: 320px; */
    display: flex;
    margin-bottom: 20px;
}
.blcol{
    color: #0D4C7F;

}
.collapse_title{
    font-size: 21px;
    line-height: 28.6px;
    font-weight: 400;
    display: flex;
    cursor: pointer;
}
.page_structure .collapse_arrow img{
    margin-right: 20px;
    transform: translateX(50%) rotate(90deg);
    transition: transform 0.6s;
}
.page_structure .rotate_arrow img{
    transform:  translateX(50%) rotate(270deg); 
}
.otd_wrap{
    margin-bottom: 20px;
}

.otd_wrap .collapsible{
    height: 0;
    transition: height 0.4s ease-in;
    overflow: hidden;
}
.otd_wrap .collapsed_element{
    transition: height 0.4s ease-out;
    overflow: hidden;
}

@media (max-width: 767px) { 
    .page_structure .wrapper_structure{
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
    }
}