 <style>
        .cards{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-evenly;
        }
        .box h6{
            position: relative;
            color: black;
        }
        .box h6 i{
            position: absolute;
            right: 0;
        }
        .box p {
            color: hsl(229, 6%, 66%);
            font-size: 14px;
            color: black;
        }
        
        .box {
            border-radius: 5px;
            /*box-shadow: 0px 30px 40px -20px hsl(229, 6%, 66%);*/
            box-shadow: 1px 1px 0px 0px hsl(229, 6%, 66%);
            padding: 10px;
            margin: 20px; 
            width: 10vw;
            background-color: #8080800d;
        }
        .ad_btn{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-evenly;
            margin: 30px 0;
            padding: 10px 0;
        }
        .ad_btn a{
            width: 20vw;
            text-align: center;
            /*box-shadow: 0px 30px 40px -20px hsl(229, 6%, 66%);*/
            box-shadow: 1px 1px 0px 0px hsl(229, 6%, 66%);
            padding: 10px;
            border-radius: 5px;
            background-color: var(--first-color);
            color: white;
            font-weight: bold;
            text-decoration: none;
        }
        @media screen and (max-width: 769px){
            .box {
                border-radius: 5px;
                /*box-shadow: 0px 30px 40px -20px hsl(229, 6%, 66%);*/
                box-shadow: 1px 1px 0px 0px hsl(229, 6%, 66%);
                padding: 10px;
                margin: 20px;
                width: 20vw;
            }
            .ad_btn a{
                width: 40vw;
                text-align: center;
                /*box-shadow: 0px 30px 40px -20px hsl(229, 6%, 66%);*/
                box-shadow: 1px 1px 0px 0px hsl(229, 6%, 66%);
                padding: 10px;
                border-radius: 5px;
                background-color: var(--first-color);
                color: white;
                font-weight: bold;
                text-decoration: none;
            }
        }
        @media screen and (max-width: 426px){
            .box {
                border-radius: 5px;
                /*box-shadow: 0px 30px 40px -20px hsl(229, 6%, 66%);*/
                box-shadow: 1px 1px 0px 0px hsl(229, 6%, 66%);
                padding: 10px;
                margin: 20px;
                width: 50vw;
            }
            .ad_btn a{
                width: 50vw;
                text-align: center;
                /*box-shadow: 0px 30px 40px -20px hsl(229, 6%, 66%);*/
                box-shadow: 1px 1px 0px 0px hsl(229, 6%, 66%);
                padding: 10px;
                border-radius: 5px;
                background-color: var(--first-color);
                color: white;
                font-weight: bold;
                text-decoration: none;
            }
        }
        img {
            display: inline;
            margin: auto 0 auto auto;
        }
        .c_c_1 {
            border-top: 3px solid hsl(0, 78%, 62%);
        }
        .c_c_2{
            border-top: 3px solid hsl(180, 62%, 55%);
        }
        .c_c_3{
            border-top: 3px solid hsl(34, 97%, 64%);
        }
        .c_c_4{
            border-top: 3px solid hsl(212, 86%, 64%);
        }
        .c_c_5{
            border-top: 3px solid #C2862D;
        }
        .c_c_6{
            border-top: 3px solid #21184D;
        }
        .c_c_7{
            border-top: 3px solid #BD62A8;
        }
        .c_c_8{
            border-top: 3px solid #54AE93;
        }
        .c_i_1 {
            color: hsl(0, 78%, 62%);
        }
        .c_i_2{
            color: hsl(180, 62%, 55%);
        }
        .c_i_3{
            color: hsl(34, 97%, 64%);
        }
        .c_i_4{
            color: hsl(212, 86%, 64%);
        }
        .c_i_5{
            color: #C2862D;
        }
        .c_i_6{
            color: #21184D;
        }
        .c_i_7{
            color: #BD62A8;
        }
        .c_i_8{
            color: #54AE93;
        }
    /*========== GOOGLE FONTS ==========*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*========== VARIABLES CSS ==========*/
:root {
  --header-height: 3.5rem;
  --nav-width:350px;

  /*========== Colors ==========*/
  --first-color: #6923D0;
  --first-color-light: #F4F0FA;
  --title-color: #19181B;
  /*--text-color: #58555E;*/
  --text-color:black;
  --text-color-light: #A5A1AA;
  --body-color: #F9F6FD;
  --container-color: #FFFFFF;

  /*========== Font and typography ==========*/
  --body-font: Calibri;
  --normal-font-size: .900rem;
  --small-font-size: 1.1rem;
  --smaller-font-size: .95rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-fixed: 100;
}

@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: 1.1rem;
    --smaller-font-size: .95rem;
  }
}
/*========== BASE ==========*/
*, ::before, ::after {
  box-sizing: border-box;
}

body {
  margin: var(--header-height) 0 0 0;
  padding: 1rem 1rem 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h3 {
  margin: 0;
  color: #6923D0;
}
button{
    background-color: #6923D0;

}
a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*========== HEADER ==========*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--container-color);
  box-shadow: 0 1px 0 rgba(22, 8, 43, 0.1);
  padding: 0 1rem;
  z-index: var(--z-fixed);
}

.header__container {
  display: flex;
  align-items: center;
  height: var(--header-height);
  justify-content: space-between;
}
.user__name{
    display: flex;
    align-items: center;
}
.user__name span{
    padding-right: 10px;
    font-weight: bold;
    color: black;
    text-transform: capitalize;
}
.header__img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.header__logo {
  color: var(--title-color);
  font-weight: var(--font-medium);
  display: none;
}

.header__search {
  display: flex;
  padding: .40rem .75rem;
  background-color: var(--first-color-light);
  border-radius: .25rem;
}

.header__input {
  width: 100%;
  border: none;
  outline: none;
  background-color: var(--first-color-light);
}

.header__input::placeholder {
  font-family: var(--body-font);
  color: var(--text-color);
}

.header__icon, 
.header__toggle {
  font-size: 1.2rem;
}

.header__toggle {
  color: var(--title-color);
  cursor: pointer;
}

/*========== NAV ==========*/
.nav {
  position: fixed;
  top: 0;
  left: -100%;
  height: 100vh;
  padding: 1rem 1rem 0;
  background-color: var(--container-color);
  
  box-shadow: 1px 0 0 rgba(22, 8, 43, 0.1);
  z-index: var(--z-fixed);
  transition: .4s;
}
.nav a{
    text-decoration: none;
}
.nav__container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 3rem;
  overflow: auto;
  scrollbar-width: none; /* For mozilla */
}

/* For Google Chrome and others */
.nav__container::-webkit-scrollbar {
  display: none;
}

.nav__logo {
  font-weight: var(--font-semi-bold);
  margin-bottom: 2.5rem;
}

.nav__list, 
.nav__items {
  display: grid;
}

.nav__list {
  row-gap: 2.5rem;
}

.nav__items {
  row-gap: 1.5rem;
}

.nav__subtitle {
  font-size: var(--normal-font-size);
  text-transform: uppercase;
  letter-spacing: .1rem;
  /*color: var(--text-color-light);*/
}

.nav__link {
  display: flex;
  align-items: center;
  color: var(--text-color);
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__icon {
  font-size: 1.2rem;
  margin-right: .5rem;
}

.nav__name {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  white-space: nowrap;
  padding-left: 10px;
}

.nav__logout {
  margin-top: 5rem;
}

/* Dropdown */
.nav__dropdown {
  overflow: hidden;
  max-height: 21px;
  transition: .4s ease-in-out;
}

.nav__dropdown-collapse {
  background-color: var(--first-color-light);
  border-radius: .25rem;
  margin-top: 1rem;
}

.nav__dropdown-content {
  display: grid;
  row-gap: .5rem;
  padding: .75rem 2.5rem .75rem 1.8rem;
}

.nav__dropdown-item {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
}
.nav__dropdown-item:hover {
  color: var(--first-color);
}

.nav__dropdown-icon {
  margin-left: auto;
  transition: .4s;
}

/* Show dropdown collapse */
.nav__dropdown:hover {
  max-height: 100rem;
}

/* Rotate icon arrow */
.nav__dropdown:hover .nav__dropdown-icon {
  transform: rotate(180deg);
}

/*===== Show menu =====*/
.show-menu {
  left: 0;
}
.logo{
      width: 50px;
  }
/*===== Active link =====*/
.active {
  color: var(--first-color);
}
.nav__sub__name{
    padding-left: 10px;
}

/* ========== MEDIA QUERIES ==========*/
/* For small devices reduce search*/
@media screen and (max-width: 320px) {
  .header__search {
    width: 70%;
  }
}

@media screen and (min-width: 768px) {
  body {
    padding: 1rem 3rem 0 6rem;
  }
  .header {
    padding: 0 3rem 0 6rem;
  }
  .header__container {
    height: calc(var(--header-height) + .5rem);
  }
  .header__search {
    width: 300px;
    padding: .55rem .75rem;
  }
  .header__toggle {
    display: none;
  }
  .header__logo {
    display: block;
    text-decoration: none;
  }
  .logo{
      width: 50px;
  }
  .header__img {
    width: 40px;
    height: 40px;
    order: 1;
  }
  .nav {
    left: 0;
    padding: 1.2rem 1.5rem 0;
    width: 68px; /* Reduced navbar */
  }
  .nav__items {
    row-gap: 1.7rem;
  }
  .nav__icon {
    font-size: 1.3rem;
  }

  /* Element opacity */
  .nav__logo-name, 
  .nav__name, 
  .nav__subtitle, 
  .nav__dropdown-icon {
    opacity: 0;
    /* transition: .3s; */
  }
.nav__sub__name{
    padding-left: 10px;
}
  /* Navbar expanded */
  .nav:hover {
    width: var(--nav-width);
  }
  
  /* Visible elements */
  .nav:hover .nav__logo-name {
    opacity: 1;
  }
  .nav:hover .nav__subtitle {
    opacity: 1;
  }
  .nav:hover .nav__name {
    opacity: 1;
    padding-left: 10px;
  }
  .nav:hover .nav__dropdown-icon {
    opacity: 1;
  }
}

/*admin home style*/
.role_name{
    text-align: center;
    color:#000;
    font-weight:bold;
}
.role_name span{
    color:var(--first-color);
}
.section_1{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    row-gap: 20px;
    margin-top: 20px;
}
.s1{
    /*width: 40vw;*/
    /*height: 40vh;*/
    background-color: white;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom: 2px solid var(--first-color);
    border-right: 2px solid var(--first-color);
    border-left: 2px solid var(--first-color);
    /*border: 2px solid var(--first-color);*/
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
.s{
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}
.s1-h{
    text-align: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-color: #6923d038;
    color: var(--first-color);
    margin: 0;
    padding: 5px 5px;
    font-weight: bold;
    border: 2px solid var(--first-color);
}
.table{
    margin-top:15px;
}
thead{
    background-color: var(--first-color);
    /*height:10%;*/
}
th{
    color: white;
    font-size: 14px;
}
td{
    font-size: 14px;
}
/*Form style*/
.f{
    padding: 1rem;
}
.f-l{
    display: block;
    margin-bottom: 0.5rem;
}
.input select, .input input{
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.input{
    margin-bottom: 1rem;
}
.f-button{
    background-color: var(--first-color);
    display: none;
    color: white;
    padding: 7px 14px;
    display: block;
    margin: auto;
    border: 3px solid var(--first-color);
    border-radius: 5px;
    font-weight: bold;
}
.f-s-button{
    background-color: var(--first-color);
    color: white;
    padding: 2px 11px;
    display: block;
    margin: auto;
    border: 3px solid var(--first-color);
    border-radius: 4px;
    font-weight: bold;
}
.f-button:hover{
    background-color: white;
    color: var(--first-color);
    border: 3px solid var(--first-color);
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}
.f-padding{
    margin: 2vh 10vw;
}
.f-h{
    width: 50%;
    display: inline;
}
.f-h-div{
    display: flex;
    gap:20px;
}
.r-o{
    background-color: #e9ecef;
    opacity: 1;
}


lable{
    font-weight: bold;
}
.form-control{
   height: 30px;
    font-size: 12px;
}
@keyframes bake-pie {
  from {
    transform: rotate(0deg) translate3d(0,0,0);
  }
}

.pieID {
  display: inline-block;
  vertical-align: top;
}
.pie {
  height: 200px;
  width: 200px;
  position: relative;
  margin: 0 30px 30px 0;
}
.pie::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 100px;
  height: 100px;
  background: #EEE;
  border-radius: 50%;
  top: 50px;
  left: 50px;
}
.pie::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
  box-shadow: 0 0 3px 4px rgba(0,0,0,0.1);
  margin: 220px auto;
  
}
.slice {
  position: absolute;
  width: 200px;
  height: 200px;
  clip: rect(0px, 200px, 200px, 100px);
  animation: bake-pie 1s;
}
.slice span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  clip: rect(0px, 200px, 200px, 100px);
}
.legend {
  list-style-type: none;
  padding: 0;
  margin: 0;
  background: #FFF;
  padding: 15px;
  font-size: 13px;
  box-shadow: 1px 1px 0 #DDD,
              2px 2px 0 #BBB;
}
.legend li {
  width: 110px;
  height: 1.25em;
  margin-bottom: 0.7em;
  padding-left: 0.5em;
  border-left: 1.25em solid black;
}
.legend em {
  font-style: normal;
}
.legend span {
  float: right;
}
.timeline {
  position: relative;
  width: 660px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 1em 0;
  list-style-type: none;
}

.timeline:before {
  position: absolute;
  left: 50%;
  top: 0;
  content: ' ';
  display: block;
  width: 6px;
  height: 100%;
  margin-left: -3px;
  background-color: #6923D0;
  /*background: -moz-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);*/
  /*background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,87,153,1)), color-stop(100%,rgba(125,185,232,1)));*/
  /*background: -webkit-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);*/
  /*background: -o-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);*/
  /*background: -ms-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);*/
  /*background: linear-gradient(to bottom, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);*/
  
  z-index: 5;
}

.timeline li {
  padding: 1em 0;
}

.timeline li:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.direction-l {
  position: relative;
  width: 300px;
  float: left;
  text-align: right;
}

.direction-r {
  position: relative;
  width: 300px;
  float: right;
}

.flag-wrapper {
  position: relative;
  display: inline-block;
  
  text-align: center;
}

.flag {
  position: relative;
  display: inline;
  background: rgb(248,248,248);
  padding: 6px 10px;
  border-radius: 5px;
  
  font-weight: 600;
  text-align: left;
}

.direction-l .flag {
  -webkit-box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  -moz-box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
}

.direction-r .flag {
  -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  -moz-box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
}

.direction-l .flag:before,
.direction-r .flag:before {
  position: absolute;
  top: 50%;
  right: -35px;
  content: ' ';
  display: block;
  width: 12px;
  height: 12px;
  margin-top: -10px;
  background: #fff;
  border-radius: 10px;
  border: 4px solid rgb(255,80,80);
  z-index: 10;
}

.direction-r .flag:before {
  left: -40px;
}
main{
    margin-top:50px;
}
.direction-l .flag:after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  height: 0;
  width: 0;
  margin-top: -8px;
  border: solid transparent;
  border-left-color: rgb(248,248,248);
  border-width: 8px;
  pointer-events: none;
}

.direction-r .flag:after {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  height: 0;
  width: 0;
  margin-top: -8px;
  border: solid transparent;
  border-right-color: rgb(248,248,248);
  border-width: 8px;
  pointer-events: none;
}

.time-wrapper {
  display: inline;
  
  line-height: 1em;
  font-size: 15px;
  color: rgb(250,80,80);
  vertical-align: middle;
}

.direction-l .time-wrapper {
  float: left;
}

.direction-r .time-wrapper {
  float: right;
}

.time {
  display: inline-block;
  padding: 4px 6px;
  background: rgb(248,248,248);
}

.desc {
  margin: 1em 0.75em 0 0;
  
  font-size: 0.77777em;
  font-style: italic;
  line-height: 1.5em;
}

.direction-r .desc {
  margin: 1em 0 0 0.75em;
}

/* ================ Timeline Media Queries ================ */

@media screen and (max-width: 660px) {

.timeline {
 	width: 100%;
	padding: 4em 0 1em 0;
}

.timeline li {
	padding: 2em 0;
}

.direction-l,
.direction-r {
	float: none;
	width: 100%;

	text-align: center;
}

.flag-wrapper {
	text-align: center;
}

.flag {
	background: rgb(255,255,255);
	z-index: 15;
}

.direction-l .flag:before,
.direction-r .flag:before {
  position: absolute;
  top: -30px;
	left: 40%;
	content: ' ';
	display: block;
	width: 12px;
	height: 12px;
	margin-left: -9px;
	background: #fff;
	border-radius: 10px;
	border: 4px solid rgb(255,80,80);
	z-index: 10;
}

.direction-l .flag:after,
.direction-r .flag:after {
	content: "";
	position: absolute;
	left: 40%;
	top: -8px;
	height: 0;
	width: 0;
	margin-left: -8px;
	border: solid transparent;
	border-bottom-color: rgb(255,255,255);
	border-width: 8px;
	pointer-events: none;
}

.time-wrapper {
	display: block;
	position: relative;
	margin: 4px 0 0 0;
	z-index: 14;
}

.direction-l .time-wrapper {
	float: none;
}

.direction-r .time-wrapper {
	float: none;
}

.desc {
	position: relative;
	margin: 1em 0 0 0;
	padding: 1em;
	background: rgb(245,245,245);
	-webkit-box-shadow: 0 0 1px rgba(0,0,0,0.20);
	-moz-box-shadow: 0 0 1px rgba(0,0,0,0.20);
	box-shadow: 0 0 1px rgba(0,0,0,0.20);
	
  z-index: 15;
}

.direction-l .desc,
.direction-r .desc {
	position: relative;
	margin: 1em 1em 0 1em;
	padding: 1em;
	
  z-index: 15;
}

}
.star{
    color: red;
    font-weight: bold;
}


        .cards{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-evenly;
        }
        .box h6{
            position: relative;
            color: black;
        }
        .box h6 i{
            position: absolute;
            right: 0;
        }
        .box p {
            color: hsl(229, 6%, 66%);
            font-size: 14px;
            color: black;
        }
        
        .box {
            border-radius: 5px;
            /*box-shadow: 0px 30px 40px -20px hsl(229, 6%, 66%);*/
            box-shadow: 1px 1px 0px 0px hsl(229, 6%, 66%);
            padding: 10px;
            margin: 20px; 
            width: 15vw;
            background-color: #8080800d;
        }
        .ad_btn{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-evenly;
            margin: 30px 0;
            padding: 10px 0;
        }
        .ad_btn a{
            width: 20vw;
            text-align: center;
            /*box-shadow: 0px 30px 40px -20px hsl(229, 6%, 66%);*/
            box-shadow: 1px 1px 0px 0px hsl(229, 6%, 66%);
            padding: 10px;
            border-radius: 5px;
            background-color: var(--first-color);
            color: white;
            font-weight: bold;
            text-decoration: none;
        }
        @media screen and (max-width: 769px){
            .box {
                border-radius: 5px;
                /*box-shadow: 0px 30px 40px -20px hsl(229, 6%, 66%);*/
                box-shadow: 1px 1px 0px 0px hsl(229, 6%, 66%);
                padding: 10px;
                margin: 20px;
                width: 20vw;
            }
            .ad_btn a{
                width: 40vw;
                text-align: center;
                /*box-shadow: 0px 30px 40px -20px hsl(229, 6%, 66%);*/
                box-shadow: 1px 1px 0px 0px hsl(229, 6%, 66%);
                padding: 10px;
                border-radius: 5px;
                background-color: var(--first-color);
                color: white;
                font-weight: bold;
                text-decoration: none;
            }
        }
        @media screen and (max-width: 426px){
            .box {
                border-radius: 5px;
                /*box-shadow: 0px 30px 40px -20px hsl(229, 6%, 66%);*/
                box-shadow: 1px 1px 0px 0px hsl(229, 6%, 66%);
                padding: 10px;
                margin: 20px;
                width: 50vw;
            }
            .ad_btn a{
                width: 50vw;
                text-align: center;
                /*box-shadow: 0px 30px 40px -20px hsl(229, 6%, 66%);*/
                box-shadow: 1px 1px 0px 0px hsl(229, 6%, 66%);
                padding: 10px;
                border-radius: 5px;
                background-color: var(--first-color);
                color: white;
                font-weight: bold;
                text-decoration: none;
            }
        }
        img {
            /*display: block;*/
            margin: auto 0 auto auto;
        }
        .c_c_1 {
            border-top: 3px solid hsl(0, 78%, 62%);
        }
        .c_c_2{
            border-top: 3px solid hsl(180, 62%, 55%);
        }
        .c_c_3{
            border-top: 3px solid hsl(34, 97%, 64%);
        }
        .c_c_4{
            border-top: 3px solid hsl(212, 86%, 64%);
        }
        .c_c_5{
            border-top: 3px solid #C2862D;
        }
        .c_c_6{
            border-top: 3px solid #21184D;
        }
        .c_c_7{
            border-top: 3px solid #BD62A8;
        }
        .c_c_8{
            border-top: 3px solid #54AE93;
        }
        .c_i_1 {
            color: hsl(0, 78%, 62%);
        }
        .c_i_2{
            color: hsl(180, 62%, 55%);
        }
        .c_i_3{
            color: hsl(34, 97%, 64%);
        }
        .c_i_4{
            color: hsl(212, 86%, 64%);
        }
        .c_i_5{
            color: #C2862D;
        }
        .c_i_6{
            color: #21184D;
        }
        .c_i_7{
            color: #BD62A8;
        }
        .c_i_8{
            color: #54AE93;
        }
    
.details-bg{
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1000;
            background-color: rgb(0 0 0 / 40%);
        }
        .details{
            display: none;
            position: fixed;
            top: 2.5%;
            left: 2.5%;
            z-index: 1001;
            width: 95%;
            height: 95%;
            background-color: white;
            border-radius: 5px;
            background-color: var(--body-color);
        }
        .details-bg1{
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1000;
            background-color: rgb(0 0 0 / 40%);
        }
        .details1{
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1001;
            width: calc(100% - 40px);
            height: calc(100% - 40px);
            margin: 20px;
            background-color: white;
            border-radius: 5px;
            background-color: var(--body-color);
        }

#timeline {
	@include prefix(transition, all 0.5s ease);	
  margin: 2%;
  padding: 0;
	position: relative;
  width: 100%;
	&:after {
    clear: both;
		content: "";
		display: table;
		width: 100%;
	}	
  		.timeline-item {
        @extend %clearfix;
        @include animate(fadein 1s linear 1 forwards);
        display:block;
        float:left;
		    margin:0;
        opacity:0;
		    position: relative;
        width:30%;
        &:after{
		border-top: 3px solid $blue;
    padding-bottom:100%;     
    margin-left: 50%; 
	    }	
&:before
{
  content: '';
  border-bottom: 7px solid transparent;
  border-left: 7px solid $yellow; 
  border-top: 7px solid transparent;
      height: 15px;
   left: 100%;
    position: absolute;
    top: -6px;
    width: 15px;   
}
   &.two{     
     animation-delay: 0.5s; 
}   
  &.three{  
     animation-delay: 1s;
    &:after{
      border: 3px solid $blue;
      border-left: 0;
border-radius: 0 50% 50% 0;
margin-left: 50%;      
	    }	
            &:before {
        @include calc(left, "150% - 8px");     		
  border-left:7px solid transparent; 
  border-top:7px solid $yellow; 
  border-right:7px solid transparent;    
  top: 50%;
		}
}   
  &.four{  
    animation-delay: 1.5s;
    float:right;
    margin-right: 10%;
    margin-top:-3px;
    &:after{   
  margin-left: -50%;
	    }	
    &:before {
      border-left:7px solid transparent;
      border-right:7px solid $yellow;  
              left:0;
		}
}   
&.five{  
    animation-delay: 2s;
    float:right;
    margin-top:-3px;
    &:after{   
  margin-left: -50%;
	    }	
    &:before {
      border-left:7px solid transparent;
      border-right:7px solid $yellow;  
      left:0;
		}
}
    &.six{  
      animation-delay: 2.5s;
      float:right;
      margin-top:-3px;
       &:after{
         border: 3px solid $blue;
border-left: 0;
border-radius: 50%;
border-right: 0;
margin-bottom:-3px;
margin-left:0;
         
	    }	
            &:before {
        left:0;
              margin-left:-7px;
	top: 50%;
  border-left:7px solid transparent; 
  border-right:7px solid transparent;  
  border-top:7px solid $yellow; 
		}
        }  
    &.seven{   
      animation-delay: 3s;
}   
  &.eight{ 
    animation-delay: 3.5s;
}   
 &.nine{ 
   animation-delay: 4s;
   &:after{
          border: none;
                   }
                   &:before{
          border: none;
                   }
}           
  }  
        
	.timeline-content {
			@include prefix(transition, all .5s ease);
    padding:5%;
     padding-top:10%;
    position:absolute;
    text-align: justify;
    width: 100%;
			h1 {
        color: $darkgray;
        font:{
              family: "Dosis", arial, tahoma, verdana;
              size:1.3rem;
              weight: 500;
            }
 margin: 10px 0 0 50%;	
        line-height:1.5rem;	
				padding:0;
				text-align:left;
			  text-transform:uppercase;
        width: 100%;
			}
 p{
      margin-left:50%;
      padding-right:10%;
      text-align:justify;
      width:100%;
    }
			&:before {
        @include prefix(border-radius, 50%);
        background-color: $white;
        border:3px solid $blue; 
				content: '';
        height: 15px;
        left: 50%;
				position: absolute;
				top: -5px;
				width: 15px;
    }
	}
  button{
    background:$blue;
    border:0;
    color:$white;
    display:block;
    margin-top:10px;
    padding:5px 15px;
    width:100%;
    a{
      color:$white;
		  font-family: "Dosis", arial, tahoma, verdana;
      font-size:1rem;
      text-decoration: none;
    }
  }
}

@include keyframes (fadein) {
	0% { opacity: 0; }
  100% { opacity: 1; }
}

@media screen and (max-width: 768px) {
#timeline {
  width:95%;
		.timeline-item {
      &.one,
      &.two,
      &.three,
      &.four,
      &.five,
      &.seven,
      &.eight,
      &.nine{
        display:block;
       	float:left;
	    	width:100%; 
       &:after{
           border: none;
		border-left: 3px solid $blue;
         margin-left: 1px;
    padding-bottom:40%;     
	    }	
&:before {
				content: '';
  border-left:7px solid transparent; 
  border-right:7px solid transparent;  
  border-top:7px solid $yellow;
				height: 15px;
				left: -5px;
        position: absolute;
				top: 50%;
				width: 15px;
		}        
         &:last-child{
                     &:after{
          border: none;
                   }
                   &:before{
          border: none;
                   }
        }
      }
      &.six{
		width:100%; 
       &:after{
        border-right: 0;
        border-left: 0;
         margin-left:-20%;
         padding-bottom: 40%;
         width: 40%;
         
	    }	
        &:before {
          border:none;
        }
      }
	}	
	
	.timeline-content {
			width: 100%;
			//background: rgba(255,255,255,0.7);
			@include prefix(transition, all .3s ease);
    padding-right:0;
    padding-top:0;
    position:absolute;
    text-align: justify;
    z-index:9;
			h1 {
				margin: -7px 0;	
			}
    p{
      margin-left:0;
      padding:0;
      width:100%;
    }
			&:before {
				left: -5px;
				top: -5px;
    }
	}
}
}
.card-content{
    padding: 15px;
}
.card-body{
            background-color: white;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
            border-radius: 4px;
            padding: 0 0;
            margin-top: 15px;
            border: 2px solid #6923d0;
        }
        .card-heading{
            margin: 0;
            text-align: center;
            font-weight: bold;
            font-size: 1rem;
            color: #6923d0;
            background-color: #6923d038;
            padding: 5px;
            border-bottom: 2px solid #6923d0;
        }


