div#inner_body {
    width: 100%;
    display: flex
;
    justify-content: space-between;
}
.body_wrapper {
    display: flex
;
    justify-content: space-between;
    width: 100%;
}
.body_wrapper {
    display: flex
;
    justify-content: space-between;
    width: 95%;
    margin: 15px auto;
}
.quicklinks {
    display: flex
;
    flex-direction: column;
    gap: 10px;
    width: 25%;
}
div#inner_content {
    width: 73%;
}
.page_title_block {
    background: url(../images/bg_title1.png) no-repeat center top;
    padding: 45px 0 26px 0;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.04);
    display: block;
    position: relative;
    z-index: 1;
}
.title {
    margin-bottom: 7px !important;
    color: #ffffff;
    font-size: 34px;
}
.page_title_block a{
  color: white;
  font-weight: bold;
}
.page_title_block span{
  color:var(--active-color)
}
.button-quick {
    position: relative;
    width: 100%;
    height: fit-content;
    cursor: pointer;
    padding: 10px 45px 10px 0;
    display: flex
;
    align-items: center;
    border: 2px solid var(--active-color);
    background-color: var(--main-color);
    text-decoration: none;
}
.breadcrumbs {
    color: white;
}
#inner_content h1{
   
        font-size: 1.3rem;
        font-weight: bold;
        color: black;
        font-family: var(--heading-font);
        width: 100%;
        padding: 2px 15px 0px 2px;
        border-bottom: 2px solid var(--main-color);
        /* border-left: 30px solid var(--main-color); */
        position: relative;
}
#inner_content ol{
    margin-left: 25px;
}
#inner_content ul{
    width: 100%;
    margin: auto;
    list-style: none;
}
#inner_content ul li{
    margin-bottom: 10px;
}
#inner_content ul li::before {
    content: "";
    background-image: url(../assets/icons/sambl.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle;
}
#inner_content a{
    color: var(--main-color);
    text-decoration: none;
}