section.course_header .text .btns .btn.counter::before {
    font-weight: bold;
    text-align: center;
    content: attr(data-num);
    background: #00a200;
    width: 20px;
    height: 20px;
    position: absolute;
    left: -7px;
    top: -7px;
    border-radius: 50%;
    line-height: 20px;
    font-size: 13px;
}



section.course_top_legends{
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

section.course_top_legends .container{
    color: white;
}

section.course_top_legends  h2{
    text-align: center;
    margin-bottom:20px;
}

section.course_top_legends .top_legends{
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-flow: row wrap; */
    /* background-color: var(--secondry); */
    max-width: 900px;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    box-shadow: -8px 5px 9px var(--primary);
    gap:10px;
    /* border: 5px solid white; */
    /* border-radius: 10px; */
}


section.course_top_legends .top_legends table{
    box-shadow: 0 0 13px 4px black;
    background: linear-gradient(to bottom, black, #0c2c4a);
    border: 3px solid white;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-collapse: unset;
}


section.course_top_legends .top_legends table tfoot{
    background: linear-gradient(to right, black, #0c2c4a);
}
section.course_top_legends .top_legends table thead th{
    border-top: unset;
    border-bottom: unset;
}

section.course_top_legends .top_legends table th,
section.course_top_legends .top_legends table td{
    text-align:center
}



section.course_top_legends .top_legends table img{
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 2px solid white;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    cursor: pointer;
}


section.course_top_legends .top_legends table img:hover {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
}


section.instructor img{
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    cursor: pointer;
}

section.instructor img:hover{
   transform: scale(1.2);
   -webkit-transform: scale(1.2);
   -moz-transform: scale(1.2);
   -ms-transform: scale(1.2);
   -o-transform: scale(1.2);
}


table td{
      vertical-align: middle !important;
}

section.course_header .box{
    box-shadow: 0 0 11px 3px #0c2c4a;
}

section.course_header .box .image{
    overflow: hidden;
}


section.course_header .box img{
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}


section.course_header .box img:hover{
    transform: scale(1.4);
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
}


.verified_badge{
    font-size: 10px;
    background: #5a5af5;
    padding: 3px;
    border-radius: 50%;
    box-shadow: 0 0 4px 1px #001fff;
    margin: 0px 5px;
    color: white;
    cursor: pointer;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.verified_badge:hover{
    transform: scale(1.3);
}
