/* Google Font Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
 
}

.body {
background-color:white;
}
.newslettermodal .col-md-8{
  padding-top: 50px;
  padding-bottom: 50px;
  padding-right: 20px;
  padding-left: 20px;
  text-align: center;
}
.newslettermodal .col-md-8 .newsletter form{
  display: flex;
}
.newslettermodal .col-md-8   h1 {
  font-weight: 700;
  text-transform: capitalize;

}
.newslettermodal .col-md-8  form  input {
  
  text-transform: capitalize;
  background-color: lightgray;
  color: white;
  height: 50px;
  border-radius: 0;

}
.newslettermodal .col-md-8  form  .btn {
  
  text-transform: capitalize;

  color: white;
  width: 200px;
  border-radius: 0;
  height: 48px;
  margin-top: 1px

}
.newslettermodal .col-md-8  form  input::placeholder{
  color:#242582;
}

.newslettermodal .col-md-4 .pic {
  background-color:#1abc9c;
  height: 377px;
  width: 300px;
  position: absolute;
  margin-left: -16px;
  margin-top: -16px;
}
p {
  font-weight: 700px;
  font-size: 20px;
}

.sidebar{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 78px;
  background: #11101D;
  padding: 6px 14px;
  z-index: 99;
  transition: all 0.5s ease;
}

.sidebar.open{
  width: 250px;
}
.sidebar .logo-details{
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}
.sidebar .logo-details .icon{
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar .logo-details .logo_name{
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar.open .logo-details .icon,
.sidebar.open .logo-details .logo_name{
  opacity: 1;
}
.sidebar .logo-details #btn{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 22px;
  transition: all 0.4s ease;
  font-size: 23px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
}
.sidebar.open .logo-details #btn{
  text-align: right;
}
.sidebar i{
  color: #fff;
  height: 60px;
  min-width: 50px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
}
.sidebar .nav-list{
  margin-top: 20px;
  height: 100%;
}
.sidebar li{
  position: relative;
  margin: 8px 0;
  list-style: none;
  padding-left: 0;
  margin-left: -30px;
}
.sidebar li .tooltip{
  position: absolute;
  top: -20px;
  left: calc(100% + 15px);
  z-index: 3;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: 0s;
}
.sidebar li:hover .tooltip{
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
  top: 50%;
  transform: translateY(-50%);
}
.sidebar.open li .tooltip{
  display: none;
}
.sidebar input{
  font-size: 15px;
  color: #FFF;
  font-weight: 400;
  outline: none;
  height: 50px;
  width: 100%;
  width: 50px;
  border: none;
  border-radius: 12px;
  transition: all 0.5s ease;
  background: #1d1b31;
}
.sidebar.open input{
  padding: 0 20px 0 50px;
  width: 100%;
}
.sidebar .bx-search{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 22px;
  background: #1d1b31;
  color: #FFF;
 
}
.sidebar.open .bx-search:hover{
  background: #1d1b31;
  color: #FFF;
}
.sidebar .bx-search:hover{
  background: #FFF;
  color: #11101d;
}
.sidebar li a{
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 12px;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
  background: #11101D;

}
.sidebar li a:hover{
  background: #FFF;
}
.sidebar li a .links_name{
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
.sidebar.open li a .links_name{
  opacity: 1;
  pointer-events: auto;
}
.sidebar li a:hover .links_name,
.sidebar li a:hover i{
  transition: all 0.5s ease;
  color: #11101D;
}
.sidebar li i{
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  border-radius: 12px;
}
.sidebar li.profile{
  position: fixed;
  height: 60px;
  width: 78px;
  margin-left:-50px;
  bottom: -8px;
  padding: 10px 14px;
  background: #a3a3a3;
  transition: all 0.5s ease;
  overflow: hidden;
}
.sidebar.open li.profile{
  width: 250px;

}
.sidebar li .profile-details{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
 
}
.sidebar li img{
  height: 45px;
  width: 45px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 10px;
}
.sidebar li.profile .name,
.sidebar li.profile .job{
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}
.sidebar li.profile .job{
  font-size: 12px;
}
.sidebar .profile #log_out{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #1d1b31;
  width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 0px;
  transition: all 0.5s ease;
}
.sidebar.open .profile #log_out{
  width: 50px;
  background: none;
}
.home-section{
  position: relative;
  background: #E4E9F7;
  min-height: 100vh;
  top: 0;
  left: 78px;
  width: calc(100% - 78px);
  transition: all 0.5s ease;
  z-index: 2;
}
.sidebar.open ~ .home-section{
  left: 250px;
  width: calc(100% - 250px);
}
.home-section .text{
  display: inline-block;
  color: #11101d;
  font-size: 25px;
  font-weight: 700;
  margin-top: 30px;
}
.home-section .box {
  background-color: white;
  box-shadow: 2px 4px 4px 2px lightgray;
  padding: 10px;
  border-radius: 10px;
}

.home-section .users .col-md-3 .box {
  background-color: white;

  box-shadow: 2px 4px 4px 2px lightgray;
  padding:20px;
}
.home-section .users .col-md-3 h6{
  font-size: 15px;
  font-weight: 100;
  color: gray;
  text-transform: capitalize;
}
.home-section .users .col-md-8 p{
  color: gray;
  font-size: 10px;
} 
.home-section .users .col-md-3:first-child .col-md-4 .bx {
  font-size: 35px;
  background-color: rgb(190, 80, 80);
  padding:10px;
  color: white;
 
}
.home-section .users .col-md-3:nth-child(2) .col-md-4 .bx {
  font-size: 35px;
  background-color:rgb(110, 116, 113);
  padding:10px;
  color: white;
 
}
.home-section .users .col-md-3:nth-child(3) .col-md-4 .bx {
  font-size: 35px;
  background-color:darkorchid;
  padding:10px;
  color: white;
 
}
.home-section .users .col-md-3:nth-child(4) .col-md-4 .bx {
  font-size: 35px;
  background-color:rgb(82, 206, 136);
  padding:10px;
  color: white;
 
}
.home-section .reg-users {
  margin-top: 50px;
}
.home-section .reg-users .box {
  background-color: white;
  box-shadow: 2px 4px 4px 2px lightgray;
  padding: 30px;
  height: 450px;
}

.home-section .sas nav{
  float: right;
}
.home-section .reg-users .sas h6 {
  padding-top: 10px;

  color: gray;
}
.home-section  .sas p {
  font-size: 10px;
  color: gray;
}
.home-section .reg-users .col-md-4 .sas {
  padding: 7px;
  margin-bottom: 30px;
}
.home-section .reg-users .col-md-4 .table tr td {
  border-bottom: none;
  font-weight: 100;
 
}
.home-section .reg-users .col-md-4 .table tr td img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.home-section .reg-users .box .table thead tr th {
  border-bottom: none;
  color: gray;
  font-weight: 400;
  text-transform: uppercase;
}
.home-section .reg-users .box .table tr td  {
  border-bottom: none;
  color: rgb(34, 32, 32);
   font-size: 15px;
  text-transform: uppercase;
}

.col-md-4 .reg-users .col-md-4 span{
  width: 1px;
}
.home-section .reg-users .col-md-4 span .bx:hover{
  font-size: 17px;
  color: red;
}
.home-section .user-ana{
  margin-top: 50px;
}
.home-section .user-ana .box {
  padding: 30px;
  height: 450px;
}

.home-section .user-ana .index {
  padding-top: 20px;

}
.home-section .user-ana .index .square1{
  height: 10px;
  width: 10px;
  background-color: red;
}
.home-section .user-ana .index .square2{
  height: 10px;
  width: 10px;
  background-color: darkslategray;
}
.home-section .user-ana .index .square3{
  height: 10px;
  width: 10px;
  background-color: black;
}
.home-section .analytics {
  margin-top: 50px;
}
.home-section .col-md-4 .table  tr td {
  font-size: 13px;
  margin-top: 10px;
 
}
.home-section  .table  tr th {
  font-size: 10px;
 
}

.home-section .welcome .col-md-8 .box{
  height: 500px;
}

.home-section .welcome .table tbody tr th {
  font-size: 13px;
  font-weight: 100;
  border-bottom: none;

  
}
.home-section .welcome .table tbody  {
  position: absolute;
  margin-left: 20px;
  display: none;
  
}
.home-section .welocome .table:first-child tbody tr td{
  display: block;
}
.home-section .welcome .table tbody tr td:first-child {
 margin-left:40px ;
}
.home-section .welcome .table tbody tr td {
  font-size: 13px;
  font-weight: 100;
  border-bottom: none;
  margin-top: 10px;
  border-radius: 30px;
  border-top-right-radius:30px;
  border-bottom-right-radius:30px;
  color: white;
  width: 120px;
}

.home-section .welcome .table .active {
  background-color:#0d6efd;

  border-radius: 10px;
 
  color: white;
}
.home-section .welcome .table thead tr th {
  margin-bottom: 10px;
  border-bottom: none;
  font-weight: 100;
  color: gray;
} 

.home-section .welcome .sas {

  margin-bottom: 20px;
}
.home-section .welcome .thth {
  position: absolute;
  width: 355px;
}

.home-section .welcome .thth  ul li {
  font-size: 13px;
  border: none;
  margin-top: 10px;

  
}
.home-section  .thth ul li h6{
  padding: 5px;
}
.home-section  .thth .live h6{
  padding: 0;
}
.home-section  .thth ul li:first-child{
 border-radius: 0;
  border-left: 1px solid red;

}
.home-section .thth ul li:last-child {
  border-radius: 0;
}
.home-section  .thth ul li{

  border-left: 1px solid darkslategray;

}
.home-section  .thth ul li h6{
  font-size: 12px;
}
.home-section .thth .box h6{
 text-transform: capitalize;
 
}
.home-section .course .sas ul {
  margin-top: 0;
}

.home-section .ttt .table {
  margin-top: 20px;
}
.home-section .ttt .table tbody tr td {
 font-size: 13px;
  border-radius: 30px;
}
.home-section .ttt .table tbody tr th {
  font-weight: 100;
  font-size: small;
}

.home-section .teachers {
  margin-bottom: 50px;
}
.home-section .teachers .card {
  border: none;

}
.home-section .teachers .card-header p{
  padding: 0;
  margin: 0 20px 0 0;
}
.home-section .teachers a {
  padding: 0;
  margin:0;
}
.home-section .teachers .dot {
  height: 7px;
  width: 7px;
  background-color: gray;
  border:1px solid white;
  border-radius: 50%;
  margin: 1px;
  display: inline-block;
  
  }
  
.home-section .teachers .dots {
   
    display: inline;
  
  position: absolute;
  margin-top: -38px;
 margin-left: 130px;
  text-align:right;
  
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  
    
  }
.modal-body  p  {
  font-size: small;
  text-transform: capitalize;

}
.modal-body .top i {
  color: orange;
  font-size: medium;
}

.modal-body h6{
  text-transform: capitalize;
  padding-top: 20px;
}
.modal-body .top  img {
  margin-left: 200px;
}
.modal-body .middle h6{
  text-transform: capitalize;
  text-align: center;
  padding-top: 25px;
  
}

.modal-body .middle p{
  text-align: center;
  font-size: 15px;
  
}
.modal-body .middle i {
  color: orange;
  font-size: 15px;
}
.home-section .types .col-md-3:first-child .box{
background-color: #242582;
color: white;

} 
.home-section .types .col-md-3:nth-child(2) .box{
  background-color: #1abc9c;
  color: white;
} 
.home-section .types .col-md-3:nth-child(3) .box{
  background-color: #3498db;
  color: white;
}
.home-section .types .col-md-3:last-child .box{
  background-color: #023F92;
  color: white;
}
.home-section .lesson ul li {
  border: none ;
  margin: none;
  padding-left: 0;

  padding:5px 5px 5px 0 ;
  font-size: 13px;
  display: inline;
  text-transform: capitalize;
  
}

.home-section .lesson h6{
 font-weight: 100;
 font-size: small;


}
.home-section .lesson .accordion-body ul li {
 color: white ;
 background-color:darkslategray;
 padding: 7px;
 margin-bottom: 5px;
}
.home-section .lesson  .accordion-header button  {
  font-size: 15px;
  border: 1px solid white;
}
.home-section .lesson .accordion-item {
  border: 1px solid white;

 
}
.home-section .lesson p {
  font-size: small;
}
.home-section .lesson ul li .bx {
  color: green;
}
.home-section .lesson .below {
  margin-top: 30px;
}
.home-section .lesson .below  .table thead tr th {
  border:none ;

}
.home-section .lesson .below .table tbody tr td {
  border-bottom: none ;
  text-transform: capitalize;
}
.home-section .lesson .below .table a {
  text-decoration: none ;
}
.home-section .lesson .below ul#menu li {
  display: inline;
  padding:20px 20px 20px 30px;
 font-size: 17px;
 position: relative;

}

.home-section .lesson .below ul#menu li:first-child{
  padding-left: 0px;
}
.quiz .modal-body {
  height: 500px;
}

.quiz .modal-body .col-md-4 ul li {
  color: white ;
  background-color: #023F92;
 display:none ;
 position: absolute;
 width: 230px;
 margin-top: 150px;
 border:none;
 
}
.quiz .modal-body .col-md-8 form {
  margin-top: 20%;
  position: absolute;
  display: none;
}

.quiz .modal-body .col-md-8 form:first-child{
  display: block;
}
.quiz .modal-body .col-md-4 .questions {
  width: 230px;
  height: 501px;
  margin-top: -17px;
  margin-left: -16px;
  background-color: #023F92;

}
.quiz .modal-body .col-md-4 ul li:first-child {
  display: block;

}

.quiz .modal-body .col-md-8 form label {
  font-size: 25px;
  text-transform: uppercase;
  margin-left: 5px;
}
.quiz .modal-body .col-md-8 #form2 label {
  font-size: 17px;
  text-transform: uppercase;
  padding: 20px;
  margin-top: -5px;
 
}

.quiz .modal-body .col-md-8 form input{
  height: 20px;

}

.dash .col-md-4 .bx {
  
  text-align: center;
  font-size: 17px;
  margin-top: 30px;
  margin-bottom: 30px;

  border-radius: 50%;
margin-left: -35px;
padding: 8px;
  
  
  
}
.dash .col-md-4 .col-md-4:nth-child(2) .bx {
 margin-left: -10px;
}

.dash img{
margin-top: 25px;
margin-bottom: 25px;
}
.dash .col-md-4 .bx .noti {
  background-color: red ;
  height:  5px ;
  width:  5px;
  border-radius: 50%;
  position: absolute;
  margin-left: 19px;
  margin-top: -20px;
  
}
.dash .pic {
  display: flex;
}
.dash .btn {
  margin-top: 30px;
  margin-left: -58px;
 color: gray;
  font-size:13px;
  font-weight: 700;
  text-transform: capitalize;
}
.dash .btn:focus {
  outline: none;
  box-shadow: none;
}
.dash p{
  font-size: 10px;
  color: gray;
  font-weight:700;
  margin-top: -10px;
}
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#0C9;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  z-index: 11;

}
.f-circle{

	width:50px;
	height:50px;
	bottom:10px;
	right:40px;
	background-color:#0C9;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
 margin-top: -43px;

opacity: 0;
}
#f-circle1{
  background-color: indigo;
}
#f-circle2{
  background-color:mediumorchid;
}
#f-circle3{
  background-color:blue;
}



.my-float{
	margin-top:22px;
  z-index: 11;
}
.my-float-1 {
  margin-top: 18px;
}
.home-section .col-md-8 .content{
  display: none;
 
}
.home-section .course .col-md-4 {
  margin-bottom: 30px ;
}

 .home-section .course .months .list-item {
  width: 200px;
  height: 100%;
  color: black;
  margin-left: 10px;
  display: inline-block;
  background-color: blueviolet;
}

.home-section .course .months  .scroll { 
  height: 100px;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  width: auto;
}
.home-section .course .card-footer a {
  color: black;
}
.home-section .course .card-footer a .bx:hover {
  color: #0d6efd;
}
.home-section .course a .online {
  background-color: lime;
  border-radius: 50%;
  height: 8px ;
  width: 8px;
  margin-left: 30px;
  margin-top: -10px;
  border:1px solid white;

  position: absolute;
}
.home-section .course .card .dp {
    background-color:transparent;
    border:transparent;
    padding-left:0;
    margin-top:-10px;
    margin-left:180px
}
/*float_panel



* FLOATING SIDEBAR */
.float-panel ul {
  clear: both;
	position: fixed;
	display: block;
	list-style-type: none;
	right: -3.2em;
	top: 25%;
	-webkit-animation: slideright 1s forwards;
	-webkit-animation-delay: 1.5s;
	animation: slideright 1s forwards;
	animation-delay: 1.5s; 
  z-index: 11;
}

@keyframes slideright {
	100% {
		right: 0;
	}
}

.float-panel li {


 	background-color: white;

  
	-webkit-transition: width .5s, background-color .1s;
	transition: width .5s, background-color .1s;
  border-bottom: none;
  box-shadow: 1px 1px 1px 1px lightgray;
}

.float-panel li a {
	font-size: 13px;
	text-transform: none;
	text-align: center;
  text-decoration: none;

}

.float-panel li:hover {
	background-color: rgba(30, 45, 127, 1);
	color:white;
}
.float-panel li:hover  a{
	
	color:white;
}
/*show case */
.showcase {
background: url('../img/website-background-image-size-psd-vector-photo.jpg');
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 900px;
  background-attachment: fixed;

  background-color: black;
  font-family: 'Poppins', sans-serif;
  color: white;
  margin-bottom: 100px;
  
}
.showcase h2 {
  padding-top: 20px;
 padding-left: 0px;
  font-size: 40px;
  text-transform: capitalize;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}
.showcase p{
  padding-left: 0px;
  font-family: 'Poppins', sans-serif;
  color: slateblue;
  font-size: 15px;
}
.showcase  .col-md-6:first-child .btn {
  margin-left: 50px;
 width: 200px;
 
}
.showcase h4 {
  margin-top: 15px;
  text-transform: lowercase;
  font-size: 30px;
  font-weight: 700;
  padding-left: 5px;
  padding-top: 50px;
  font-family: 'Dancing Script', cursive;
}
.showcase .col-md-6:nth-child(2) img {
  width: 100%;
  height: 100%;
}
.showcase nav {
  display: flex;
  justify-content: space-between;
  padding: 15px 5%;
  align-items: center;
  background: transparent;
}

.showcase .logo {
  color: #FFF;

  margin-left:-40px;
  padding:0;
}

.showcase ul {
  list-style: none;
}

.showcase ul li {
  display: inline-block;
  color:white;
  font-family:'Poppins', sans-serif;
}

.showcase ul li a {
  text-decoration: none;
  color: white;
  padding: 8px 20px;
 
  transition: all .3s ease;
}

.showcase ul li a:hover,
ul li a.active {
  color:  #0C9;
  border-bottom:1px solid #0C9;
  
}

.showcase #icon {
  background-color: #0075FF;
  padding: 5px 7px 3px 7px;
  border-radius: 4px;
  cursor: pointer;
  transition: all .3s ease;
}

.showcase #icon svg {
  color: #FFF;
  height: 28px;
  transition: all .3s ease;
}

.showcase #icon:hover {
  background: #FFF;
}

.showcase #icon:hover svg {
  color: #0075FF;
}

.showcase #checkbox,
#icon {
  display: none;
}

@media screen and (max-width: 768px) {
  

  .showcase ul {
      position: absolute;
      width: 100%;
      height: calc(100vh - 71px);
      background-color: #18283B;
      left: 0;
      top: 0;
      text-align: center;
      display: none;
      margin-top: 101px;
  }

  .showcase ul li {
      display: block;
      padding: 10px 15px;
  }

  .showcase ul li a {
      display: block;
      padding: 10px 0;
  }

  .showcase #icon {
      display: block;
  }

  .showcase #checkbox:checked~ul {
      display: block;
  }
   #showcaseul{padding-left:0px;}
}
.intro {
  margin-bottom: 100px;
}
.intro h1{
  font-family: 'Poppins',sans-serif;
  font-size: 30px; 
  font-weight: bold;

  color: #0C9;
  text-transform: capitalize;
}
.intro p {
  color: gray;
  font-family: 'Poppins',sans-serif;
  padding-top: 30px;
  padding-left: -80px;
  font-size: 17px;
  
}
.intro .col-md-4 img {
 width: 320px;
 height: 320px;


 margin-top: -10px;
}
.intro .shape1 {
  background-color: orange;
  height: 60px;
  width: 60px;
  border-radius: 50px;
  margin-left: 300px;
  opacity: 0.5;
  margin-top:-80px;
 

}
.intro-col{
  padding: 50px;
  margin-top:300px;
  height: 600px;
}
.intro-col .col-md-6:first-child{
  
  border-radius: 30px;

  height: 400px;
}
.intro-col .col-md-6:first-child .bx{
  color: #023F92;
  font-size: 80px;
 margin-top: 35%; 
 margin-left: 40%; 
  background-color: #0af;
  border-radius: 50%;

} 
.intro-col .col-md-6:last-child {
  padding: 50px;
}
.intro-col .col-md-6:last-child h4{
  font-weight: bold;
  font-family: 'Poppins',sans-serif;
  text-transform: capitalize;
  text-shadow: 2px 2px 2px 2px lightgray;
  color: #0C9;
  font-size: 25px;
  padding: 10px;
}
.intro-col .col-md-6:last-child small {
  color: gray;
  font-family: 'Poppins',sans-serif;
}
.intro-col .col-md-6:last-child ul li {
  border:none;
  padding-left: 0;
  padding: 2px;
  color: gray;
  text-transform: capitalize;
  background-color: transparent;
}
.intro-col .col-md-6:last-child ul li .bx{
  color: orangered;
}
.intro .shape2 .bx-calculator {
font-size: 100px;
color:#6a6ce4;
opacity: 0.5;
margin-top: -530px;
margin-left: 800px;
position: absolute;
}
.intro .shape3 .bxs-cloud {
  font-size: 100px;
  position: absolute;
  margin-top: -530px;
  margin-left: 950px;
 color: lightgray;
  opacity: 0.5;
 animation: name 1.5s linear infinite;
}
.intro .shape4 {
  border:lightcoral 2px dashed;
  height: 200px;
  width: 200px;
  transform: rotate(-20deg);
 
  border-top: transparent;
  border-right: transparent;
  border-bottom-left-radius: 90%;
  margin-top: -150px;
  position: absolute;


}

/* stuff */
 .col-md-12 {
  margin-top: 100px;
  text-align: center;
  padding:50px;
  padding-left: 0px;
  font-family:'Poppins',sans-serif;
 


}

.col-md-12 h4{
  font-size: 35px;
  text-transform: capitalize;
  font-size: 28px;
  color: #023F92;
  font-weight: 700;

 
}
.col-md-12 P{
  color: gray;
  padding: 0;
  
  font-size: medium;
}
.col-md-12 .left-thing {
  border: 1px solid #0C9;
  height: 50px;
  width: 90px;
  position: absolute;
  margin-left: 200px;
  transform: rotateX(60deg);
  border-left: transparent;
  border-top: transparent;
  border-right: transparent;
  margin-top: -100px;
  

}
.col-md-12 .right-thing {
  border: 1px solid #0C9;
  height: 50px;
  width: 90px;
  position: absolute;
  margin-left: 830px;
  transform: rotateX(60deg);
  border-left: transparent;
  border-top: transparent;
  border-right: transparent;
  margin-top: -100px;
  
  

}
.col-md-12 .shape4 {
  border:lightcoral 2px dashed;
  height: 200px;
  width: 200px;
  transform: rotate(200deg);
  margin-left: 950px;
  border-top: transparent;
  border-right: transparent;
  border-bottom-left-radius: 90%;
  margin-top: -30px;
  position: absolute;


}



.a-course {
    margin-bottom:50px;
}
.a-course .col-md-4 .btn {
    background-color:#0C9;
    border:#0C9;
}
.profile-card-2  {
    max-width: 100%;
    background-color: #FFF;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
   
    background-position: center;
    overflow: hidden;
    position: relative;
    margin: 10px auto;
    cursor: pointer;
    border-radius: 10px;
    height:350px;
    margin-bottom:50px;
}

.profile-card-2 img {
    transition: all linear 0.25s;
      width:100%;
     
}

.profile-card-2 .profile-name {
    position: absolute;
    left: 30px;
    bottom: 70px;
    font-size: 25px;
    text-transform:uppercase;
    color: #FFF;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    transition: all linear 0.25s;
}

.profile-card-2 .profile-icons {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: #FFF;
    transition: all linear 0.25s;
}

.profile-card-2 .profile-username {
    position: absolute;
    bottom: 50px;
    left: 30px;
    color: #FFF;
    font-size: 13px;
    transition: all linear 0.25s;
}

.profile-card-2 .profile-icons .fa {
    margin: 5px;
}

.profile-card-2:hover img {
    filter: grayscale(100%);
}

.profile-card-2:hover .profile-name {
    bottom: 80px;
}

.profile-card-2:hover .profile-username {
    bottom: 60px;
}
.profile-card-2:hover .card-action2 {
    bottom: 0;
    
}
.profile-card-2:hover .card-action2 .background {
    filter: blur(8px);
  -webkit-filter: blur(8px);
  -webkit-transform: scale(1.8);
  transform: scale(2.8);
}



.profile-card-2:hover .profile-icons {
    right: 40px;
}
 .profile-card-2 .card-action {
         position: absolute;
    bottom: 65px;
    right: 30px;
    color: #FFF;
    transition: all linear 0.25s;
        color: #E26D5C;
        background: #fff;
        border-radius: 100%;
        padding: 15px;
        font-size: 15px;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.19);
         
    }

  .profile-card-2   .card-action:hover {
        color: #fff;
        background: #E26D5C;
        -webkit-animation: pulse 1.5s infinite;
    }
@-webkit-keyframes pulse {
        0% {
            -moz-transform: scale(0.9);
            -ms-transform: scale(0.9);
            -webkit-transform: scale(0.9);
            transform: scale(0.9);
        }

        70% {
            -moz-transform: scale(1);
            -ms-transform: scale(1);
            -webkit-transform: scale(1);
            transform: scale(1);
            box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
        }

        100% {
            -moz-transform: scale(0.9);
            -ms-transform: scale(0.9);
            -webkit-transform: scale(0.9);
            transform: scale(0.9);
            box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
        }
    }
.card-action2{
  font-family: 'Open Sans', Arial, sans-serif;
  position: absolute;
  z-index:2;
       bottom: 350px;
  float: left;
  overflow: hidden;
  width: 100%;
  color: #ffffff;
  text-align: center;
  
  border:none;
  transition: all linear 0.5s;
}
.profile-card-1 {
  font-family: 'Open Sans', Arial, sans-serif;
  position: relative;
  float: left;
  overflow: hidden;
  width: 100%;
  color: #ffffff;
  text-align: center;
  height:350px;
  border:none;
}
.profile-card-1 .background {
  width:100%;
  height:100%;
  vertical-align: top;
  opacity: 0.9;
   filter: blur(8px);
  -webkit-filter: blur(8px);
  -webkit-transform: scale(1.8);
  transform: scale(2.8);
}
.profile-card-1 img {
    width:100px;
    height:100px;
}
.profile-card-1 .card-content {
  width: 100%;
  padding: 15px 25px;
  position: absolute;
  left: 0;
  top: 50%;
}
.profile-card-1 .profile {
  border-radius: 50%;
  position: absolute;
  bottom: 50%;
  left: 50%;
  max-width: 100px;
  opacity: 1;
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 1);
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}
.profile-card-1 h2 {
  margin: 0 0 5px;
  font-weight: 600;
  font-size:25px;
}
.profile-card-1 h2 small {
  display: block;
  font-size: 15px;
  margin-top:10px;
}
.profile-card-1 i {
  display: inline-block;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    border: 1px solid #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    margin:0 5px;
}
.profile-card-1 .icon-block{
    float:left;
    width:100%;
    margin-top:15px;
}
.profile-card-1 .icon-block a{
    text-decoration:none;
}
.profile-card-1 i:hover {
  background-color:#fff;
  color:#2E3434;
  text-decoration:none;
}
.news{
  padding: 4.8px 0 9.6px 0;
text-align: center;
}
.news-heading{
  font-size: 44px;
  line-height: 1.4;
  font-weight:700;
  color: #333;
}
.news p{
  font-size: 18px;
  margin-bottom: 16px;
  margin-top: 12px;
  line-height: 1.8;
  
}

.news input[type="email"]{
  display: inline-block;
  width: 60%;
  padding: 18px 36px;
  margin: 8px 0;
  border: 1px solid #ccc;
  box-sizing: border-box;
  height: 70px;
  margin-top: 18px;
  border-radius: 20px;
  border: none;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.06); 

}
.news input,
   input::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 3;
}

.news .bt {
  margin-left: -160px;
    font-size: 16px;
    display: inline-block;
    font-weight: 600;
  padding: 16px 32px;
  border-radius: 20px;

  /* Only necessary for .btn */
  border: none;
  cursor: pointer;
  background-color:#48B774;
  color: #fff;
}

 
ul {
	 list-style-type: none;
}
 a, a:hover {
	 text-decoration: none;
}
.course .col-md-4 ul li {
    border:none ;
}
.course .col-md-4 .box .student {
  height:250px;
}

 .testimonial {
	 padding: 100px 0;
}
 .testimonial .row .tabs {
	 all: unset;
	 margin-right: 50px;
	 display: flex;
	 flex-direction: column;
}
 .testimonial .row .tabs li {
	 all: unset;
	 display: block;
	 position: relative;
}
.testimonial .row .tabs li.active::before {
	 position: absolute;
	 content: "";
	 width: 50px;
	 height: 50px;
	 background-color: #71b85f;
	 border-radius: 50%;
}
 .testimonial .row .tabs li.active::after {
	 position: absolute;
	 content: ""	;
	 width: 30px;
	 height: 30px;
	 background-color: #71b85f;
	 border-radius: 50%;
}
 .testimonial .row .tabs li:nth-child(1) {
	 align-self: flex-end;
}
 .testimonial .row .tabs li:nth-child(1)::before {
	 left: 64%;
	 bottom: -50px;
}
 .testimonial .row .tabs li:nth-child(1)::after {
	 left: 97%;
	 bottom: -81px;
}
 .testimonial .row .tabs li:nth-child(1) figure img {
	 margin-left: auto;
}
 .testimonial .row .tabs li:nth-child(2) {
	 align-self: flex-start;
}
  .testimonial .row .tabs li:nth-child(2)::before {
	 right: -65px;
	 top: 50%;
}
 .testimonial .row .tabs li:nth-child(2)::after {
	 bottom: 101px;
	 border-radius: 50%;
	 right: -120px;
}
 .testimonial .row .tabs li:nth-child(2) figure img {
	 margin-right: auto;
	 max-width: 300px;
	 width: 100%;
	 margin-top: -50px;
}
 .testimonial .row .tabs li:nth-child(3) {
	 align-self: flex-end;
}
 .testimonial .row .tabs li:nth-child(3)::before {
	 right: -10px;
	 top: -66%;
}
 .testimonial .row .tabs li:nth-child(3)::after {
	 top: -130px;
	 border-radius: 50%;
	 right: -46px;
}
 .testimonial .row .tabs li:nth-child(3) figure img {
	 margin-left: auto;
	 margin-top: -50px;
}
.testimonial .row .tabs li:nth-child(3):focus {
	 border: 10px solid red;
}
 .testimonial .row .tabs li figure {
	 position: relative;
}
 .testimonial .row .tabs li figure img {
	 display: block;
}
 .testimonial .row .tabs li figure::after {
	 content: "";
	 position: absolute;
	 top: 0;
	 z-index: -1;
	 width: 100%;
	 height: 100%;
	 border: 4px solid #dff9d9;
	 border-radius: 50%;
	 -webkit-transform: scale(1);
	 -ms-transform: scale(1);
	 transform: scale(1);
	 -webkit-transition: 0.3s;
	 -o-transition: 0.3s;
	 transition: 0.3s;
}
 .testimonial .row .tabs li figure:hover::after {
	 -webkit-transform: scale(1.1);
	 -ms-transform: scale(1.1);
	 transform: scale(1.1);
}
 .testimonial .row .tabs.carousel-indicators li.active figure::after {
	 -webkit-transform: scale(1.1);
	 -ms-transform: scale(1.1);
	 transform: scale(1.1);
}
.testimonial .row .carousel h3 {
	 font-size: 20px;
	 line-height: 1.45;
	 color: rgba(0, 0, 0, .5);
	 font-weight: 600;
	 margin-bottom: 0;
}
 .testimonial .row .carousel h1 {
	 font-size: 40px;
	 line-height: 1.225;
	 margin-top: 23px;
	 font-weight: 700;
	 margin-bottom: 0;
}
 .testimonial .row .carousel .carousel-indicators {
	 all: unset;
	 padding-top: 43px;
	 display: flex;
	 list-style: none;
}
 .testimonial .row .carousel .carousel-indicators li {
	 background: #000;
	 background-clip: padding-box;
	 height: 2px;
}
.testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper {
	 margin-top: 42px;
}
 .testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper p {
	 font-size: 18px;
	 line-height: 1.72222;
	 font-weight: 500;
	 color: rgba(0, 0, 0, .7);
}
  .testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper h3 {
	 color: #000;
	 font-weight: 700;
	 margin-top: 37px;
	 font-size: 20px;
	 line-height: 1.45;
	 text-transform: uppercase;
}
 @media only screen and (max-width: 1200px) {
	 body .testimonial .row .tabs {
		 margin-right: 25px;
	}
	#showcaseul{padding-left:0px;}
}


.the-rock {
  height: 300px;
  background-color: lightgrey;


}
.the-rock .contained {
  width:100vw;
  height:500px;
  background-color:transparent;

  position:absolute;

  overflow:hidden;
  left:50%;
  transform:translate(-50%,-50%);
}
.the-rock .contained .space{
  width:105%;
  height:500px;
  left:-3%;
  position:absolute;
  background-color:lightgrey ;
 
  border-bottom-left-radius: 50% 20%;
  border-bottom-right-radius: 50% 20%;
  transform: rotate(180deg);
}
.FAQs {
 

  height: 800px;
}

.FAQs h4{
  color: white;
  padding-left: 20px;
}
.FAQs .heading{
  margin-bottom: 0;
}
.FAQs .heading h4 {
  color: #023F92;
}
.FAQs .carousel{
  margin-top: 20px;
}
.FAQs .col-md-6:first-child{
  background-color: white;
  border-bottom-right-radius: 90%;
  height: 500px;
  width: 700px;
  padding: 50px;
  
 
}
.FAQs .col-md-6:last-child{
 position: absolute;
 margin-left: 670px;
 margin-top: 100px;
  height: 500px;

  padding: 30px;
}
.FAQs .col-md-6:last-child  img{
  width: 130px;
  height: 130px;
  border-radius: 50%;
 }
 .FAQs .col-md-6:last-child  h4,p{
  color: gray;
 }
 .FAQs .col-md-6:last-child  p{
  color: gray;
 }
.FAQs img {
 width: 130px;
 height: 130px;
 border-radius: 50%;
}
.FAQs .col-md-4 {
  margin-top: 70px;
}
.FAQs .col-md-4 p  {
  color: gray;
  font-size: small;
  padding: 20px;
}
.FAQs .col-md-4 h4 {
  color: gray;
  font-size: 17px;

}
.FAQs .user-name p {

  color: gray;
  font-size: small;
  padding: 20px;
  text-align: center;
  font-size: 17px;
}
.FAQs .user-name p span {
  color: #0C9;
  font-size: 17px;
}
.FAQs .shape1 {
  background-color: orange;
  height: 60px;
  width: 60px;
  border-radius: 50px;
  margin-left: 300px;
  opacity: 0.5;
  margin-top: -130px;
  position: absolute;

}
.FAQs .shape2 {
  border-left: 1px solid green;
  transform: rotate(30deg);
  height: 80px;
  margin-top: -400px;
  margin-left: 950px;
  position: absolute;
}
.FAQs .shape3 {
  border-left: 1px solid orangered;
  transform: rotate(30deg);
  height: 80px;
  position: absolute;
  margin-left: 990px;
  margin-top: -420px;
}
.FAQs .shape4 {
  border-left: 1px solid red;
  transform: rotate(30deg);
  height: 80px;
 margin-top: -370px;
  margin-left: 1000px;
  position: absolute;
}
.FAQs .shape5 {

  transform: rotate(30deg);
  height: 80px;
 margin-top: -50px;
 position: absolute;
}
.scrollable {
  height: 500px;
  background-color:lightgray;
  padding: 100px;
  text-align: center;
  
}
.scrollable form{
  display: flex;
}
.scrollable form input{
background-color: gray;
  width: 600px;
  margin-left: 180px;
  border-radius: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  height: 50px;
}
.scrollable form .btn {
  border-radius: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  height: 50px;
}
.scrollable .newsletter h1{
  font-family: 'Poppins',sans-serif;
  font-weight: 700;
  text-transform: capitalize;
}
.scrollable .newsletter h4 {
  
  font-family: 'Poppins',sans-serif;
  font-weight: 900;
}
.scrollable .newsletter p {

  color: black;
  font-family: 'Poppins',sans-serif;
  font-size: 15px;
}
.scrollable .newsletter input::placeholder{
  color: white;
  text-transform: capitalize;
}

.footer{

  background-color: rgb(5, 5, 5);
  color: white;
  font-family: 'Poppins',sans-serif;
  padding-top:30px;

}
.footer h4{
  padding: 20px;
 font-size:17px;
  font-family: 'Poppins'sans-serif;
  padding-top: 40px;
}
.footer ul li {
  background-color: black;
  color: white;
  padding-left: 20px;
  font-size: 15px;
  text-transform: capitalize;
}
.footer ul li .bx {
  padding-left: 10px;
}
.footer .bottom{

  margin-top: 60px;
}
.footer .col-md-3ul li {
  font-size: 13px;
}
.footer .bottom .col-md-4:first-child{
  display: flex;
}
.footer .bottom .col-md-4:first-child h4{
  padding-top: 20px;
  
}
.footer .bottom .col-md-4:nth-child(2) p{
  font-size: 13px;
  text-transform: capitalize;
  margin-top: 20px;
  color: white;
  padding:0;
  
}
.footer .bottom .col-md-4:last-child{
  display: flex;
  font-size: 25px;

}
.footer .bottom .col-md-4:last-child .bx{
  padding: 20px;
}


.stuff {
  padding: 100px;


}
.stuff .col-md-4 .box {
  padding: 20px;
}
.stuff .col-md-4:first-child {
  border-bottom: 1px solid gray;
  border-right: 1px solid gray;

}
.stuff .col-md-4:nth-child(2) .bx  {
 color:  rgb(218, 68, 68);

}
.stuff .col-md-4:first-child .bx  {
  color: cadetblue;
 
 }
.stuff .col-md-4:nth-child(2) {
  border-bottom: 1px solid gray;
  border-right: 1px solid gray;
}
.stuff .col-md-4:last-child{
  border-bottom: 1px solid gray;
}
.stuff .col-md-4:last-child .bx {
  color: indigo;
}
.stuff .col-md-4 .bx {
  font-size: 35px;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.stuff .col-md-4 .square1 {
  border: 5px solid white;
  position: absolute;
  height: 30px;
  width: 30px;
  margin-top: -15px;
  margin-left: -28px;
}
.trr {
  margin-top: -100px;

  padding-left: 100px;
  padding-right: 100px;
  
}
.trr .col-md-4 .box {
  padding: 20px;
}
.stuff .col-md-4 .box:hover {
  box-shadow:  10px 15px 15px 10px lightgray;
 
  
}
.trr .col-md-4:first-child {
  border-bottom: 1px solid gray;
  border-right: 1px solid gray;

}
.trr .col-md-4:first-child  .bx {
  color: #242582;

}
.trr .col-md-4:nth-child(2) {
  border-bottom: 1px solid gray;
  border-right: 1px solid gray;
}
.trr .col-md-4:nth-child(2) .bx {
 color: rgb(233, 130, 130);
}
.trr .col-md-4:last-child{
  border-bottom: 1px solid gray;
}
.trr .col-md-4:last-child .bx {
color: rgba(80, 19, 131);
}
.trr .col-md-4 .bx {
  font-size: 35px;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.trr .col-md-4 .square1 {
  border: 5px solid white;
  position: absolute;
  height: 30px;
  width: 30px;
  margin-top: -15px;
  margin-left: -28px;
}
.trr .col-md-4 .box {
  padding: 20px;
}
.trr .col-md-4 .box:hover {
  box-shadow:  10px 15px 15px 10px lightgray;
 
  
}




/*end of stuff */




/* end of things*/
.info{


  text-transform: capitalize;
}
.info .col-md-6 img{
  width: 500px;
  height: 400px;
  border-radius: 30px;
  margin-left: 50px;
}
.info .col-md-6 #img1{
  width: 250px;
  height: 150px;
  
  border-radius: none;
  position: absolute;
  margin-top: -450px;
}
.info .col-md-6 #img2{
  width: 100px;
  height: 100px;

  border-radius: none;
  position: absolute;
  margin-top: -50px;
  margin-left: 450px;
}
.info .col-md-6 #img3{
  width: 150px;
  height: 150px;

  border-radius: none;
  position: absolute;
  margin-top: -100px;
  
}
.info .col-md-6:last-child {
  padding: 70px;
}
.info .col-md-6:last-child .btn {
  text-transform: capitalize;
}
/*beginning of graduate */
.counter
{

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  margin-top: 150px;
}
.employees,.customer,.design,.order
{
    margin-top: 70px;
    margin-bottom: 70px;
}
.counter-count
{
    font-size: 35px;

    border-radius: 50%;
    position: relative;
    color:black;
    text-align: center;
    line-height: 150px;
    width: 150px;
    height: 150px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: inline-block;
  
}


.employee-p,.customer-p,.order-p,.design-p
{
    font-size: 24px;
    color:rgba(80, 19, 131);
    line-height: 34px;
}

.counter .col-lg-3 .bx {
  color: rgba(80, 19, 131);
  font-size: 45px;
  margin-top: -50px;
  margin-left: -20px;
  position: absolute;

}
.counter .col-lg-3:first-child .bx{
  color: cadetblue;
}
.counter .col-lg-3:nth-child(2) .bx{
  color: rgb(223, 39, 39);
}
.counter .col-lg-3:nth-child(3) .bx{
  color: darkslateblue;
}
.counter .col-lg-3:last-child .bx{
  color: indigo;
}

/*end of graduate */





.faqs {
  background-color: #8485e2;
}
.faqs .accordion-header {
  background-color: #8485e2;

}
.faqs .accordion-item {
  background-color: #8485e2;
}



/*preloder */


.circles {
  height: 50px;
  transform-origin: bottom center;
  animation: rotate 3s linear infinite;
}

.circle {
  display: inline-block;
  background-color: purple;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transform: scale(0);
  animation: grow 1.5s linear infinite;
  margin: -10px;
}

.circle1 {

  transform: scale(0);
  animation: grow 1.5s linear infinite;
  animation-delay: 1.00s;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes grow {
  50% {
    transform: scale(1);
  }
}
@keyframes opacity {
  0%{
    opacity: 0.1;
   
  }
  25% {
    opacity: 0.2;
    
  }
  50%{
    opacity: 0.4;
    transform: scale(1);
  }
  75%{
    opacity: 0.5;
  
  }
  100%{
    opacity: 0.7;
    
  }

}
@keyframes name {
  0%{
    margin-left: 980px;
  } 
  25%{
    margin-left: 1000px;
  }
  50%{
    margin-left: 1020px;
  }
  75%{
    margin-left: 1000px;
  }
  100%{
    margin-left: 950px;
  }
}




/*end of preloader */
.blob {

  top: 0;
  left: 0;
  fill: #023F92;
  width: 1px;
  z-index: 1;
  
}
.blob svg {
  height: 350px;
  width: 350px;
  transform: rotate(60deg);

}



/*progress bar */
.charts-container:after {
  clear: both;
  content: "";
  display: table;
}
.pie-wrapper {
  height: 5em;
  width: 5em;
  float: left;
  margin: 15px;
  position: relative;
}
.pie-wrapper:nth-child(3n+1) {
  clear: both;
}
.pie-wrapper .pie {
  height: 100%;
  width: 100%;
  clip: rect(0, 5em, 5em, 2.5em);
  left: 0;
  position: absolute;
  top: 0;
}
.pie-wrapper .pie .half-circle {
  height: 100%;
  width: 100%;
  border: 3px solid #3498db;
  border-radius: 50%;
  clip: rect(0, 3.5em, 7em, 0);
  left: 0;
  position: absolute;
  top: 0;
}
.pie-wrapper .label {
  background: #34495e;
  border-radius: 50%;
  bottom: 0.4em;
  color: #ecf0f1;
  cursor: default;
  display: block;
  font-size: 17px;
  left: 0.4em;
  line-height:65px;
  position: absolute;
  right: 0.4em;
  text-align: center;
  top: 0.4em;
}
.pie-wrapper .label .smaller {
  color: #bdc3c7;
  font-size: .45em;
  padding-bottom: 20px;
  vertical-align: super;
}
.pie-wrapper .shadow {
  height: 100%;
  width: 100%;
  border: 0.1em solid #bdc3c7;
  border-radius: 50%;
}
.pie-wrapper.style-2 .label {
  background: none;
  color: #7f8c8d;
}
.pie-wrapper.style-2 .label .smaller {
  color: #bdc3c7;
}
.pie-wrapper.progress-45 .pie .right-side {
  display: none;
}
.pie-wrapper.progress-45 .pie .half-circle {
  border-color: #1abc9c;
}
.pie-wrapper.progress-45 .pie .left-side {
  transform: rotate(140deg);
}







/*end of progress bar */
/*calendar */
.calendar {
  background-color: white;
  border: 1px solid #efefef;
  border-radius: 8px;
  box-shadow: 0 5px 25px -5px rgba(0,0,0,.15);
  max-width: 350px;
  padding: 8px;
  width: 100%;
}

.days-header,
.days {
  display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      
}
  
.days span {
  position: relative;
  width: 40px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
margin-bottom: 5px;
}
.days span:hover {
  background-color:cadetblue ;
  color: white;
}

.days .dot {
height: 7px;
width: 7px;
background-color: red;
border:1px solid white;
border-radius: 50%;
margin: 1px;
display: inline-block;

}

.days .dots {
 
  display: inline;

position: absolute;
margin-top: 30px;
text-align:right;

border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;

  
}
.days .events {
  background-color: cadetblue;
 position: absolute;
  width: 300px;
  padding: 10px;
  height: 80px;
  display: none;

}
.days .events ul li {
  padding: 0;
  margin: 0;
}
.days .events ul li h5 {
  font-size: 12px;
  color: white;
  padding: 0;
  margin: 0;
}
.events .indi {
  background-color: blueviolet;
  height: 8px;
  width: 8px;
  margin-top: 5px;
}
.events .indi2 {
  background-color: pink;
  height: 8px;
  width: 8px;
  margin-top: 5px;
}
.events .indi3 {
  background-color: green;
  height: 8px;
  width: 8px;
  margin-top: 5px;
}
.events .row {
width: 250px;
margin-left: 10px;
}

.days span {
    position: relative;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  
  
}
.days span:hover {
  background-color: #f7fcff;
  cursor: pointer;
}
.days span:hover .events{
  display: block;
  margin-left: 130px;
  margin-top: 25px;

}

.days-header {
  height: 30px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}




/* end of calemdar */
/*progress bar */



/* end of progress bar*/

/* jdsfjhsdhfsdfjsdhfjdjhsd */



*,
*:before,
*:after {
  box-sizing: border-box;
}

.set-size {
  font-size: 10em;
}
.charts-container:after {
  clear: both;
  content: "";
  display: table;
}
.pie-wrapper {
  height: 1em;
  width: 1em;
  float: left;
  margin: 15px;
  position: relative;
}
.pie-wrapper:nth-child(3n+1) {
  clear: both;
}
.pie-wrapper .pie {
  height: 100%;
  width: 100%;
  clip: rect(0, 1em, 1em, 0.5em);
  left: 0;
  position: absolute;
  top: 0;
}
.pie-wrapper .pie .half-circle {
  height: 100%;
  width: 100%;
  border: 0.1em solid #3498db;
  border-radius: 50%;
  clip: rect(0, 0.5em, 1em, 0);
  left: 0;
  position: absolute;
  top: 0;
}
.pie-wrapper .label {
  background: #34495e;
  border-radius: 50%;
  bottom: 0.4em;
  color: #ecf0f1;
  cursor: default;
  display: block;
  font-size: 0.25em;
  left: 0.4em;
  line-height: 2.6em;
  position: absolute;
  right: 0.4em;
  text-align: center;
  top: 0.4em;
}
.pie-wrapper .label .smaller {
  color: #bdc3c7;
  font-size: .45em;
  padding-bottom: 20px;
  vertical-align: super;
}
.pie-wrapper .shadow {
  height: 100%;
  width: 100%;
  border: 0.1em solid #bdc3c7;
  border-radius: 50%;
}
.pie-wrapper.style-2 .label {
  background: none;
  color: #7f8c8d;
}
.pie-wrapper.style-2 .label .smaller {
  color: #bdc3c7;
}
.pie-wrapper.progress-45 .pie .right-side {
  display: none;
}
.pie-wrapper.progress-45 .pie .half-circle {
  border-color: #1abc9c;
}
.pie-wrapper.progress-45 .pie .left-side {
  transform: rotate(162deg);
}

.pie-wrapper--solid {
  border-radius: 50%;
  overflow: hidden;
}
.pie-wrapper--solid:before {
  border-radius: 0 100% 100% 0%;
  content: '';
  display: block;
  height: 100%;
  margin-left: 50%;
  transform-origin: left;
}
.pie-wrapper--solid .label {
  background: transparent;
}
.pie-wrapper--solid.progress-65 {
  background: linear-gradient(to right, #e67e22 50%, #34495e 50%);
}
.pie-wrapper--solid.progress-65:before {
  background: #e67e22;
  transform: rotate(126deg);
}
.pie-wrapper--solid.progress-25 {
  background: linear-gradient(to right, #9b59b6 50%, #34495e 50%);
}
.pie-wrapper--solid.progress-25:before {
  background: #34495e;
  transform: rotate(-270deg);
}
.pie-wrapper--solid.progress-88 {
  background: linear-gradient(to right, #3498db 50%, #34495e 50%);
}
.pie-wrapper--solid.progress-88:before {
  background: #3498db;
  transform: rotate(43.2deg);
}


/*calendar events */

.home-section .ttt  ul {list-style-type: none;}


/* Month header */
.home-section .ttt .month {
  padding: 70px 25px;
  width: 100%;
  background: #1abc9c;
  text-align: center;
}

/* Month list */
.home-section .ttt .month ul {
  margin: 0;
  padding: 0;
}

.home-section .ttt .month ul li {
  color: white;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* Previous button inside month header */
.home-section .ttt .month .prev {
  float: left;
  padding-top: 10px;
}

/* Next button */
.home-section .ttt .month .next {
  float: right;
  padding-top: 10px;
}

/* Weekdays (Mon-Sun) */
.home-section .ttt .weekdays {
  margin: 0;
  padding: 10px 0;
  background-color:#ddd;
}

.home-section .ttt .weekdays li {
  display: inline-block;
  width: 13.6%;
  color: #666;
  text-align: center;
}

/* Days (1-31) */
.home-section .ttt .days {
  padding: 10px 0;
  background: #eee;
  margin: 0;

}

.home-section .ttt .days li {
  list-style-type: none;
  display: inline-block;
  width: 13.6%;
  text-align: center;
  margin-bottom: 5px;
  font-size:12px;
  color: #777;
  border: 1px solid gray;
  height: 60px;
}

/* Highlight the "current" day */

/* BEggining of timeline */

 
 #content {
   margin-top: -10px;
   text-align: center;  
 }
 
 /* Timeline */
 
 .timeline {
   border-left: 1px solid  #4298C3 ;
   border-bottom-right-radius: 20px;
   border-top-right-radius: 10px;    
   background: fade(white, 3%);
   color: fade(white, 80%);
 
   margin:  0 -120px 0 30px;
   letter-spacing: 0.5px;   
   position: relative;
   line-height: 1.4em;
   font-size: 1.03em;   
   padding: 50px;   
   list-style: none;
   text-align: left;  
   font-weight: 100;  
   max-width: 70%; 

   
   
   }
   .timeline  h3 {
    font-size: small;
   letter-spacing: 1.5px;
   font-weight: 100;
   margin-left: -30px;
  
   }
   .timeline p {
    font-size: x-small;
    letter-spacing: 1.5px;
    font-weight: 100;
    margin-left: -30px;
   }
   .event {
  
    padding-bottom: (50px * 0.5);
    margin-bottom: 20px;  
    position: relative;
    width: 200px;
    margin-left: -10px;
    margin-top: -10px;
   
  }
   
   .event:last-of-type { 
    padding-bottom: 0;
    margin-bottom: 0; 
    border: none;      
  }
  .event:before, .event:after {
    position: absolute;
    display: block;
    top: 0;
  }
 
   .event:before {
    margin-left: -130px ;    
    color: fade(white, 40%);    
    content: attr(data-date);
    text-align: right;
    font-weight: 100;    
    font-size: x-small;
    min-width: 80px;
    margin-top: -4px;
  }

  .event:after {
    box-shadow: 0 0 0 1px #4298C3;    
    margin-left: -43px ;        
    background: lighten(#252827,5%);    
    border-radius: 50%;  
    height: 5px;
    width: 5px;
    content: "";
    top: 5px;
  }
span#user-id {
    color: red;
    font-weight: bold;
    text-transform: capitalize;
  }
span#subjec {
    color:blueviolet;
    font-weight: bold;
    text-transform: capitalize;
  }
 span#task-id{
    color: chartreuse;
    font-weight: bold;
    text-transform: capitalize;
  }
  .home-section .course .sas {
    border: none;
   margin: 0;
  }
  .task-quizes .top-q {
    animation: slidein 0.7s ease-in;
  }
  .task-quizes .bottom-q {
    animation: slidein 0.7s ease-in;
  }
  .task-quizes #quiz-pic {
    animation: slidein 0.7s ease-in;
  }
  .task-quizes .n-active {
    animation: slideout 0.7s ease-in;
  
  }
  






/* end of timeline */
/*table */

.addteacher .header-fixed {
  width: 100% 
}

.addteacher .col-md-8 .header-fixed thead,
.addteacher  .col-md-8 .header-fixed  tbody,
.addteacher .col-md-8.header-fixed  thead  tr,
.addteacher .col-md-8 .header-fixed  tbody  tr,
.addteacher .col-md-8.header-fixed  thead  tr  th,
.addteacher .col-md-8 .header-fixed  tbody tr  td {
  display: block;
}

.addteacher .col-md-8 .header-fixed  tbody  tr:after
{
  content:"";
  display: block;
  visibility: hidden;
  clear: both;
}
.addteacher  .col-md-8.header-fixed  thead  tr:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}

.addteacher .col-md-8 .header-fixed  tbody {
  overflow-y: auto;
  height: 150px;
  width: 680px;
}

.addteacher .col-md-8 .header-fixed  tbody tr  td{
  width: 20%;
  float: left;

}
.addteacher .col-md-8 .header-fixed tbody tr th {
  width: 10%;
  float: left;
}

.addteacher .col-md-8  .header-fixed  thead  tr  th {
  width: 25%;
  float: left;
padding-left: 85px;
border-bottom: none;


 
}


.reg-users .header-fixed {
  width: 100%;
}

.reg-users .col-md-8 .header-fixed thead,
.reg-users  .col-md-8 .header-fixed  tbody,
.reg-users .col-md-8  .header-fixed  thead  tr,
.reg-users .col-md-8    .header-fixed  tbody  tr,
.reg-users .col-md-8   .header-fixed  thead  tr  th,
.reg-users .col-md-8  .header-fixed  tbody tr  td {
  display: block;
}

.reg-users .col-md-8  .header-fixed  tbody  tr:after
{
  content:"";
  display: block;
  visibility: hidden;
  clear: both;
}
.reg-users  .col-md-8  .header-fixed  thead  tr:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}

.reg-users .col-md-8  .header-fixed  tbody {
  overflow-y: auto;
  height: 250px;
  width: 680px;
}

.reg-users .col-md-8   .header-fixed  tbody tr  td{
  width: 10%;
  float: left;
  border-bottom: none;


}
.reg-users .col-md-8  .header-fixed tbody tr th {
  width: 5%;
  float: left;
  border-bottom: none;
}
.reg-users .col-md-8  .header-fixed thead tr th {
  width: 14%;
  float: left;
  border-bottom: none;
  font-size:13px;
  text-transform: capitalize;
}
.reg-users .col-md-8  .header-fixed thead tr th:first-child {
  width: 5%;
  float: left;
  border-bottom: none;
}





/* end of table  */


/*to do list */
input
{
  background: transparent;
  border-radius: 0;
  font-size: 0.95rem;
}
textarea
{
  background: transparent;
  border-radius: 0;
  font-size: 0.95rem;
}
button {
  background: transparent;
  border-radius: 0;
  font-size: 0.95rem;
}
main {
  display: flex;
  width: 100%;
  max-height: 80%;
  padding: 0 20px;
}
#wrapper {
  width: 100%;
  position: relative;
  display: grid;
  background: #ffffffd0;
 
  border-radius: 1rem;
  overflow-y: hidden;
}
header {
  padding: 20px 20px 10px 20px;
  border-bottom: 1px solid #21212150;
}
#input {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto;
  margin: 20px 0 0 0;
}
#input .form-control {
  width: 100%;
}
#input .submit-btn {
  padding: 5px 15px;
  background: #212121b0;
  color: #ffffff;
  border-radius: 1rem;
  cursor: pointer;
}
#list {
  overflow-y: auto;
  display: grid;
  margin: 0 5px 0 0;
}
#list::-webkit-scrollbar {
  width: 8px;
}
#list::-webkit-scrollbar-button {
  height: 5px;
}
#list::-webkit-scrollbar-thumb {
  background: #0000003d;
  border-radius: 2rem;
}
.cards .cards-info .time {
  opacity: 0.5;
  font-size: 0.8rem;
}
.progress .cards {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
  border-bottom: 1px solid #bbbdc750;
}
.progress.cards-info {
  overflow-x: hidden;
}
.progress .cards-info .task {
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.progress .cards.resolved {
  background: #b7ddf33d;
}
.progress .cards.resolved .cards-info {
  opacity: 0.5;
}
.progress.cards.resolved .cards-info .task {
  text-decoration: line-through;
}
.progress .cards .resolved-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #bbbdc7;
  color: #00000000;
  cursor: pointer;
}
.progress .cards .resolved-btn.active {
  background: #6ebb95;
  color: #ffffff;
  border-color: #5ea180;
}
.progress .cards .delete-btn {
  visibility: hidden;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #e75978;
  color: #e75978;
  cursor: pointer;
}
.progress .cards:hover {
  background: #c4e9ff23;
}
.progress .cards:hover .delete-btn {
  visibility: visible;
}

.move {
  animation: moveup 1.5s;
  margin-top: -600px;

}

.base-timer {
  position: relative;
  width: 40px;
  height: 40px;
}

.base-timer__svg {
  transform: scaleX(-1);
}

.base-timer__circle {
  fill: none;
  stroke: none;
}

.base-timer__path-elapsed {
  stroke-width: 7px;
  stroke: grey;
}

.base-timer__path-remaining {
  stroke-width: 7px;
  stroke-linecap: round;
  transform: rotate(90deg);
  transform-origin: center;
  transition: 1s linear all;
  fill-rule: nonzero;
  stroke: currentColor;
}

.base-timer__path-remaining.green {
  color: rgb(65, 184, 131);
}

.base-timer__path-remaining.orange {
  color: orange;
}

.base-timer__path-remaining.red {
  color: red;
}

.base-timer__label {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight:700;
}
.viewstudent .table tr th {
  font-size: 13px;

}
/*fdgkdjfgdfkgdfkjgkdfhgjkdfhgjkdfhkghfdkghkdfhgdfkghkghdk*/


@keyframes moveup {

  50%{
    
  
    opacity: 0.1;
  }
  100%{
    margin-top: -300px;
    display: none;
  
    
  }
}
@keyframes goup  {
  0%{
    margin-top: 500px;
  }
  50%{
    margin-top: 250px;
  }
  100%{
    margin-top: 0;
  }

}
@keyframes slidein  {
  0%{
    margin-left: 300px ;
    opacity:0;

  }
  50%{
    margin-left: 150px;
    opacity: 0;

  }
  75%{
    opacity: 0;
  }
  100%{
    margin-left: 0;
    opacity: 1;
  }
}
@keyframes slideout {
  0%{
    margin-left: 0 ;
    opacity:1;

  }
  50%{
    margin-left: 150px;
    opacity: 0;

  }
  75%{
    opacity: 0;
  }
  100%{
    margin-left: 300px;
    opacity: 0;
    display: none;
  }
}
@keyframes y1 {
  0%{
    margin-left: -21.6px;
    opacity: 0.3;

 
  }
  50%{
    margin-left: -43.3px;
    opacity: 0.6;
  }
  100%{
    margin-left: -70px;
    opacity: 1;
  }
  
}
@keyframes y2 {
  0%{
    margin-top: -85px;
    margin-left: -20px;
    opacity: 0.3;
  }
  50%{
    margin-top: -90px;
    margin-left: -30px;
    opacity: 0.3;
  }
  100%{
    margin-top: -95px;
    margin-left: -40px;
    opacity: 1;
  }
}
@keyframes y3 {
  0%{
    margin-top: -35px;
    opacity: 0.3;
  }
  50%{
    margin-top: -40px;
    opacity: 0.3;
  }
  100%{
    margin-top: -45px;
    opacity: 1;
  }
}
@keyframes y4 {
  0% {
    margin-top: -45px;
    opacity: 1;
  }
  50%{
    margin-top: -22.5px;
    opacity: 0.5;
  }
  100%{
    margin-top: 0;
    opacity: 0.3;
  
  }
  
}
@keyframes flow-in {
  0%{
    margin-top: -200px;
    opacity: 0.1;
    
  }
  20%{
    margin-top:-250px;
    opacity: 0.1;
  }
  40%{
    margin-top:-300px;
    opacity: 0.1;
  }
  60%{
    margin-top:-350px;
    opacity: 0.1;
   
  }
  80%{
    margin-top: -360px;
    display: block;
  }
  100%{
    margin-top: -370px;
  }
}
@media screen and (max-width: 420px) {
  .sidebar {
    width:100%;
    height:78px;

    
    }
    .sidebar.open{
    height: 100%;
    width:100%;
    }
    .sidebar .nav-list  {
       display:none;
        width:100%;
    
    }
    .sidebar i{
   color: #fff;
   height: 60px;
   min-width: 50px;
   font-size: 28px;
   text-align: center;
   line-height: 60px;
 }
 
 .sidebar.open ~ .home-section{
     left:0;
    height: calc(100% - 100%);
}
 .sidebar.open  .nav-list {
  display:block;
}
.sidebar.open li.profile{
  width: 100%;

}
 

.home-section{
    position: relative;
  background: #E4E9F7;
  min-width: 100%;
  left: 0;
  top: 78px;
  height: calc(100% - 78px);
  transition: all 0.5s ease;
  z-index: 2;
    }
  .showcase{
      text-align:center;
      padding:10px;
    }
 .showcase  .nav-item {
      display:none;
      
     
  }
  .showcase .col-md-6:nth-child(2) img{
    display: none;

    }
  .showcase .float-img img{
    display: none;

    }
  .intro .col-md-8 h1{
   text-align:center;
      
    }
    .showcase .col-md-6 .btn {
    margin:20px;
    }
    .intro .col-md-4 img{
    width:100%;
    }
   
    .showcase .list-group li{
        display:block ;
        
    }
    .footer {
    text-align:center;
    justify-content:center;
    }
    .intro h4 {
      
      text-align: center;
    }
    .intro p {
      text-align: center;
    }
    .showcase .nav .bx {
      display: block;
    
     
    }
    .FAQs {
      margin-bottom: 300px;
    }
    .FAQs img {
      height: 70px;
      width: 70px;
 
    }
    .testimonial {
        text-align:center;
        justify-content:center;
        align-content:center;
    }
    .FAQs .col-md-6{
      text-align: center;
    }
    .col-md-12 .right-thing{
      display: none;
    }
    .FAQs .shape1{
      display: none;
    }
    .FAQs .shape2{
      display: none;
    }
    .FAQs .shape3{
      display: none;
    }
    .FAQs .shape4{
      display: none;
    }
    .FAQs .shape5{
      display: none;
    }
    .newsletter form input {
      margin-left: 0;
    }
    .footer {
      text-align: center;
    }
    .footer .bottom{
      text-align: center;
    }
    .newslettermodal .pic {
      display: none;
    }
    .home-section .users .col-md-3{
      margin-bottom: 30px;
      text-align: center;
      
    }
    .home-section .reg-users .col-md-8{
      margin-bottom: 30px;
    }
    .home-section .user-ana .col-md-6{
      margin-bottom: 30px;
    }
    .home-section .analytics .col-md-4{
      margin-bottom: 30px;
    }
    .home-section .reg-users .col-md-8 .table {
      width: 300px;
    }
    .home-section .types .col-md-3 {
      margin-bottom: 30px;
    }
    .home-section .analytics .col-md-6 {
      margin-bottom: 30px;
    }
    .home-section .analytics .boxed-in {
      margin-bottom: 30px;
      width: 555px;
    }
    .home-section  .more-info .col-md-4{
      margin-bottom: 30px;
    }
    .home-section .reg-users .col-md-8  .header-fixed  tbody{
      width: 100%;
      height:150px;
    }
    .reg-users .col-md-8   .header-fixed  tbody tr  td .btn{
   display:none;

}
    .home-section .lesson .col-md-4{
      margin-bottom: 30px;
    }
    .intro .shape1{
        display:none;
    }
    .home-section .dash header .user {
        display:none;
    }
    .home-section .dash header .xx {
        display:none;
    }
    .home-section .dash header .xxx {
     display:none;
    }
    
 
    .home-section header .d-block a {
        margin-left:-20px;
    }
    .home-section .teachers .col-md-3 {
        margin-bottom:30px;
    }
    .home-section .course .card {
        width:21rem;
    }
    .home-section .course .card-footer .col-md-4:nth-child(2){
        position: absolute ;
      width:50px;
        margin-left:100px;
    } 
    .home-section .course .card-footer .col-md-4:nth-child(3){
        position: absolute ;
       width:50px;
        margin-left:200px;
    }
    .home-section .course .card .dp{
        margin-left:280px;
    }
    .home-section .col-md-4 .box{
        margin-bottom:30px;
    }
    .home-section .col-md-8 .box{
        margin-bottom:30px;
    }
    .home-section .col-md-6{
        margin-bottom:30px;
    }
    .home-section .student .col-md-3:nth-child(2){
                position: absolute ;
      width:100px;
        margin-left:80px;
    }
    .home-section .student .col-md-3:nth-child(3){
                position: absolute ;
      width:100px;
        margin-left:180px;
    }
    .home-section .student .col-md-3:nth-child(4){
                position: absolute ;
      width:50px;
        margin-left:280px;
    }
    .home-section .student .col-md-1:nth-child(2){
         position: absolute ;
      width:30px;
        margin-left:30px;
    }
    .home-section .student .col-md-1:nth-child(3){
         position: absolute ;
      width:30px;
        margin-left:60px;
    }
    .home-section .student .col-md-1:nth-child(4){
         position: absolute ;
      width:30px;
        margin-left:90px;
    }
    .home-section .student .col-md-1:nth-child(5){
        position: absolute ;
      width:30px;
        margin-left:120px; 
    }
    .home-section .student .col-md-1:nth-child(6){
        position: absolute ;
      width:30px;
        margin-left:150px; 
    }
    .home-section .student .col-md-1:nth-child(7){
         position: absolute ;
      width:30px;
        margin-left:180px;
    }
    .home-section .student .col-md-1:nth-child(8){
         position: absolute ;
      width:30px;
        margin-left:210px;
    }
    .home-section .student .col-md-1:nth-child(9){
         position: absolute ;
      width:30px;
        margin-left:240px;
    }
    .home-section .student .col-md-2 {
         width:50px;
        position: absolute ;
         margin-left:270px;
         
    }
     #showcaseul{padding-left:0px;}
    
    
   


}


@media screen and (min-width : 420px) {
     .showcase .col-md-6:nth-child(2) img{
        width:350px;
         height:350px;
         margin-top:100px;
         margin-left:0;

    }
    .course-d .card{
        width:14rem;
        margin-left:0;
    }
     .showcase .list-group li{
        display:none ;
        
    }
    
    
    
    
    
   
}



@media screen and (min-width : 768px) {
 
    .showcase .float-img img {
           width:100%;
    }
    .intro .col-md-4 img {
       width:100%;
       height:100%;
    }
      .showcase .col-md-6 .btn {
      margin-bottom: 10px;
    }
    .showcase .col-md-6 img {
      display:block;
          height:100px;
      
    }
    .course-d .card {
        width:14rem;
    }
     #showcaseul{text-align: right;}
}


@media screen and (min-width : 992px) {
  .quiz .modal-body .col-md-8 form {
    margin-left: 100px;
    margin-top: 150px;
  }
  .home-section .dash .col-md-4 .bx{
    margin-left: -50px;
 
}
  .home-section .dash .col-md-4 .col-md-4:nth-child(2) .bx{
   margin-left: -50px;
  }
  .newslettermodal .modal-body .col-md-4{
    display: none;
  }
  .newslettermodal .pic  {
    display: none;
  }
  .newslettermodal .col-md-8 {
   text-align: center;
   justify-content: center;
   align-content: center;
   width: 500px;
  }

   .showcase .col-md-6:nth-child(2) img {
      display:block;
      height:400px;
      width:400px;
     margin-top:-30px;
      
    }
    .showcase .btn {
        margin:0;
    }
   .course-d .card {
        width:18rem;
    }
     #showcaseul{padding-left:0px;}

}


#chartdiv {
  width: 100%;
  height: 300px;
  overflow: hidden;
}



/* end of to do list */
/*calendar*/
.calendar {
  position: relative;
  overflow: hidden;
  text-transform: capitalize;
  text-align: center;
  font-size: 11px;
  color: #545A5C;
    border:none;
    box-shadow:0px 0px transparent;
}
  .calendar a {
    text-decoration: none;
    color: inherit; }
  .calendar header .simple-calendar-btn {
    display: inline-block;
    position: absolute;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #CBD1D2;
    border-radius: 50%;
    margin-top:10%;
    border: 2px solid #CBD1D2; }
  .calendar header .simple-calendar-btn:hover {
    background: #CBD1D2;
    color: white; }
  .calendar header .simple-calendar-btn:before {
    content: '';
    position: absolute;
    top: 9px;
    left: 8px;
    width: 8px;
    height: 8px;
    border-style: solid;
    border-width: 3px 3px 0 0;
    transform: rotate(45deg);
    transform-origin: center center; }
  .calendar header .btn-prev {
    top: 0;
    left: 0;
    transform: rotate(-180deg); }
  .calendar header .btn-next {
    top: 0;
    right: 0; }
    .calendar header .btn-next:before {
      transform: rotate(45deg); }
  .calendar header .month {
    padding: 0;
    margin: 0; }
    .calendar header .month .year {
      font-size: 0.6em;
      font-weight: 100; }
  .calendar table {
    width: 100%;
    margin: 15px 0;
    border-spacing: 0px; }
  .calendar thead {
    font-size: 1.0em;
    font-weight: 400; }
  .calendar td {
    padding: .8em .1em; }
  .calendar .day {
    position: relative;
    display: inline-block;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer; }
    .calendar .day:hover {
      border: 2px solid #6691CC; }
    .calendar .day.today {
      background: #6691CC;
      color: white; }
      .calendar .day.today.has-event:after {
        background: white; }
    .calendar .day.wrong-month {
      color: #CBD1D2; }
    .calendar .day.wrong-month:hover {
      border: 2px solid transparent; }
    .calendar .day.has-event:after {
      content: '';
      position: absolute;
      top: calc(50% + .6em);
      left: calc(50% - 2px);
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: red; }
    .calendar .day.disabled {
      cursor: default; }
      .calendar .day.disabled:hover {
        border: 2px solid transparent; }
  .calendar .event-container {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 70px;
    background: #BFC9CA;
   }
    .calendar .event-container .event-wrapper {
      overflow-y: auto;
      max-height: 100%; }
    .calendar .event-container .close {
      position: absolute;
      width: 30px;
      height: 30px;
      top: 20px;
      right: 20px;
      cursor: pointer; }
      .calendar .event-container .close:before, .calendar .event-container .close:after {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 2px;
        height: 100%;
        background-color: white; }
      .calendar .event-container .close:before {
        transform: rotate(45deg); }
      .calendar .event-container .close:after {
        transform: rotate(-45deg); }
    .calendar .event-container .event {
      position: relative;
      width: 100%;
      padding: 1em;
      margin-bottom: 1em;
      background: #6691CC;
      text-align: left;
      color: white; }
      .calendar .event-container .event-date {
        margin-bottom: 1em; }
      .calendar .event-container .event-hour {
        float: right; }
      .calendar .event-container .event-summary {
        font-weight: 600; }
  .calendar .filler {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #BFC9CA;
    transform: translate(-50%, -50%); }
.calendar-container{
    position: relative;
    margin: 10px auto;
    max-width: 400px;
}
/*end of calendar*/
