/***** Lists UL Start Here *****/
ul,
ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

dl {
    margin: 0;
}

dt {
    font-weight: 600;
    margin: 0;
}

dd {
    margin: 0;
}

li::marker,
li ::marker {
    display: none;
    opacity: 0;
    color: transparent;
    font-size: 0;
}

.site-main ul {
    padding: 0;
    margin: 30px 0;
}

.site-main ul li {
    position: relative;
    padding: 0 0 0 20px;
    margin: 0px 0 20px 0;
    list-style: none;
}

.site-main ul li:last-child {
    margin-bottom: 0;
}

.site-main ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--jungle-green);;
    border-radius: 50%;
}

.site-main ul li a {
    color: #32BCB1;
    text-decoration: none;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
}

.site-main ul li a:hover {
    color: #006F90;
    text-decoration: none;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
}

.site-main ul li ul {
    margin: 20px 0;
}

.site-main ol,
ol.number-listing {
    list-style-type: decimal;
    counter-reset: li-counter;
    margin: 30px 0;
    padding: 0;
}

.site-main ol li,
ol.number-listing li {
    position: relative;
    padding: 0 0 0 30px;
    margin: 0px 0 20px 0;
    list-style: none;
}

.site-main ol li:last-child,
ol.number-listing li:last-child {
    margin-bottom: 0;
}


.site-main ol li::before,
ol.number-listing li::before {
    position: absolute;
    top: 0;
    display: inline-block;
    left: 0;
    content: counter(li-counter) ".";
    counter-increment: li-counter;
    color: var(--cod-grey);
    width: auto;
    height: auto;
    font-size: var(--fs18);
    line-height: inherit;
    font-family: "Lato";
    font-weight: 700;
    font-display: swap;
    text-align: right;
}
ol.number-listing li::before {
    top: -2px;
}

.site-main ol li a,
ol.number-listing li a {
    color: #32BCB1;
    text-decoration: none;
}

.site-main ol li a:hover,
ol.number-listing li a::hover {
    color: #006F90;
    text-decoration: none;
}

.site-main ol li ol,
ol.number-listing li ol {
    margin: 10px 0;
}

.close-ic-listing {
    padding: 0;
    margin: 30px 0 0px;
}

.close-ic-listing li {
    position: relative;
    padding: 0 0 0 35px;
    margin: 0px 0 20px 0;
    list-style: none;
}

.close-ic-listing li:last-child {
    margin-bottom: 0;
}

.close-ic-listing li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background: url(../../images/close-ic.svg) top left no-repeat;
}

.check-ic-listing {
    padding: 0;
    margin: 30px 0 0px;
}

.check-ic-listing li {
    position: relative;
    padding: 0 0 0 35px;
    margin: 0px 0 20px 0;
    list-style: none;
}

.check-ic-listing li:last-child {
    margin-bottom: 0;
}

.check-ic-listing li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background: url(../../images/check-ic.svg) top left no-repeat;
}

.link-ic-listing {
    padding: 0;
    margin: 0px;
}

.link-ic-listing li {
    position: relative;
    padding: 8px 0 8px 16px;
    margin: 0 0 0px 0;
    list-style: none;
    border-bottom: 1px solid var(--border-gray);
    line-height: 22px;
}

.link-ic-listing li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.link-ic-listing li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 10px;
    height: 10px;
    background: url(../../images/Link-ic.svg) top left no-repeat;
    background-size: 10px;
}


.link-ic-listing li a {
    font-size: var(--fs16);
    line-height: 22px;
    /* color: $blue; */
}

.sl_main ol {
    list-style-type: decimal;
    counter-reset: li-counter;
    margin: 30px 0;
    padding: 0;
}

.sl_main ol li {
    position: relative;
    padding: 0 0 0 25px;
    margin: 0px 0 30px 0;
    list-style: none;
}


.sl_main ol li:last-child {
    margin-bottom: 0;
}

.sl_main ol li::before {
    position: absolute;
    top: 2px;
    display: inline-block;
    left: 0px;
    content: counter(li-counter) ".";
    counter-increment: li-counter;
    color: var(--cod-grey);
    width: 20px;
    height: 20px;
    font-size: var(--fs18);
    line-height: 20px;
    font-family: "Lato";
    font-weight: 700;
    font-display: swap;
    text-align: right;
}

.sl_main ol li a {
    text-decoration: none;
}

.sl_main ol li a:hover {
    text-decoration: none;
}

.sl_main ol li ol {
    margin: 10px 0;
}

ul.cat-masthead-listing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-count: auto;
    -moz-column-count: auto;
    column-count: auto;
    width: 100%;
    grid-column-gap: 6px;
    grid-row-gap: 6px;
}

ul.cat-masthead-listing li a {
    background: var(--white);
    padding: 10px 16px;
    border-radius: 30px;
    font-size: var(--fs14);
    display: block;
    line-height: 16px;
    -webkit-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
    border: 1px solid #d5d5d5;
    color: var(--cod-grey);
}

ul.cat-masthead-listing li a:hover {
    color: var(--jungle-green);;
    border: 1px solid var(--jungle-green);;
}

.dotts-lists li {
    font-size: var(--fs15);
    line-height: normal;
    padding: 0 0 0 15px;
    position: relative;
    margin-bottom: 5px;
}
ul.dotts-lists.style-three li:after {
    top: 10px;
}
.dotts-lists li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background: var(--jungle-green);;
    border-radius: 50%;
}

#objectives-tab .course-objectives .std,
#objectivescollapse-tab .course-objectives .std {
    margin-bottom: 15px;
}

#objectives-tab .course-objectives ul li,
#objectivescollapse-tab .course-objectives ul li {
    font-size: var(--fs15);
    line-height: normal;
    padding: 0 0 0 15px;
    position: relative;
    margin-bottom: 5px;
}

#objectives-tab .course-objectives ul li::after,
#objectivescollapse-tab .course-objectives ul li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--jungle-green);;
    border-radius: 50%;
}

#topics-tab ul li {
    font-size: var(--fs12);
    line-height: normal;
    padding: 0 0 0 15px;
    position: relative;
    margin-bottom: 5px;
}

#topics-tab ul li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: 5px;
    background: var(--jungle-green);
    border-radius: 50%;
}

.std ul.disc {}
.std ul.disc li {
    font-size: var(--fs15);
    line-height: 1.4;
    padding: 0 0 0 15px;
    position: relative;
    margin-bottom: 10px;
}
.std ul.disc li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: var(--jungle-green);;
    border-radius: 50%;
}


.std ol.number {
    list-style-type: decimal;
    counter-reset: li-counter;
    margin: 30px 0;
    padding: 0;
}

.std ol.number li {
    position: relative;
    padding: 0 0 0 30px;
    margin: 0px 0 20px 0;
    list-style: none;
}

.std ol.number li::before {
    position: absolute;
    top: 0;
    display: inline-block;
    left: -14px;
    content: counter(li-counter) ".";
    counter-increment: li-counter;
    color: var(--cod-grey);
    width: 35px;
    height: 35px;
    font-size: var(--fs18);
    text-align: right;
}

.std ul.disc li ul {
    margin: 10px 0;
}
.std ul.disc {
    margin: 0 0 30px 0;
}


.std .col2-set .col-1 {
    float: left;
    width: 49%;
}
.std .col2-set .col-2 {
    float: right;
    width: 49%;
}
.std .col2-set .wide {
    flex: inherit;
    float: left;
    width: 65%;
}
.std .col2-set .narrow {
    flex: inherit;
    width: 33%;
    float: right;
}
.site-footer {
    clear: both;
}
body.cms-employers .col-main.container > .page-title {
    display: none;
}

/***** Lists UL END Here *****/