#course-desc {
	resize: none;
	font-family: Source sans pro;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 36px;
	color: #424242;
}

#course-title {
	color: #0c9 !important;
	font-weight: 400 !important;
}

#under-title {
	font-family: "Source Sans Pro",sans-serif !important;
	font-weight: 400 !important;
	font-size: 14px !important;
	color: #424242 !important;
	letter-spacing: 1px;
}


@media screen and (max-width: 991px){
	#navbarDesktop{
		background: #FFFFFF
	}
		.nav-link {
	    color: #000000;
	}
}

.loader {
	width: 82px;
	height: 18px;
	position: relative;
  }
  .loader::before , .loader::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translate(-50% , 10%);
	top: 0;
	background: #0c9;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	animation: jump 0.5s ease-in infinite alternate;
  }
  
  .loader::after {
	background: #f11f24;
	color: #ffcc02;
	top: 100%;
	box-shadow: 32px -20px , -32px -20px;
	animation: split 0.5s ease-out infinite alternate;
  }
  
  @keyframes split {
	0% { box-shadow: 8px -20px, -8px -20px}
	100% { box-shadow: 32px -20px , -32px -20px}
  }
  @keyframes jump {
   0% { transform: translate(-50% , -150%)}
   100% { transform: translate(-50% , 10%)}
  }

  /* //LOADER2 */
  


  .loader2 {
	width: 48px;
	height: 48px;
	border: 5px solid #0c9;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	position: relative;
	animation: pulse 1s linear infinite;
  }
  .loader2:after {
	content: '';
	position: absolute;
	width: 48px;
	height: 48px;
	border: 5px solid #f11f24;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	animation: scaleUp 1s linear infinite;
  }
  
  @keyframes scaleUp {
	0% { transform: translate(-50%, -50%) scale(0) }
	60% , 100% { transform: translate(-50%, -50%)  scale(1)}
  }
  @keyframes pulse {
	0% , 60% , 100%{ transform:  scale(1) }
	80% { transform:  scale(1.2)}
  }