.holidays_sayan {
            display: flex;
            gap: 24px;
        }

        .holidays_sayan .catagory {
            width: 30%;
            padding: 30px;
            background: var(--muted);
            border-radius: 20px;
            margin-bottom: 30px;
            height: fit-content;
        }

        .holidays_sayan .catagory .catagory_title {
            font-size: 20px;
            color: var(--dark);
            position: relative;
            padding-bottom: 10px;
            font-weight: 600;
            margin-bottom: 30px;
            text-transform: capitalize;
        }

        .holidays_sayan .catagory .catagory_title::before {
            content: '';
            position: absolute;
            width: 15px;
            border-bottom: 3px solid var(--sky);
            left: 0px;
            bottom: 0px;
        }

        .holidays_sayan .catagory .catagory_title::after {
            content: '';
            position: absolute;
            width: 30px;
            border-bottom: 3px solid var(--sky);
            left: 22px;
            bottom: 0px;
        }

        .holidays_sayan .catagory .catagory_list .catagory_list_link {
            display: block;
            padding: 12px 0px;
            border-bottom: 1px solid #ced4da;
            color: var(--main-bgcolor);
            font-weight: 600;
            transition: 0.5s ease-in-out;
        }

        .holidays_sayan .catagory .catagory_list .catagory_list_link:last-child {
            border: none;
            margin: 0;
        }

        .holidays_sayan .catagory .catagory_list .catagory_list_link:hover {
            padding-left: 10px;
            color: var(--green);
        }

        .holidays_sayan .catagory .catagory_list i {
            visibility: hidden;
            opacity: 0;
        }

        .holidays_sayan .catagory .catagory_list .catagory_list_link:hover .holidays_sayan .catagory .catagory_list i {
            opacity: 1;
            visibility: visible;
        }

        .holidays_sayan .table .table_flow {
            width: 70%;
        }
        .holidays_sayan .table .table_flow{
            width: 100%;
        }
        .holidays_sayan .table .table_flow table {
            width: 100%;
            border: 1px solid var(--grey);
        }

        .holidays_sayan .table .table_flow table tbody tr:nth-child(2n) {
            background: var(--muted);
        }

        .holidays_sayan .table .table_flow table thead tr {
            background: var(--sky);
            color: var(--white);
        }

        .holidays_sayan .table .table_flow table thead tr th {
            padding: 10px 20px;
            border-right: 2px solid var(--white);
            text-align: center;
        }

        .holidays_sayan .table .table_flow table thead tr .t_center {
            text-align: left;
        }
        .holidays_sayan .table .table_flow table thead tr th:last-child{
            border: none;
        }
        .holidays_sayan .table .table_flow table tbody tr td:last-child{
            border: none;
        }
        .holidays_sayan .table .table_flow table tbody tr:last-child{
            border-bottom-color: var(--grey);
        }
        .holidays_sayan .table .table_flow table tbody tr {
            border-bottom: 2px solid var(--sky);
        }

        .holidays_sayan .table .table_flow table tbody tr td {
            padding: 10px 20px;
            border-right: 2px solid var(--white);
            color: var(--grey);
            font-weight: 500;
            text-align: center;
        }

        .holidays_sayan .table .table_flow table tbody tr .t_head {
            color: var(--dark);
            font-size: 18px;
            font-weight: 600;
            text-align: left;
        }

        .holidays_sayan .notes {
            margin-top: 20px;
            border: 1px solid var(--grey);
            padding: 12px;
            font-size: 14px;
        }

        .holidays_sayan .notes h6 {
            font-weight: 600;
            color: var(--heading-color);
            margin-bottom: 8px;
            font-style: italic;
            text-decoration: underline;
        }

        .holidays_sayan .notes ol {
            margin: 0;
            padding-left: 18px;
            color: var(--heading-color);
        }

        .holidays_sayan .notes li {
            margin-bottom: 6px;
        }


