@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,300i,400,400i,500,700,700i,900,900i");

/* header and slider */
.header {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  background: transparent;
  z-index: 99;
  padding: 13px 0;
  transition: all 0.8s ease-in-out;
}

.nav {
  width: 1200px;
  max-width: 98%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 70px;
}

nav .containers {
  display: flex;
  align-items: center;
  /* margin-right: -50px; */
}

#container_menu {
  margin-top: 15px;
}

nav ul {
  display: flex;
  padding: 0;
}

.nav_menu ul{
  gap: 12px;
}

nav ul li {
  list-style: none;
}

nav .nav_menu li a {
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  padding: 7px 10px;
  border-radius: 5px;
  transition: all 1s ease;
}

.anime_nav li a{
  position: relative;
  top: 100px;
  opacity: 0;
  transition: opacity 0.3s;
  animation: slideBottom 0.5s ease forwards;
  animation-delay: calc(0.2s * var(--i));
}


nav .nav_icons li,
nav .mobile_menu .mob_nav_icons li {
  list-style: none;
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 30px;
  border-radius: 100%;
  color: #fff;
  margin-left: 10px;
  border: 2px solid #17d0cf;
  cursor: pointer;
}

nav .nav_icons li a,
nav .mobile_menu .mob_nav_icons li a {
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  position: relative;
}

nav .nav_icons li button,
nav .mobile_menu .mob_nav_icons li button {
  background: transparent;
  color: #fff;
  font-size: 16px;
  border: none;
  font-weight: 900;
}

.search-btn{
  position: relative;
}
nav .nav_icons li  .searchBox button .search{
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}
nav .nav_icons li .searchBox button .close{
  position: absolute;
  top: 4.5px;
  left: 8px;
  font-size: 20px;
  cursor: pointer;
  opacity:0;
  pointer-events: none;

}
nav .nav_icons li .searchBox.active .search-btn .close{
  opacity: 1;
  pointer-events: auto;
}
nav .nav_icons li .searchBox.active .search-btn .search{
  opacity: 0;
  pointer-events: none;
}

.searchBox{
  position: relative;
}
.searchBox .search_field::before{
  content: '';
  width: 15px;
  height: 15px;
  background-color:   #01a6fd;
  position: absolute;
  top:-8px;
  right: 14px;
  transform:rotate(45deg) ;
  z-index: -1;
}
.searchBox .search_field{
  position: absolute;
  top:52px;
  right: -6px;
  height: 50px;
  width: 300px;
  display: flex;
  align-items: center;
  padding: 4px;
  background-color: #01a6fd;
  border-radius: 6px;
  box-shadow: 0 5px 5px rgba(0,0,0,0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;

}
.searchBox.active .search_field{
  opacity: 1;
  pointer-events: auto;
}
.search_field input{
  height: 100%;
  width: 100%;
  padding: 0px 45px 0 15px;
  outline: none;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  color: #777;
}
.search_field i{
  position: absolute;
  color:  #17d0cf;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/*-------Submenu CSS Style------- */
.nav_menu {
  position: relative;
}

.nav_menu .sub_menu {
  display: block;
  width: 200px;
  position: absolute;
  top: 26.5px;
  left: 60%;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  height: auto;
  overflow: hidden;
  max-height: 0px;
  transition: max-height 0.3s ease-in-out;
  border-radius: 5px;
  padding: 0 10px;
}

.nav_menu .sub_menu::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 47%;
  transform: translateX(-50%);
  border-color: transparent transparent transparent transparent;
  border-width: 12px 12px 12px 12px;
  border-style: solid;
  transition: all 0.1s ease;

}

.nav_menu .sub_menu li {
  padding: 16px 3px;
  border-bottom: 1px solid #c7bdbd;
}

.nav_menu .sub_menu li a {
  color: #777;
}

.nav .nav_menu li:hover a {
  background: linear-gradient(to right, #01a6fd 0%, #17d0cf 51%, #01a6fd 100%);
}

.nav_menu li:hover .sub_menu {
  max-height: 500px;
}

.nav_menu .sub_menu li a {
  background: transparent !important;
}

.sub_menu li:hover a {
  color: #01a6fd;
  margin-left: 0.5rem;
}

.nav_menu li:hover .sub_menu::before {
  border-color: #17d0cf transparent transparent transparent;
}

/*----------Menubar CSS Style---------*/
.menubar_icon {
  width: 50px;
  height: 50px;
  padding: 14px;
  cursor: pointer;
  position: relative;
}

.menubar_icon div {
  width: 22px;
  height: 22px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: relative;
}

.menubar_icon span {
  background: #fff;
  width: 100%;
  height: 3px;
  border-radius: 5px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.5s, width 0.5s;
}

.menubar_icon .line-1 {
  transform: translate(-50%, -10px);
}

.menubar_icon .line-3 {
  transform: translate(-50%, 8px);
}

.open_menu .line-1 {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.open_menu .line-3 {
  transform: translate(-50%, -50%) rotate(45deg);
}

.open_menu .line-2 {
  width: 0;
}

/*----------Mobile Menu CSS Style----------*/
nav .mobile_menu {
  display: none;
  position: absolute;
  top: 75px;
  left: 0;
  right: 0;
  overflow: hidden;
  transition: all 0.5s;
  max-height: 0;
  max-height: auto;
  width: 100%;
  background-color: #fff;
}

nav .mobile_menu .mob_nav_menu ul {
  display: flex;
  flex-direction: column;
}

nav .mobile_menu .mob_nav_menu ul li {
  border-bottom: 1px solid #c7bdbd;
  padding: 20px 0px;
  cursor: pointer;
}

nav .mobile_menu .mob_nav_menu ul li a {
  color: #000;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1em 3%
}

nav .mobile_menu .mob_nav_icons {
  padding: 1em 5%;

}

nav .mobile_menu .mob_nav_icons li a,
nav .mobile_menu .mob_nav_icons li button {
  color: #000;
}

.mobile_menu .mob_nav_menu li span {
  color: #000;
  float: right;
  font-size: 20px;
  margin-top: -5px;
  cursor: pointer;
  font-weight: 700;
  padding-right: 20px;
  transition: transform 0.3s ease-in-out;
}

.mobile_menu .mob_nav_menu li:last-child,
.mobile_menu .mob_nav_menu .mob_sub_menu li:last-child {
  border: none;
}

.mobile_menu .mob_nav_menu .mob_sub_menu li {
  padding: 20px;
}

.mobile_menu .mob_nav_menu .mob_sub_menu li a {
  color: #777;
  padding: auto;
  font-weight: 400;
}

.mobile_menu .mob_nav_menu .mob_sub_menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.mob_sub_menu li:hover a {
  margin-left: 0.5rem;

}

.mobile_menu .mob_nav_menu ul li.open span {
  transform: rotate(45deg);
}

.mob_logo img {
  width: 40px;
  height: 40px;
  margin-left: 9px;

}
.singin-icon{
  display:none;
}
.tab_logo img {
  width: 260px;
}

.mob_menu_icon {
  display: none;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  z-index: 1000;
  transition: all 0.8s ease-in-out;
  padding: 10px;
  color:#fff;
}

.main.swiper.mySwiper {
  margin-top: -97px;
}

.wrapper,
.slide {
  width: 100%;
  height: 100vh;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#slider-item {
  z-index: 99;
}

#slider-item .search-course {
  max-width: 700px;
  margin: 0 auto;
}

#slider-item .slider-course-category {
  max-width: 700px;
  margin: 0 auto;
  margin-top: 25px;
}

#slider-item .slider-course-category li {
  color: #fff;
  font-weight: 700;
  margin: 0px 10px;
  position: relative;
  transition: 0.3s all ease-in-out;
}

#slider-item .slider-course-category li:after {
  position: absolute;
  content: "";
  height: 10px;
  width: 2px;
  top: 6px;
  right: -13px;
  background-color: #8e8e8e;
}

#slider-item .slider-course-category li:last-child:after {
  display: none;
}

#slider-item .slider-course-category li:hover {
  color: #17d0cf;
}

.nav-btn {
  color: #777777;
  background: #f7f7f7;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  border: none;
}

.nav-btn::before,
.nav-btn::after {
  font-size: 18px;
  font-weight: 700;
}

.swiper-button-next {
  right: 15px;
}

.swiper-button-prev {
  left: 15px;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 7px);
}

.swiper-pagination {
  margin-bottom: 30px;
}

.swiper-pagination-bullet {
  width: 4px;
  height: 20px;
  padding: 0 2px;
  border-radius: 5px;
  transition: height 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #f7f7f7;
  width: 4px;
  height: 45px;
}

/*---------------slide text-content CSS style section  --------------*/
.slide .slider-text {
  position: absolute;
  top: 18%;
  width: 1200px;
  max-width: 85%;
  left: 50%;
  transform: translateX(-50%);
  text-shadow: 0 5px 10px #0004;
}

.slide .slider-text.text-1,
.slide .slider-text.text-2,
.slide .slider-text.text-3 {
  top: 20%;
  text-align: center;
}

.slide .slider-text.text-1 .subtitle,
.slide .slider-text.text-2 .subtitle,
.slide .slider-text.text-3 .subtitle {
  display: flex;
  justify-content: center;
}

.slide .slider-text.text-1 .title h2 {
  font-size: 70px;
  margin-bottom: 10px;
}

.slide .slider-text.text-2 .title h2 {
  font-size: 60px;
}

.slide .slider-text .subtitle {
  letter-spacing: 7px;
  color: #a9a3a3;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.slide .slider-text .title h2 {
  font-weight: 100;
  font-size: 70px;
  color: #fff;
  line-height: 1.1em;
}

.slide .slider-text .title h2 span {
  font-weight: 700;
}

.slide .slider-text .subtitle span::before,
.slide .slider-text .subtitle span::after {
  content: '..';
  color: #01a6fd;
  font-size: 70px;
  letter-spacing: -2px;
}

.slide .slider-text .subtitle span::before {
  margin-right: 12px;
}

.slide .slider-text .subtitle span::after {
  margin-left: 5px;
}

.slide .slider-text .courses-btn {
  margin-top: 20px;
  background-color: transparent;
  height: 50px;
  width: 100%;
}

.slide .slider-text .courses-btn a {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  border: 2px solid #17d0cf;
  border-radius: 4px;
  padding: 15px 25px;
  animation: growShrink 2s infinite;
}

@keyframes growShrink {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

.slide .slider-text .courses-btn a i {
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
  color: #01a6fd;
}

.countdown-timer {
  margin-top: 0px;
  margin-bottom: 30px;
}

.countdown-timer ul li {
  list-style: none;
  display: inline-block;
  width: 100px;
  height: auto;
  padding: 15px 5px;
  margin-right: 30px;
  text-align: center;
  color: #fff;
  border: 2px solid #17d0cf;
  border-radius: 8px;
}

.countdown-timer .number {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.countdown-timer span {
  display: block;
  color: #ffffff;
  position: relative;
}

/*---------------------animation section------------------*/
/*Text animation section*/
.slide.swiper-slide.swiper-slide-active .slider-text .subtitle span,
.slide.swiper-slide.swiper-slide-active .slider-text.text-1 .subtitle span,
.slide.swiper-slide.swiper-slide-active .slider-text.text-2 .countdown-timer,
.slide.swiper-slide.swiper-slide-active .slider-text.text-3 .subtitle span,
.slide.swiper-slide.swiper-slide-active .slider-text:nth-child(2) .title,
.slide.swiper-slide.swiper-slide-active .slider-text.text-1:nth-child(2) .title,
.slide.swiper-slide.swiper-slide-active .slider-text.text-2:nth-child(2) .title,
.slide.swiper-slide.swiper-slide-active .slider-text:last-child .courses-btn,
.slide.swiper-slide.swiper-slide-active .slider-text.text-1:last-child .search-course,
.slide.swiper-slide.swiper-slide-active .slider-text.text-1:last-child .course-category,
.slide.swiper-slide.swiper-slide-active .slider-text.text-2:last-child .courses-btn {
  transform: translateY(50px);
  opacity: 0;
  animation: showContent 0.8s .5s linear 1 forwards;
}

@keyframes showContent {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide.swiper-slide.swiper-slide-active:first-child .slider-text .subtitle span,
.slide.swiper-slide.swiper-slide-active .slider-text.text-1:nth-child(2) .title,
.slide.swiper-slide.swiper-slide-active .slider-text.text-2 .countdown-timer {
  animation-delay: 1.2s;
}

.slide.swiper-slide.swiper-slide-active .slider-text:nth-child(2) .title,
.slide.swiper-slide.swiper-slide-active .slider-text.text-2:nth-child(2) .title {

  animation-delay: 1.6s;
}

.slide.swiper-slide.swiper-slide-active .slider-text.text-1:last-child .search-course,
.slide.swiper-slide.swiper-slide-active .slider-text:last-child .courses-btn,
.slide.swiper-slide.swiper-slide-active .slider-text.text-2:last-child .courses-btn {
  animation-delay: 2.4s;
}

.slide.swiper-slide.swiper-slide-active .slider-text.text-1 .subtitle span {
  animation-delay: 2s;
}

.slide.swiper-slide.swiper-slide-active .slider-text.text-1:last-child .course-category {
  animation-delay: 3s;
}

/* END */

/* sponsor */
.sponsor {
  margin: 60px 0px;
}

.sponsor-container {
  width: 80%;
  margin-top: -10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.sponsor-item {
  text-align: center;
}

.sponsor-item img {
  /* max-width: 150px; */
}

.custom-dots {
  text-align: center;
}

.custom-dots .owl-dot {
  display: inline-block;
  width: 20px;
  height: 3px;
  margin: 0 5px;
  background-color: lightgray;
  border: 1px solid lightgray;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-dots .owl-dot.active,
.custom-dots .owl-dot.clicked {
  width: 30px;
  height: 3px;
  background-color: darkgrey;
  border: 1px solid darkgrey;
  border-radius: 40px;
}

/* END */

/* popular course */
.popular-course-section {
  padding-bottom: 125px;
}

.popular-course-section .owl-nav {
  display: flex;
  justify-content: center;
}

.popular-course-section .owl-nav button {
  background: #f7f7f7;
  color: #007bff;
  border: none;
  border-radius: 4px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.popular-course-section .owl-nav button:hover {
  background-color: #e2e2e2;
  transform: scale(1.1);
}

.course-meta {
  display: inline-block;
  width: 100%;
}

.course-meta span {
  float: left;
  font-size: 14px;
  margin-right: 24px;
  position: relative;
}

.course-meta span:after {
  top: 2px;
  width: 1px;
  content: "";
  height: 15px;
  right: -7px;
  position: absolute;
  background-color: #989898;
}

.course-meta span:last-child:after {
  display: none;
}

.course-meta .course-category {
  color: #17d0cf;
}

.course-meta .course-author {
  color: #333333;
}

.course-meta .course-rate li {
  color: #ffc926;
}

.course-title:after {
  left: 0;
  content: "";
  height: 3px;
  width: 50px;
  bottom: 25px;
  position: absolute;
}

.course-title h3 {
  color: #333333;
  font-size: 22px;
  text-wrap: balance;
  font-weight: 500;
  line-height: 30px;
  transition: 0.3s all ease-in-out;
}

.course-title h3 span {
  top: -1px;
  color: #fff;
  padding: 5px;
  font-size: 9px;
  border-radius: 3px;
  position: relative;
  background-color: #ff5c26;
}

.course-viewer li {
  color: #989898;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 3px;
  background-color: #f7f7f7;
}

.course-price {
  top: 20px;
  left: 20px;
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 4px;
  position: absolute;
}

.course-price span {
  color: #fff;
}

.course-details-btn {
  top: 25px;
  right: 5px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: 0.3s all ease-in-out;
}

.course-details-btn a {
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}

.course-item-pic-text:hover .course-details-btn {
  right: 20px;
  opacity: 1;
  visibility: visible;
}

.course-pic {
  overflow: hidden;
  border-radius: 4px;
}

.course-pic img {
  transition: 0.3s all ease-in-out;
}

.course-item-pic-text:hover img {
  transform: scale(1.05);
}

.course-title {
  position: relative;
}

/* END */

/* About us  */
.about-us-section {
  max-width: 100vw;
  min-height: auto;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  padding: 70px 0px;
  background-color: #f7f7f7;
}

#full-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 75%;
  min-height: auto;
}

#form-full-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-width: 35%;
  height: 80%;
  border-radius: 10px;
  /* background-image: url("../img/Free-Registeration.png"); */
  background-size: cover;
  /* color: white; */
  margin: 30px;
  padding: 30px 0;
  position: relative;
  /* box-shadow: 20px 5px 5px 0 rgba(0, 0, 0, 0.07); */
}

.form-sub-full:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 80%;
  background-color: #17d0cf;
  z-index: -1;
  left: -30px;
  top: 10%;
  border-radius: 3px;
}

.form-head {
  font-weight: 300;
  font-size: 30px;
}

.form-heading {
  margin: 20px 0;
}

.form-sub-full {
  width: 80%;
  height: auto;
  margin-left: 10%;
}

.input-outer {
  display: flex;
  text-align: center;
  box-sizing: border-box;
  padding: 2px 2px 2px 10px;
  width: 100%;
  height: 40px;
  background-color: white;
  opacity: 0.8;
  border-radius: 2px;
  margin-bottom: 7px;
}

.input-outer input,
button,
select {
  font-size: 15px;
  border: none;
  outline: none;
  width: 100%;
  color: grey;
  background: none;
}

.input-outer-msg {
  height: 80px;
}

.input-outer textarea {
  border: none;
  outline: none;
  width: 100%;
  height: 78px;
  background: none;
  color: grey;
  font-size: 15px;
}

.input-outer-btn {
  justify-content: center;
  height: 50px;
  background-color: #17d0cf;
  margin-top: 15px;
  opacity: 1;
}

.input-outer-btn button {
  color: white;
  font-weight: 700;
  cursor: pointer;
}

#about-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: baseline;
  margin-top: 30px;
  position: relative;
  bottom: 60px;
}

.about-sub-head {
  position: relative;
  left: 20px;
  letter-spacing: 4px;
}

.about-sub-head:before {
  content: ".";
  font-size: 70px;
  position: relative;
  top: -2px;
  left: -20px;
  line-height: 0;
  color: #17d0cf;
  text-shadow: 15px 0 #17d0cf;
}

.about-sub-head:after {
  content: ".";
  font-size: 70px;
  position: relative;
  top: -2px;
  left: 3px;
  line-height: 0;
  color: #17d0cf;
  text-shadow: 15px 0 #17d0cf;
}

.about-head {
  font-size: 40px;
  font-weight: 300;
  text-align: start;
  color: #333333;
}

.about-content-text p {
  font-size: 16px;
  color: #333333;
}

.about-list li {
  color: #333333;
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.about-list li:before {
  left: 0;
  content: "";
  width: 15px;
  height: 15px;
  top: 2px;
  border-radius: 100%;
  position: absolute;
  background-color: #17d0cf;
}

.bold-outer-box {
  position: relative;
}

.about-content-bold {
  font-size: 18px;
  font-weight: 500;
  padding: 15px 0;
  margin-bottom: 10px;
  color: #333333;
}

.about-content-bold:after {
  position: absolute;
  content: '';
  height: 2px;
  width: 60px;
  top: 90%;
  left: 0px;
  background-color: #17d0cf;
}

.about-content-text .mb65{
  margin-bottom: 30px;
  margin-top: 15px;
}

.about-page-section .genius-btn {
  /* display: table; */
  display: block;
}

/* END */

/* search course */
.search-course .nws-button,
.subs-form .nws-button {
  top: 0;
  right: 0;
  height: 60px;
  width: 195px;
  line-height: 60px;
  position: absolute;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.search-course .nws-button button,
.subs-form .nws-button button {
  background-color: transparent;
  border: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.counter-icon {
  float: left;
  width: 60px;
  height: 45px;
  line-height: 40px;
  margin-right: 15px;
  text-align: center;
  border-right: 1px solid #989898;
}

.col-md-3
{
 width:50%;
}


.counter-icon i {
  font-size: 38px;
}

.counter-number {
  display: inline-block;
  overflow: hidden;
}

.counter-number p {
  font-size: 12px;
  font-weight: 700;
  color: #989898;
}

.counter-number .counter-count,
.counter-number span {
  font-size: 30px;
  color: #333333;
  line-height: 0.9;
}

.counter-number span {
  font-weight: 700;
}

.search-course-section {
  padding: 125px 0px 0px 0px;
}

.search-course input,
.subs-form input {
  width: 100%;
  height: 60px;
  background-color: #f9f9f9;
  border: none;
  padding: 0px 20px;
  border-radius: 5px;
}

.home-secound-course-search {
  padding-bottom: 0;
}

.home-secound-course-search .search-app {
  padding-top: 50px;
}

.home-secound-course-search .search-app-content {
  margin-left: 40px;
}

.home-secound-course-search .search-course input {
  background: linear-gradient(to right, #01a6fd 0%, #4273e1 51%, #01a6fd 100%);
  color: #fff;
}

.home-secound-course-search .search-course input::-webkit-input-placeholder {
  color: #fff;
}

.home-secound-course-search .counter-number p {
  color: #fff;
}

.home-secound-course-search .counter-count,
.home-secound-course-search .counter-number span,
.counter-number .home-secound-course-search span {
  color: #fff;
}

.home-secound-course-search .section-title span,
.home-secound-course-search .section-title h2 {
  color: #fff;
}

.about-us-text {
  padding-top: 35px;
}

.about-list li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.about-list li:before {
  left: 0;
  content: '';
  border-radius: 100%;
  position: absolute;
}

.home-secound-course-search .about-list li:before {
  width: 10px;
  height: 10px;
  top: 7px;
  background-color: #5196c9;
}

.about-us-text .section-title {
  margin-bottom: 60px;
}

.about-us-text .section-title:after {
  position: absolute;
  content: '';
  bottom: -30px;
  height: 2px;
  width: 50px;
  background-color: #17d0cf;
}

.home-secound-course-search .search-app .search-app-content h2 {
  font-size: 35px;
}

.home-secound-course-search .app-details-content p {
  font-size: 20px;
  color: #fff;
}

.home-secound-course-search .about-list li {
  color: #17d0cf;
  margin-left: 5px;
}

.home-secound-course-search .about-list li:before {
  width: 10px;
  height: 10px;
  top: 7px;
  background-color: #5196c9;
}

.home-secound-course-search .genius-btn {
  width: 190px;
}

.app-stor {
  display: inline-block;
  margin-left: 20px;
  position: relative;
}

.app-stor li {
  font-size: 22px;
  color: #fff;
  margin-right: 25px;
  position: relative;
}

.app-stor li:after {
  position: absolute;
  content: "";
  height: 20px;
  width: 1px;
  top: 4px;
  right: -14px;
  background-color: #9ad1f6;
}

.app-stor li:last-child:after {
  display: none;
}

.search-app {
  position: relative;
  right: 16px;
}

/* END */

/* latest-news */
.latest-area-section {
  padding: 125px 0px 55px 0px;
}

.latest-news-thumbnile {
  height: 120px;
  width: 120px;
  float: left;
  margin-right: 20px;
  overflow: hidden;
}

.latest-news-thumbnile .hover-search {
  position: absolute;
  top: 50%;
  left: 0;
  color: #fff;
  transform: translateY(-50%);
  text-align: center;
  right: 0;
  transition: 0.3s all ease-in-out;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.latest-news-posts {
  padding: 15px 0px;
}

.latest-news-area {
  display: inline-block;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
  width: 100%;
  max-width: 335px;
}

.latest-news-area:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.latest-news-area .date-meta {
  color: #989898;
  font-size: 14px;
  margin-bottom: 10px;
}

.blakish-overlay {
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  position: absolute;
  visibility: hidden;
  transition: .3s all ease-in-out;
  background-color: rgba(0, 0, 0, 0.65);
}

.latest-news-area:hover .blakish-overlay {
  opacity: 1;
  visibility: visible;
}

.latest-news-area:hover .hover-search {
  opacity: 1;
  visibility: visible;
}

.latest-title {
  font-size: 18px;
  color: #333333;
  margin-bottom: 10px;
}

.view-all-btn {
  color: #333333;
}

.view-all-btn i {
  color: #17d0cf;
  margin-left: 5px;
}

.gradient-bdr {
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 10px;
  transform: scale(1.06);
  background: -o-linear-gradient(69deg, #10abff, #1beabd);
  background: linear-gradient(21deg, #10abff, #1beabd);
  background: -webkit-linear-gradient(69deg, #10abff, #1beabd);
}

.events-date {
  float: left;
  height: 84px;
  width: 95px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 10px;
  margin-right: 20px;
  background-color: #fff;
}

.events-date span {
  font-size: 50px;
  padding-top: 8px;
  color: #333333;
  line-height: 1;
  display: block;
}

.latest-events {
  display: inline-block;
  max-width: 340px;
  margin: 15px 0px;
}

.latest-events .course-meta .course-category,
.latest-events .course-meta .course-author {
  font-weight: 500;
  color: #989898;
}

.latest-area-content {
  margin-bottom: 15px;
}

.event-text {
  overflow: hidden;
}

.video-play-btn {
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 100%;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: 0 auto;
  transform: translateY(-50%);
}

.video-play-btn a {
  display: block;
  width: 100%;
}

.home-page-three {
  padding: 40px 0px 125px;
}

/* END */

/* best products */
.best-products {
  margin-top: 25px;
  margin-bottom: 60px;
}

.product-item {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  background-color: rgb(255, 255, 255);
}

.product-item img {
  max-width: 60%;
  border-radius: 10px;
  transition: transform 0.3s ease;
  display: inline;
}

.product-item:hover img {
  transform: scale(1.05);
}

.product-item h3 {
  margin-top: 10px;
  font-size: 18px;
  color: #007bff;
}

.product-item span {
  font-weight: bold;
  font-size: 16px;
  color: #007bff;
}

.product-item .btn-primary {
  background-color: #ff5a00;
  border-color: #ff5a00;
  color: #fff;
  transition: all 0.3s ease;
}

.product-item .btn-primary:hover {
  background-color: #ff712e;
  border-color: #ff712e;
}

.product-item .btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 90, 0, 0.5);
}

.product-item .btn-primary:not(:disabled):not(.disabled):active {
  background-color: #e64a00;
  border-color: #e64a00;
}

/* END */

/* best course */
.course-display {
  background-color: #f7f7f7;
  padding: 65px 0;
}

.header-section {
  margin-bottom: 45px;
}

.header-section .subheading {
  font-size: 14px;
  color: #777;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.header-section h2 {
  font-size: 36px;
  color: #333;
}

.header-section h2 span {
  color: #ff5a00;
  font-weight: 900;
}

.course-list {
  margin-bottom: 45px;
}

.course-item {
  margin-bottom: 30px;
  transition: 0.3s all ease-in-out;
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 260px;
}
.coursview{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(277px,auto));
  gap: 1rem;
  justify-content:start;
 }


.course-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}

.course-image img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.course-item:hover .course-image img {
  transform: scale(1.05);
}

.badge,
.price-tag,
.rating,
.details-link {
  position: absolute;
}

.badge {
  top: 10px;
  left: 10px;
  background-color: #ff5a00;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 3px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.badge i {
  margin-right: 5px;
}

/* .price-tag {
  bottom: 10px;
  left: 10px;
  background-color: #ff5a00;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
} */

.price-tag {
  bottom: 7px ;
  left: 5px;
  /* background-color: #ff5a00; */
  color: #2eb9b8;
  padding: 8px 9px;
  font-size: 16px;
  font-weight: 700;
  /* border-radius: 5px; */
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}


.rating {
  bottom: 10px;
  right: 10px;
  font-size: 14px;
}

.rating ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.rating li {
  margin-right: 2px;
  color: #ffc926;
}

.details-link {
  top: 10px;
  right: 10px;
  /* background-color: rgba(0, 0, 0, 0.6); */
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease-in-out;
}

.details-link a {
  color: #fff;
  text-decoration: none;
}

.course-item:hover .details-link {
  opacity: 1;
  visibility: visible;
}

.course-content {
  padding: 20px;
}

.course-title h3 {
  font-size: 18px;
  line-height: 25px;
  margin: 0 0 10px;
}

.course-title h3 a {
  color: #333;
  text-decoration: none;
}

.course-title h3 a:hover {
  color: #ff5a00;
}

.course-meta {
  font-size: 14px;
  color: #777;
}

.course-meta span {
  display: inline-block;
  margin-right: 10px;
}

.course-meta span a {
  color: #777;
  text-decoration: none;
}

.course-meta span a:hover {
  color: #ff5a00;
}

/* END */

/* FAQ */
.faq-section {
  padding: 50px 0 125px 0;
}

ul.product-tab li {
  cursor: pointer;
  margin: 0 40px 0 0;
  font-size: 18px;
  position: relative;
  color: #777777;
  font-weight: 500;
  text-transform: uppercase;
}

ul.product-tab li:after {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  top: 30px;
  left: 0;
  opacity: 0;
  background-color: #17d0cf;
}

ul.product-tab li.active {
  color: #333333;
}

ul.product-tab li.active:after {
  opacity: 1;
}

.tab-container {
  margin-left: 5px;
}

.ques-ans h3 {
  font-size: 22px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 20px;
}

.faq-secound-home-version {
  background-image: url(../images/banner-section/fq-1.jpg);
  padding: 110px 0 100px 0;
}

.faq-secound-home-version .section-title h2,
.faq-secound-home-version .section-title span {
  color: #fff;
}

.faq-secound-home-version ul.product-tab li {
  background-color: #006dad;
  color: #fff;
  padding: 5px 15px;
  font-size: 16px;
  border-radius: 4px;
  z-index: 1;
  margin: 10px 5px 0 0;
}

.faq-secound-home-version ul.product-tab li:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #17d0cf;
  background: linear-gradient(to right, #01a6fd 0%, #17d0cf 51%, #01a6fd 100%);
  background-size: 200% auto;
  left: 0;
  top: 0;
  transition: 0.3s all ease-in-out;
  border-radius: 4px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}

.faq-secound-home-version ul.product-tab li.active {
  color: #fff;
}

.faq-secound-home-version ul.product-tab li.active:after {
  opacity: 1;
  visibility: visible;
}

.faq-secound-home-version .ques-ans h3 {
  color: #fff;
}

.faq-secound-home-version .tab-content-1 {
  display: none;
}

.faq-secound-home-version .tab-content-1 p {
  color: #17d0cf;
}

.panel-group .panel {
  border-radius: 0;
  border: none;
  box-shadow: none;
  margin-bottom: 25px;
  max-width: 625px;
  margin: 0 auto;
}

.panel-group .panel-body {
  color: #3d3f41;
  position: relative;
}

.panel-group .panel-body:before {
  position: absolute;
  left: -15px;
  top: -42px;
  content: "";
  background-color: #17d0cf;
  width: 3px;
  height: 0%;
  transition: 0.3s all ease-in-out;
}

.panel-group .collapse.show .panel-body:before {
  height: 150%;
}

.panel-group .panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 26px;
  color: inherit;
  position: relative;
}

.panel-group .panel-title h3 {
  position: relative;
}

.panel-group .panel-title h3:before {
  position: absolute;
  width: 3px;
  height: 25px;
  left: -15px;
  content: "";
  background-color: #4a8ec0;
  top: 22px;
}

.panel-group .panel-title .btn-link {
  display: block;
  padding: 15px 0px 15px;
  position: relative;
  width: 100%;
  text-align: left;
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  color: #000000;
  box-shadow: none;
}

.panel-group .panel-title .btn-link:before {
  content: "\f139";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  right: 20px;
  top: 20px;
  font-size: 16px;
  transition: all 0.5s;
  transform: scale(1);
  color: #007fff;
}

.panel-group .panel-title .btn-link:after {
  content: "";
  font-size: 16px;
  position: absolute;
  right: 20px;
  top: 20px;
  transform: scale(0);
  transition: all 0.5s;
  color: #17d0cf;
}

.panel-group .btn-link.collapsed {
  color: #fff;
}

.panel-group .btn-link.collapsed:before {
  content: " ";
  transition: all 0.5s;
  transform: scale(0);
}

.panel-group .btn-link.collapsed:after {
  content: "\f13a";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: all 0.5s;
  transform: scale(1);
  color: #007fff;
}

/* END */

/* course category */
.category-icon {
  position: relative;
  z-index: 1;
}

.category-icon i {
  font-size: 60px;
}

.category-title {
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.category-title h4 {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
}

.category-icon-title {
  background-color: #fff;
  padding: 35px;
  border-radius: 4px;
  margin-bottom: 30px;
  transition: 0.3s all ease-in-out;
  position: relative;
}

.category-icon-title:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: #17d0cf;
  background: linear-gradient(to right, #01a6fd 0%, #17d0cf 51%, #01a6fd 100%);
  background-size: 200% auto;
  transition: 0.3s all ease-in-out;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0;
  border-radius: 4px;
  transform: scale(0);
}

.category-icon-title:hover::after {
  opacity: 1;
  transform: scale(1);
}

.category-icon-title:hover .category-title h4 {
  color: #fff;
}

.category-icon-title:hover .category-icon i {
  color: #fff;
  -webkit-text-fill-color: inherit;
}

.category-icon-title:hover {
  box-shadow: 0px 10px 15px 2px rgba(0, 0, 0, 0.1);
}

.home-second-version .category-icon-title {
  background-color: #f7f7f7;
  height: 200px;
}

.category-images{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* END */

/* testimonial section */
/* to align the content of the section in center */
.about-test {
  max-width: 100vw;
  margin: 50px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* whole header box */
.head-outer {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}


/* main heading */
#top-head-full {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  font-size: 60px;
}


#top-head {
  font-weight: 200;
  padding-right: 5px;
}

/* to create dots in upper sub-heading */
.head1:before, .head1:after {
  content: ".";
  font-size: 70px;
  color: aqua;
  text-shadow: 15px 0 aqua;
  position: relative;
  left: -5px;
  top: -2px;
}

/* upper sub-heading */
#head1 {
  word-spacing: 2px;
  letter-spacing: 10px;
}


/* indicates each content div */
.inner-box-test {
  box-sizing: border-box;
  padding: 10px;
  user-select: none;
}

/* controls the paragraph in content div */
.inner-content-test {
  font-size: 30px;
  font-weight: 100;
  font-style: italic;
  padding-bottom: 50px;
  text-align: center;
}

/* author div */
.content-bot {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}

.bot-1 {
  font-weight: 600;
  padding-right: 10px;
  border-right: 2px solid grey;
}

.bot-2 {
  color: gray;
}

.custom-dots-test {
text-align: center;
}

.custom-dots-test .owl-dot {
display: inline-block;
width: 20px;
height: 3px;
margin: 0 5px;
background-color: lightgray;
border: 1px solid lightgray;
border-radius: 10px;
cursor: pointer;
transition: all 0.3s ease;
}

.custom-dots-test .owl-dot.active,
.custom-dots-test .owl-dot.clicked {
width: 30px;
height: 3px;
background-color: darkgrey;
border: 1px solid darkgrey;
border-radius: 40px;
}


@media screen and (max-width: 750px) {
  #top-head-full {
      font-size: 50px;
  }

  .inner-content-test {
      font-size: 25px;
  }
}

@media screen and (max-width: 550px) {
  #head1 {
      font-size: 12px;
      letter-spacing: 5px;
  }

  .head-outer {
      gap: 2px;
  }

  #top-head-full {
      font-size: 37px;
  }

  .inner-content-test {
      font-size: 20px;
  }
}

@media screen and (max-width: 370px) {
  .head-outer {
      gap: 2px;
  }

  #top-head-full {
      font-size: 25px;
  }
}

/* END */

/* teacher section */
.form-control {
  box-shadow: none;
}

.secound-teacher-section {
  background-color: #f7f7f7;
  padding: 105px 0;
}

.secound-teacher-section .section-title {
  margin-bottom: 35px;
}

.secound-teacher-section .teacher-img-text {
  background-color: #fff;
  padding: 20px 30px 30px;
  border-radius: 4px;
  position: relative;
}

.secound-teacher-section .teacher-img-text .teacher-social-list {
  position: absolute;
  top: 50%;
  left: 2%;
  transition: 0.3s all ease-in-out;
  right: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%);
}

.secound-teacher-section .teacher-img-text:hover .teacher-social-list {
  opacity: 1;
  visibility: visible;
}

.teacher-img-social:hover img {
  filter: blur(1.5px);
}

.secound-teacher-section .teacher-img-text .teacher-social-list li {
  height: 30px;
  width: 30px;
  text-align: center;
  border: 2px solid #17d0cf;
  line-height: 30px;
  color: #fff;
  margin: 0 2px;
  border-radius: 50%;
}

.secound-teacher-section .teacher-img-text .teacher-name {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.secound-teacher-section .teacher-img-text .teacher-designation {
  font-size: 13px;
  color: #17d0cf;
}

.secound-teacher-section .teacher-img-text .img {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #17d0cf;
  width: 198px;
  height: 198px;
  border-radius: 50%;
  margin: 0 auto;
}

.secound-teacher-section .teacher-img-text .img img {
  object-fit: cover;
  width: 190px;
  height: 190px;
  border: 5px solid #fff;
  border-radius: 50%;
}

.secound-teacher-section .owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.secound-teacher-section .owl-nav button {
  background: #fff;
  color: #007bff;
  border: none;
  border-radius: 4px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.secound-teacher-section .owl-nav button:hover {
  background-color: #e2e2e2;
  transform: scale(1.1);
}

.secound-teacher-section .genius-btn {
  margin: 0 auto;
  margin-top: 65px;
}

/* END */

/* footer */
.contact-area-section .section-title h2,
.contact_secound_section .section-title h2 {
  color: #fff;
  margin-bottom: 25px;
}

.contact-area-section .section-title span,
.contact_secound_section .section-title span {
  color: #fff;
}

.contact-area-section .section-title p,
.contact_secound_section .section-title p {
  color: #fff;
}

.address-icon {
  height: 60px;
  width: 60px;
  border: 5px solid;
  line-height: 60px;
  margin-right: 20px;
  border: 4px solid transparent;
  border-image: linear-gradient(69deg, #10abff, #1beabd);
  border-image-slice: 1;
  border-radius: 40px;
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.address-icon i {
  font-size: 30px;
  color: #fff;
}

.address-details li {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

.address-details li span {
  font-weight: 300;
}

.contact-address-details {
  width: 100%;
  margin-bottom: 15px;
  padding-bottom: 15px;
  display: flex;
  border-bottom: 1px solid #207fba;
}

.contact-address-details:last-child {
  border-bottom: none;
}

.footer-image {
  background-image: url(../images/banner-section/cf-1.png);
  padding: 270px 0px 0px;
  background-color: #f7f7f7;
}

.contact_secound_form {
  margin-left: 80px;
}

.contact_secound_form .section-title-2 h2 {
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  display: table;
}

.contact_secound_form .section-title-2 h2:after {
  right: -65px;
  left: inherit;
  bottom: 5px;
}

.contact_secound_form .contact_form input {
  width: 100%;
  float: left;
  background-color: transparent;
  border: none;
  padding: 25px 0px;
  border-bottom: 1px solid #73a3c4;
  margin-right: 20px;
  height: 35px;
}

.contact_secound_form .contact_form input::placeholder {
  color: #669fc9;
}

.contact_secound_form .contact_form textarea {
  height: 155px;
  width: 100%;
  background-color: transparent;
  border: none;
  padding: 20px 0px;
  border-bottom: 1px solid #73a3c4;
}

.contact_secound_form .contact_form textarea::placeholder {
  color: #669fc9;
}

.contact_secound_form .nws-button {
  position: relative;
  top: 0;

  height: 60px;
  width: 280px;
  line-height: 60px;
  border-radius: 4px;
  margin: 0 auto;
  margin-top: 30px;
}

.contact_secound_form .nws-button button {
  background-color: transparent;
  border: none;
  font-weight: 700;
  color: #fff;
}



.search-course input,
.subs-form input {
  width: 100%;
  height: 60px;
  background-color: #f9f9f9;
  border: none;
  padding: 0px 20px;
  border-radius: 5px;
}

.search-course .nws-button {
  padding: 0;
}

.search-course .nws-button,
.subs-form .nws-button {
  top: 0;
  right: 0;
  height: 60px;
  width: 195px;
  line-height: 60px;
  position: absolute;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.search-course .nws-button button,
.subs-form .nws-button button {
  background-color: transparent;
  border: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.footer-social li,
.subscribe-form li {
  height: 30px;
  width: 30px;
  border-radius: 100%;
  line-height: 30px;
  margin-right: 8px;
  border: 2px solid #17d0cf;
  color: #666666;
  text-align: center;
}

.copy-right-menu {
  padding: 30px 0px;
  border-top: 1px solid #ddd6d6;
}

.copy-right-menu p {
  margin: 0;
}

.footer_2_subs {
  max-width: 735px;
  margin: 0 auto;
  margin-top: 35px;
  margin-bottom: 60px;
}

.footer_2_subs p {
  color: #fff;
  margin-bottom: 45px;
}

.footer_2 .copy-right-text {
  color: #fff;
}

.footer_2 .copy-right-menu-item li {
  color: #fff;
  margin-left: 20px;
}

.footer_2 .footer-social li {
  color: #fff;
}

/* END */


 /* footer start */
 .footer-area-section {
  padding: 105px 0px 0px 0px;
}

.footer-about-text p {
  font-size: 17px;
  margin-bottom: 25px;
  color: #333333;
  text-align: justify;
}

.footer-menu {
  float: left;
  margin-left: 70px;
}

.footer-menu li {
  margin-bottom: 10px;
  color: #333333;
  font-size: 17px;
}

.footer-menu li i {
  margin-right: 10px;
  color: #17d0cf;
}

.footer-widget .photo-list li {
  position: relative;
  margin-bottom: 3px;
}

.footer-widget .photo-list li .pop-up-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  transition: 0.3s all ease-in-out;
  opacity: 0;
}

.footer-widget .photo-list li .pop-up-icon i {
  color: #fff;
}

.footer-widget .photo-list li:hover .blakish-overlay {
  opacity: 1;
  visibility: visible;
}

.footer-widget .photo-list li:hover .pop-up-icon {
  opacity: 1;
}

.footer-social li,
.subscribe-form li {
  height: 30px;
  width: 30px;
  border-radius: 100%;
  line-height: 30px;
  margin-right: 8px;
  border: 2px solid #17d0cf;
  color: #666666;
  text-align: center;
}

.footer-social .widget-title,
.subscribe-form .widget-title {
  margin-bottom: 40px;
}

.footer-social .widget-title:after,
.subscribe-form .widget-title:after {
  bottom: -15px;
}

.subscribe-form {
  margin-left: 70px;
}

.copy-right-menu {
  padding: 30px 0px;
  border-top: 1px solid #ddd6d6;
}

.copy-right-menu p {
  margin: 0;
}

.footer_2_subs {
  max-width: 735px;
  margin: 0 auto;
  margin-top: 35px;
  margin-bottom: 60px;
}

.footer_2_subs p {
  color: #fff;
  margin-bottom: 45px;
}

.footer_2 .copy-right-text {
  color: #fff;
}

.footer_2 .copy-right-menu-item li {
  color: #fff;
  margin-left: 20px;
}

.footer_2 .footer-social li {
  color: #fff;
}

.subs-form input {
  width: 100%;
  height: 60px;
  background-color: #f9f9f9;
  border: none;
  padding: 0px 20px;
  border-radius: 5px;
}

.subs-form .nws-button {
  top: 0;
  right: 0;
  height: 60px;
  width: 195px;
  line-height: 60px;
  position: absolute;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.subs-form .nws-button button {
  background-color: transparent;
  border: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.widget-title:after {
  position: absolute;
  content: '';
  bottom: -20px;
  height: 2px;
  width: 50px;
  left: 0;
  background-color: #17d0cf;
}

.copy-right-menu-item li {
  color: #989898;
  margin-left: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.widget-title {
  font-size: 25px;
  color: #333333;
  font-weight: 700;
  position: relative;
  margin-bottom: 50px;
}

/*# sourceMappingURL=footer.css.map */

@media screen and (max-width: 767px) {
  .footer-area-section {
    padding-top: 40px;
  }

  .footer-area-section .container {
    align-items: center;
  }

  .footer-menu {
    margin-left: 0;
    margin-right: 30px;
  }

  .footer-social {
    margin-bottom: 20px;
    text-align: left !important;
  }

  .subscribe-form {
    margin-left: 0;
  }

  .copy-right-menu-item {
    float: none !important;
  }

  .copy-right-menu-item li {
    margin-left: 0;
    margin-right: 10px;
  }

  .copy-right-menu {
    text-align: center;
  }
}

@media screen and (min-width:767px) and (max-width:822px) {
  .copy-right-menu {
    font-size: 14px;
  }
}
 /* footer end */
/*-------------Start Of BreadCrumb Section css styles--------------------*/
.breadcrumb {
  position: relative;
  margin-top: -95px;
  padding: 0;
  margin-bottom: 70px;
}

.bg_img {
  position: relative;
  width: 100%;
  min-height: 355px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bg_img::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #00000073;

}

.page_content {
  position: absolute;
  top: 7px;
  left: 0;
  width: 100%;
  min-height: 355px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.page_content h2 {
  font-size: 38px;
  font-weight: 600;
  color: #fff;
  padding: 42px 0px 0px;
  /* margin-left: 44px; */
}

.page_content p{
  color: white;
  font-weight:400;
  font-size: 18px;
}

.page_content h2 span {
  font-weight: 700;
}

.page_content .page_btn li {
  list-style: none;
  display: inline-block;

}

.page_content .page_btn li a {
  text-decoration: none;
  background-color: #17d0cf;
  color: #fff;
  padding: 5px 15px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
}

.page_content .btn_active {
  font-size: 15px;
  padding: 5px 15px;
  border-radius: 4px;
  background-color: #3b3b3b;
  color: #7a7a7a;
  font-weight: 700;
}

/*---------------Resposive style section-----------------------*/

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

  .bg_img,
  .page_content {
    min-height: 250px;
  }

  .page_content h2 {
    font-size: 26px;
  }

  .page_content p{
    font-size: 16px;
  }

  .page_content .btn_active,
  .page_content .page_btn li a {
    font-weight: 400;
    padding: 5px;
  }
}


/* about page blog */
.about-gallery {
  display: inline-block;
  margin-bottom: 20px;
}

.about-gallery-img {
  float: left;
  margin-bottom: 15px;
}

.grid-1 {
  width: 66.5%;
  float: left;
}

.grid-2 {
  width: 31.5%;
  float: left;
  margin-left: 12px;
}

.about-text-item .section-title-2 {
  margin-bottom: 65px;
}

.about-text-item .section-title-2 h2:after {
  bottom: -30px;
}

.about-text-item p {
  font-weight: 300;
  font-size: 20px;
  color: #000;
  margin-bottom: 25px;
}

/* END */

/* COURSE ADVANTAGES */

.course-advantages {
  margin-top: 35px;
}

.service-icon i {
  font-size: 50px;
}

.service-slide_3 {
  height: 240px;
  margin-top: 10px;
}

.service-slide_3 .service-icon {
  float: none !important;
  margin-bottom: 15px;
}

.service-slide_3 .service-text-icon {
  background-color: #f7f7f7;
  padding: 20px;
  border-radius: 4px;
}

.service-slide_3 .service-text p {
  font-size: 15px;
  color: #88c3ef;
}

.service-slide_3 .service-text h3 {
  font-size: 18px;
  color: #333333;
  margin-bottom: 10px;
}

.service-slide_3 .owl-nav {
  top: -70px;
}

/* END */

/* RESPONSIVE */

/* about page blog */
@media screen and (max-width: 480px) {

  .grid-1,
  .grid-2 {
    width: 100%;
    text-align: center;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 480px) {

  .grid-2 {
    margin-left: 8px;
  }

  .about-gallery-img {
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 1000px) {

  .grid-2 {
    margin-left: 12px;
  }

  .about-gallery-img {
    margin-bottom: 13.5px;
  }
}

@media screen and (min-width: 1190px) {


  .about-gallery-img {
    margin-bottom: 16px;
  }
}

/* END */

/* Course Category */
@media (max-width: 768px) {
  .headline {
    flex-direction: column;
    align-items: flex-start;
  }

  .owl-nav {
    margin-left: 10;
    margin-top: 30px;
  }
}

@media screen and (min-width: 480px) and (max-width: 769px) {
  .service-slide_3 {
    height: 245px;
  }
}

/* END */

/* best products */
@media (max-width: 768px) {
  .headline {
    flex-direction: column;
    align-items: center;
  }

  .owl-nav {
    margin-left: 0;
    margin-top: 30px;
  }

}

@media (max-width:800px) {
  .product-item {
    max-width: 270px;
    margin: 0 auto 30px;
  }
}

/* END */

/* about page sidebar */
.course-img {
  overflow: hidden;
}

.course-title h3 {
  color: #333333;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  transition: .3s all ease-in-out;
}

.latest-news-thumbnile {
  height: 120px;
  width: 120px;
  float: left;
  margin-right: 20px;
  overflow: hidden;
}

.latest-news-thumbnile .hover-search {
  position: absolute;
  top: 50%;
  left: 0;
  color: #fff;
  transform: translateY(-50%);
  text-align: center;
  right: 0;
  transition: .3s all ease-in-out;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.blakish-overlay {
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  position: absolute;
  visibility: hidden;
  transition: .3s all ease-in-out;
  background-color: rgba(0, 0, 0, 0.65);
}

.latest-news-area {
  display: inline-block;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
  width: 100%;
  max-width: 335px;
}

.latest-news-area:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.latest-news-area .date-meta {
  color: #989898;
  font-size: 14px;
  margin-bottom: 10px;
}

.latest-news-area:hover .blakish-overlay {
  opacity: 1;
  visibility: visible;
}

.latest-news-area:hover .hover-search {
  opacity: 1;
  visibility: visible;
}

.latest-title {
  font-size: 18px;
  color: #333333;
  margin-bottom: 10px;
}

.view-all-btn {
  color: #333333;
}

.view-all-btn i {
  color: #17d0cf;
  margin-left: 5px;
}

.best-course-pic-text .best-course-pic {
  overflow: hidden;
  border-radius: 4px;
}

.trend-badge-2 {
  top: -18px;
  left: -50px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  padding: 30px 35px 5px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #ff5a00;
}

.trend-badge-2 span {
  display: block;
}

.side-bar-widget {
  margin: 0px 0px 30px;
  display: inline-block;
  width: 100%;
}

.side-bar-widget .genius-btn a {
  color: #fff;
  display: block;
  width: 100%;
  font-size: 9px;
}


.side-bar-widget .widget-titles {
  font-size: 30px;
  font-weight: 300;
  color: #333333;
  margin-bottom: 20px;
}

.side-bar-widget .widget-titles span {
  font-weight: 700;
}

.side-bar-widget .latest-news-thumbnile {
  height: 80px;
  width: 80px;
}

.side-bar-widget .latest-news-area {
  margin-bottom: 20px;
  padding-bottom: 15px;
}

.side-bar-widget .latest-title {
  font-size: 17px;
}

.side-bar-widget .best-course-text {
  position: absolute;
  top: 50%;
  background-color: transparent;
  box-shadow: none;
  transform: translateY(-50%);
  text-align: center;
}

.side-bar-widget .best-course-text h3 {
  color: #fff;
}

.side-bar-widget .best-course-text .course-meta {
  display: inline;
}

.side-bar-widget .best-course-text .course-meta span {
  float: none;
  margin-right: 0;
  color: #fff;
  margin: 0px 10px;
}

.side-bar-widget .best-course-pic-text:hover .best-course-text {
  box-shadow: none;
}

/* END */
/* about page sidebar */
@media screen and (min-width:767px)and (max-width: 1024px) {
  .side-bar-widget .best-course-text {
      top: 63%;
  }

  .course-title h3 {
      font-size: 14px;
  }
}

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

  .best-course-pic-text,
  .course-img,
  .genius-btn {
      max-width: 270px;
      margin: 0 auto;
      margin-bottom: 10px;
  }
}

/* END */

/*==============Product section css style======================*/
.float-left {
  float: left !important;
}

.shop-product-section {
  padding: 35px 0px 10px;
}

.short-filter-tab {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}

.shorting-filter select {
  padding: 8px 15px;
  border-radius: 4px;
  background-color: #f7f7f7;
  border: none;
  color: #333333;
  font-weight: 700;
  margin-left: 15px;
  outline: none;
  width: auto;
}

.blog-button ul.product-tab li {
  margin: 0px 5px 0px 0px;
  font-size: 22px;
  padding: 5px 10px;
  background-color: #f7f7f7;
  border-radius: 4px;
}

.blog-button ul.product-tab li:after {
  display: none;
}

.blog-button ul.product-tab li.active {
  color: #fff;
  background-color: #17d0cf;
}

.genius-shop-item .best-product-section {
  padding-top: 0;
}

.genius-shop-item .best-product-section .product-img-text {
  width: 100%;
  margin: 0;
  margin-bottom: 30px;
}

.product-img-text {
  background-color: #f1f1f3;
  padding: 25px 20px;
  display: inline-block;
  width: 97%;
  margin: 5px;
  border-radius: 4px;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.product-img-text:hover {
  background-color: #fff;
  box-shadow: 0px 4px 17px 0px rgba(0, 0, 0, 0.1);
}

.product-img-text:hover .add-cart {
  color: #fff;
}

.product-img-text:hover .add-cart::after {
  transform: scale(1);
}

.best-product-section .price-start {
  font-size: 16px;
  font-weight: 700;
  margin-top: 18px;
}

.best-product-section .price-start span {
  color: #17d0cf;
}

.add-cart {
  color: #bbbbbb;
  height: 40px;
  width: 40px;
  line-height: 40px;
  float: right;
  border-radius: 100%;
  background-color: #fff;
  margin-top: 10px;
  overflow: hidden;
  position: relative;
}

.add-cart:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: #17d0cf;
  background: linear-gradient(to right, #01a6fd 0%, #17d0cf 51%, #01a6fd 100%);
  background-size: 200% auto;
  -webkit-transition: 0.3s all ease-in-out;
  left: 0;
  border-radius: 100%;
  transform: scale(0);
}

.add-cart i {
  position: relative;
  z-index: 1;
}

.best-product-section .course-title_shop h3 {
  font-size: 16px;
}

.course-title_shop h3 {
  color: #333333;
  font-weight: 600;
  line-height: 20px;
  margin-top: 10px;
}

.course-title_shop a {
  color: #777777;
  text-decoration: none;
  color: inherit;
}

/*---------------------------------------------------- */
/*course  section shop section*/
/*----------------------------------------------------*/

.course-page-section .short-filter-tab {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.course-page-section .course-list-view {
  overflow-x: auto;
  padding: 5px;
}

.course-page-section .shorting-filter select {
  margin-right: 10px;
  padding: 10px 15px;
}

.course-page-section table {
  width: 100%;
}

.course-page-section td,
.course-page-section th {
  text-align: left;
  padding: 20px 15px;
}

.course-page-section th {
  font-size: 12px;
  font-weight: 700;
  color: #333333;
  border-bottom: 2px solid #01a6fd;
}

.course-page-section tr {
  border-bottom: 1px solid #eee;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
  padding: 15px;
}


.course-page-section .list-head {
  padding: 0;
}

.course-page-section tr:hover {
  background-color: #f5f5f5;
  box-shadow: 0px 2px 10px 3px rgba(0, 0, 0, 0.1);
}

.course-page-section .list-head:hover {
  box-shadow: none;
  background-color: #fff;
}


.course-page-section .course-list-img {
  height: 70px;
  width: 70px;
  float: left;
  margin-right: 20px;
}

.course-page-section .course-list-text {
  max-width: 225px;
  display: inline-block;
}

.course-page-section .course-list-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
}

.course-page-section .course-type-list span {
  background-color: #17d0cf;
  color: #fff;
  padding: 12px 20px;
  border-radius: 4px;
  min-width: 250px;
}

.course-page-section .course-meta .course-rate li {
  color: #bbbbbb;
}

/*---------------------------------------------------- */
/*Checkout  section*/
/*----------------------------------------------------*/


.checkout-content .course-page-section {
  padding: 0;
}

.order-item .section-title-2 h2 {
  font-size: 28px;
}

.order-item .section-title-2 h2:after {
  display: none;
}

.check-dlt {
  position: absolute;
  top: 10px;
  right: 10px;
}

.check-dlt i {
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.order-item .section-title-2 h2 {
  font-size: 28px;
}

.order-item .section-title-2 h2:after {
  display: none;
}

.order-item tr:hover .check-dlt i {
  color: #e61d1d;
}

.product-showcase,
.checkout-section {
  transition: 1s ease;
}
.course-title h3 {
  color: #333333;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  transition: .3s all ease-in-out;
}

.side-bar-widget .post-categori {
  background-color: #f7f7f7;
  border-radius: 4px;
}

.side-bar-widget .post-categori .cat-item {
  position: relative;
  padding: 15px 20px 15px 35px;
  border-bottom: 1px solid #eeeeee;
  transition: .3s all ease-in-out;
}

.side-bar-widget .post-categori .cat-item:before {
  font-family: 'Font Awesome 5 Free';
  position: absolute;
  top: 19px;
  left: 19px;
  font-size: 10px;
  font-weight: 700;
  content: '\f054';
}

.side-bar-widget .post-categori .cat-item:hover {
  color: #333333;
}

.ui-slider-horizontal {
  height: 3px;
  border: none;
  background-color: #dddddd;
}

.price-range .ui-widget.ui-widget-content {
  border: none;
}

.ui-slider-horizontal .ui-slider-handle {
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background-color: #17d0cf;
  border: none;
  cursor: pointer;
  outline: none;
  top: -3px;
}

.price-range input {
  position: absolute;
  font-size: 12px;
  right: -70px;
  top: -13px;
  color: #b2afaf;
  border: none;
  font-weight: 700;
}

#slider-range {
  width: 73%;
  float: right;
  margin-top: 6px;
}

#slider-range .ui-widget-header {
  background-color: #333333;
}

.inner-title {
  font-size: 12px;
  font-weight: 500;
  float: left;
  padding-left: 25px;
  position: relative;
}

.inner-title:after {
  position: absolute;
  content: '';
  height: 15px;
  width: 15px;
  border-radius: 4px;
  border: 1px solid #0cdae9;
  left: 0;
  top: 1px;
}

.product-highlights .inner-title {
  float: none;
  font-size: 14px;
  color: #333333;
  font-weight: 500;
  margin-bottom: 10px;
}

.product-highlights .inner-title:last-child {
  margin-bottom: 0;
}

.best-sellers-pic-text {
  background-color: #f7f7f7;
  display: inline-block;
  width: 100%;
  padding: 15px 15px 15px 15px;
  margin-bottom: 4px;
}

.best-sell-title-price {
  margin-top: 5px;
  overflow: hidden;
}

.best-sell-title-price h3 {
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 5px;
}

.best-sell-pic {
  height: auto;
  max-width: 30%;
  margin-right: 20px;
}

.best-sellers-pic-text .b-price {
  font-size: 12px;
  color: #17d0cf;
  font-weight: 700;
}

.best-sellers-item .couse-pagination {
  margin-top: 15px;
}

.best-sellers-item .couse-pagination li {
  font-size: 12px;
}

.couse-pagination li {
  font-size: 18px;
  color: #bababa;
  margin: 0 5px;
}

.couse-pagination li.active {
  color: #333333;
  font-weight: 700;
}

.couse-pagination .pg-text {
  font-size: 13px;
}

.side-bar-widget .tag-clouds li {
  border: 1px solid #cfcaca;
  color: #cbc8c8;
  padding: 5px 15px;
  margin-bottom: 8px;
  margin-right: 2px;
  border-radius: 4px;
  transition: .3s all ease-in-out;
}

.side-bar-widget .tag-clouds li:hover {
  background-color: #17d0cf;
  border-color: #17d0cf;
  color: #fff;
}

.best-course-pic-text .best-course-pic {
  overflow: hidden;
  border-radius: 4px;
}

.trend-badge-2 {
  top: -18px;
  left: -50px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  padding: 30px 35px 5px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #ff5a00;
}

.trend-badge-2 span {
  display: block;
}

.side-bar-widget {
  margin: 30px 0px;
  display: inline-block;
  width: 100%;
}

.side-bar-widget .widget-titles {
  font-size: 30px;
  font-weight: 300;
  color: #333333;
  margin-bottom: 20px;
}

.side-bar-widget .widget-titles span {
  font-weight: 700;
}

.side-bar-widget .best-course-text {
  position: absolute;
  top: 50%;
  background-color: transparent;
  box-shadow: none;
  transform: translateY(-50%);
  text-align: center;
}

.side-bar-widget .best-course-text h3 {
  color: #fff;
}

.side-bar-widget .best-course-text .course-meta span {
  float: none;
  margin-right: 0;
  color: #fff;
  margin: 0px 10px;
}

.side-bar-widget .best-course-pic-text:hover .best-course-text {
  box-shadow: none;
}

@media screen and (min-width:767px)and (max-width: 1024px) {
  .side-bar-widget .best-course-text {
      top: 63%;
  }

  .course-title h3 {
      font-size: 14px;
  }
}

@media (max-width: 767px) {
  .best-course-pic-text {
      max-width: 270px;
      margin: 0 auto;
      margin-bottom: 10px;
  }

  .best-sell-pic {
      max-width: 100%;
      margin-right: 0;
      margin-bottom: 10px;
  }

  .best-sell-title-price {
      margin-top: 15px;
  }

  .best-sell-title-price h3 {
      font-size: 12px;
  }
}

.social-contact {
  display: flex;
  flex-wrap: wrap;
}

.contact-page-section {
  padding-bottom: 50px;
}

.contact-page-section .social-contact .category-icon-title {
  width: 165px;
  position: relative;
}

.contact-page-section .social-contact .category-icon-title:before {
  content: '';
  position: absolute;
  height: 165px;
  width: 1px;
  background-color: #eee;
  top: 0;
  right: 0;
  z-index: 1;
}

.contact-page-section .social-contact .category-icon-title:before:last-child:before {
  opacity: 0;
}

.contact-page-section .social-contact .category-icon-title .category-title h4 {
  font-size: 16px;
}

.contact-page-section .category-icon-title:last-child::before {
  display: none;
}

/* General styles */
.category-icon {
  position: relative;
  z-index: 1;
}

.category-icon i {
  font-size: 60px;
}

.category-title {
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.category-title h4 {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
}

.category-icon-title {
  background-color: #fff;
  padding: 35px;
  border-radius: 4px;
  margin-bottom: 30px;
  transition: 0.3s all ease-in-out;
  position: relative;
}

.category-icon-title:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: #17d0cf;
  background: linear-gradient(to right, #01a6fd 0%, #17d0cf 51%, #01a6fd 100%);
  background-size: 200% auto;
  transition: 0.3s all ease-in-out;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0;
  border-radius: 4px;
  transform: scale(0);
}

.text-gradiant {
  background: -webkit-linear-gradient(left, #01a6fd 0%, #17d0cf 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.category-icon-title:hover::after {
  opacity: 1;
  transform: scale(1);
}

.category-icon-title:hover .category-title h4 {
  color: #fff;
}

.category-icon-title:hover .category-icon i {
  color: #fff;
  -webkit-text-fill-color: inherit;
}

.category-icon-title:hover {
  box-shadow: 0px 10px 15px 2px rgba(0, 0, 0, 0.1);
}




.contact-form-area_3 {
  background-color: #f7f7f7;
  padding: 110px 0px;
}

.contact-page-version .contact_third_form {
  background-color: #fff;
  padding: 30px 30px 65px 30px;
  border-radius: 4px;
}

.section-title {
  margin-bottom: 45px;
}


.section-title .sc:before,
.section-title .sc:after {
  content: ".";
  font-size: 70px;
  left: -45px;
  position: absolute;
  top: -15px;
  line-height: 0;
  color: #17d0cf;
  text-shadow: 15px 0 #17d0cf;
}

.section-title .sc:after {
  right: -28px;
  left: inherit;
}

.section-title h2 span {
  font-weight: 700;
}

.section-title h2 {
  font-size: 55px;
  font-weight: 300;
  color: #333333;
}

.section-title .sc {
  color: #a9a3a3;
  letter-spacing: 7px;
  position: relative;
}

.contact_third_form .contact-info input,
.contact_third_form .contact-info .register-form-area select,
.register-form-area .contact_third_form .contact-info select,
.contact_third_form .contact-info .register-form-area textarea,
.register-form-area .contact_third_form .contact-info textarea {
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  background-color: transparent;
  border-bottom: 1px solid #dddddd;
}

.contact_third_form textarea {
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid #dddddd;
  width: 100%;
  height: 150px;
  margin-top: 40px;
}

.contact_third_form .nws-button {
  height: 60px;
  width: 200px;
  line-height: 60px;
  border-radius: 4px;
  margin: 0 auto;
  margin-top: 70px;
}

.contact_third_form .nws-button button {
  background-color: transparent;
  border: none;
  font-weight: 700;
  color: #fff;
}

.nws-button button:focus {
  outline: none;
}

.gradient-bg,
.nws-button {
  background: linear-gradient(to right, #01a6fd 0%, #17d0cf 51%, #01a6fd 100%);
  background-size: 200% auto;
  -webkit-transition: background 1s ease-out;
}

.gradient-bg:hover,
.nws-button:hover {

  background: linear-gradient(to right, #17d0cf 0%, #01a6fd 51%, #17d0cf 100%);
  background-size: 200% auto;
  background-position: 190px;
}

.section-title .sc:after {
  right: -28px;
  left: 170px;
}

/* ----------------------------- */

.contact_secound_section .section-title h2 {
  color: #fff;
  margin-bottom: 25px;
}

.contact_secound_section .section-title span {
  color: #fff;
}

.contact_secound_section .section-title p {
  color: #fff;
}

.contact-left-content {
  max-width: 500px;
}

.address-icon {
  height: 60px;
  width: 60px;
  border: 5px solid;
  line-height: 60px;
  margin-right: 20px;
  border: 4px solid transparent;
  -webkit-border-image: -webkit-linear-gradient(21deg, #10abff, #1beabd);
  -o-border-image: -o-linear-gradient(21deg, #10abff, #1beabd);
  border-image: linear-gradient(69deg, #10abff, #1beabd);
  border-image-slice: 1;
  border-radius: 40px;
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.address-icon i {
  font-size: 30px;
  color: #fff;
}

.address-details li {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

.address-details li span {
  font-weight: 300;
}

.contact-address-details {
  width: 100%;
  margin-bottom: 15px;
  padding-bottom: 15px;
  display: flex;
  border-bottom: 1px solid #207fba;
}

.contact-address-details:last-child {
  border-bottom: none;
}

.contact_secound_section {
  padding: 50px 0px 0px;
  background: url('../images/banner-section/contact-b.jpg');
  background-color: #f7f7f7;
}

.contact_secound .section-title .section-title .subtitle:after {
  right: -28px;
  left: 170px;
}

#google-map {
  top: 0;
  width: 940px;
  height: 600px;
  -webkit-box-shadow: -15px -10px 40px 5px rgba(0, 0, 0, 0.1);
  box-shadow: -15px -10px 40px 5px rgba(0, 0, 0, 0.1);
  position: absolute;
}

iframe {
  max-width: 100%;
}

.contact_secound_content {
  padding: 55px 0px 105px;
  max-width: 1200px;
}

.contact-left-content .subtitle:after {
  right: -28px;
  left: 180px;
}
/* blog */
.blog-details-content h2 {
  font-size: 35px;
  color: #333333;
  font-weight: 500;
}

.blog-details-content .date-meta {
  margin-top: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.blog-details-content .date-meta span {
  font-size: 13px;
  color: #ccc;
  font-weight: 700;
  margin-right: 20px;
}

.blog-details-content .date-meta span i {
  color: #17d0cf;
}

.blog-details-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 30px;
}

.blog-details-content p {
  font-size: 20px;
  color: #333333;
  font-weight: 300;
  margin-bottom: 20px;
}

.blog-details-content .share-text {
  font-weight: 700;
  color: #333333;
  margin-top: 8px;
}

.blog-details-content .blog-share-tag {
  display: inline-block;
  width: 100%;
  margin: 40px 0px 15px 0px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

.blog-details-content .share-social ul li {
  font-size: 25px;
  margin-left: 30px;
}

.blog-details-content .blog-category li {
  padding: 5px 10px;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
  border-radius: 4px;
}

.blog-details-content .blog-category li:hover {
  background-color: #17d0cf;
  color: #fff;
}

.blog-details-content .author-comment {
  padding: 25px;
  margin-top: 20px;
  border-radius: 4px;
  background-color: #f5f5f5;
}

.blog-details-content .author-comment .author-img {
  height: 70px;
  width: 70px;
  float: left;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 20px;
}

.blog-details-content .author-comment .author-designation-comment {
  font-size: 12px;
  font-weight: 700;
}

.blog-details-content .author-comment .author-designation-comment span {
  color: #17d0cf;
}

.blog-details-content .author-comment .author-designation-comment p {
  font-size: 16px;
  color: #999999;
  font-weight: 400;
  margin-top: 5px;
  margin-bottom: 0;
}

.blog-details-content .next-prev-post {
  font-weight: 700;
  color: #333333;
  display: inline-block;
  width: 100%;
  margin-top: 25px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  margin-bottom: 35px;
}

.blog-details-content .next-prev-post i {
  margin: 0 5px;
  color: #17d0cf;
}

.float-right {
  float: right !important;
}

.float-left {
  float: left !important;
}

.blog-details-content .blog-share-tag {
  display: inline-block;
  width: 100%;
  margin: 40px 0px 15px 0px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

/* END */

/* related news */
.recent-post-item {
  padding-top: 32px;
}

.recent-post-item .blog-title-content h3 {
  margin-bottom: 0;
}

.blog-post-img-content {
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 30px;
}

.blog-post-img-content .blog-img-date {
  margin-bottom: 30px;
}

.course-price {
  top: 20px;
  left: 20px;
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 4px;
  position: absolute;
}

.course-price span {
  color: #fff;
}

.blog-post-img-content .course-price {
  bottom: 20px;
  top: inherit;
}

.blog-title-content h3 {
  font-size: 25px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 15px;
}

/* END */
/* comments section */

.blog-comment-area {
  margin-top: 10px;
}

.blog-comment-area .comment-list li {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.blog-comment-area .section-title-2 {
  margin-bottom: 65px;
}

.blog-comment-area .section-title-2 h2 {
  font-size: 30px;
}

.blog-comment-area .comment-avater {
  height: 60px;
  width: 60px;
  float: left;
  margin-right: 20px;
}

.blog-comment-area .author-designation-comment {
  overflow: hidden;
  width: 100%;
  display: inline-block;
  margin-top: 10px;
}

.blog-comment-area .author-designation-comment h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
}

.blog-comment-area .author-name-rate {
  width: 88%;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  margin-top: 20px;
}

.blog-comment-area .author-name-rate span {
  color: #17d0cf;
}

.blog-comment-area .time-comment {
  margin-right: 10px;
}

.blog-comment-area .comment-ratting li {
  font-size: 15px;
  color: #ffc926;
  border-bottom: none;
  margin-bottom: 0;
}

.reply-comment-box {
  margin-top: 20px;
}

.reply-comment-box .section-title-2 {
  margin-bottom: 30px;
}

.teacher-faq-form input,
.teacher-faq-form textarea {
  width: 100%;
  height: 60px;
  border-radius: 4px;
  background-color: #f7f7f7;
  border: none;
  margin-bottom: 30px;
  padding: 15px;
}

.teacher-faq-form textarea {
  height: 160px;
}

.teacher-faq-form .nws-button {
  position: relative;
  top: 0;
  padding: 0;
  height: 60px;
  width: 195px;
  line-height: 60px;
  border-radius: 5px;
}

.teacher-faq-form .nws-button button {
  border: none;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  background-color: transparent;
}

/* END */
.course-title h3 {
  color: #333333;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  transition: .3s all ease-in-out;
}

.side-bar-search {
  position: relative;
  margin-top: 15px;
}

.side-bar-search input {
  height: 40px;
  width: 100%;
  background-color: #f7f7f7;
  padding: 0px 15px;
  border: none;
  border-radius: 4px;
}

.side-bar-search button {
  position: absolute;
  top: 8px;
  right: 10px;
  background-color: #ccc;
  border: none;
  border-radius: 100%;
  padding: 3px 6px;
  color: #fff;
  font-size: 14px;
  width: auto;
}

.side-bar-widget .post-categori {
  background-color: #f7f7f7;
  border-radius: 4px;
}

.side-bar-widget .post-categori .cat-item {
  position: relative;
  padding: 15px 20px 15px 35px;
  border-bottom: 1px solid #eeeeee;
  transition: .3s all ease-in-out;
}

.side-bar-widget .post-categori .cat-item:before {
  font-family: 'Font Awesome 5 Free';
  position: absolute;
  top: 19px;
  left: 19px;
  font-size: 10px;
  font-weight: 700;
  content: '\f054';
}

.side-bar-widget .post-categori .cat-item:hover {
  color: #333333;
}

.side-bar-widget .latest-news-thumbnile {
  height: 80px;
  width: 80px;
  float: left;
  margin-right: 20px;
  overflow: hidden;
}

.latest-news-thumbnile .hover-search {
  position: absolute;
  top: 50%;
  left: 0;
  color: #fff;
  transform: translateY(-50%);
  text-align: center;
  right: 0;
  transition: .3s all ease-in-out;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.blakish-overlay {
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  position: absolute;
  visibility: hidden;
  transition: .3s all ease-in-out;
  background-color: rgba(0, 0, 0, 0.65);
}

.latest-news-area {
  display: inline-block;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
  width: 100%;
  max-width: 335px;
}

.latest-news-area:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.latest-news-area .date-meta {
  color: #989898;
  font-size: 14px;
  margin-bottom: 10px;
}

.latest-news-area:hover .blakish-overlay {
  opacity: 1;
  visibility: visible;
}

.latest-news-area:hover .hover-search {
  opacity: 1;
  visibility: visible;
}

.latest-title {
  font-size: 18px;
  color: #333333;
  margin-bottom: 10px;
}

.view-all-btn {
  color: #333333;
}

.view-all-btn i {
  color: #17d0cf;
  margin-left: 5px;
}

.side-bar-widget .latest-news-area {
  margin-bottom: 20px;
  padding-bottom: 15px;
}

.side-bar-widget .latest-title {
  font-size: 17px;
}

.side-bar-widget .tag-clouds li {
  border: 1px solid #cfcaca;
  color: #cbc8c8;
  padding: 5px 15px;
  margin-bottom: 8px;
  margin-right: 2px;
  border-radius: 4px;
  transition: .3s all ease-in-out;
}

.side-bar-widget .tag-clouds li:hover {
  background-color: #17d0cf;
  border-color: #17d0cf;
  color: #fff;
}

.best-course-pic-text .best-course-pic {
  overflow: hidden;
  border-radius: 4px;
}

.trend-badge-2 {
  top: -18px;
  left: -50px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  padding: 30px 35px 5px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #ff5a00;
}

.trend-badge-2 span {
  display: block;
}

.side-bar-widget {
  margin: 30px 0px;
  display: inline-block;
  width: 100%;
}

.side-bar-widget .widget-titles {
  font-size: 30px;
  font-weight: 300;
  color: #333333;
  margin-bottom: 20px;
}

.side-bar-widget .widget-titles span {
  font-weight: 700;
}

.side-bar-widget .best-course-text {
  position: absolute;
  top: 50%;
  background-color: transparent;
  box-shadow: none;
  transform: translateY(-50%);
  text-align: center;
}

.side-bar-widget .best-course-text h3 {
  color: #fff;
}

.side-bar-widget .best-course-text .course-meta {
  display: inline;
}

.side-bar-widget .best-course-text .course-meta span {
  float: none;
  margin-right: 0;
  color: #fff;
  margin: 0px 10px;
}

.side-bar-widget .best-course-pic-text:hover .best-course-text {
  box-shadow: none;
}

@media screen and (min-width:767px)and (max-width: 1024px) {
  .side-bar-widget .best-course-text {
      top: 63%;
  }

  .course-title h3 {
      font-size: 14px;
  }
}

@media (max-width: 767px) {
  .best-course-pic-text {
      max-width: 270px;
      margin: 0 auto;
      margin-bottom: 10px;
  }
}
.about-page-section {
  padding: 105px 10px 0px 10px;
}

.blog-content-details {
  padding-bottom: 80px;
  border-bottom: 1px solid #eeeeee;
}

.short-filter-tab {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}

.shorting-filter select {
  padding: 8px 15px;
  border-radius: 4px;
  background-color: #f7f7f7;
  border: none;
  color: #333333;
  font-weight: 700;
  margin-left: 15px;
  width: auto;
}

.blog-button ul.product-tab li {
  margin: 0px 5px 0px 0px;
  font-size: 22px;
  padding: 5px 10px;
  background-color: #f7f7f7;
  border-radius: 4px;
  position: relative;
  bottom: 20px;
}

.blog-button ul.product-tab li:after {
  display: none;
}

.blog-button ul.product-tab li.active {
  color: #fff;
  background-color: #17d0cf;
}

.genius-post-item {
  padding-bottom: 45px;
}

.blog-post-img-content {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 35px;
  margin-bottom: 30px;
}

.blog-post-img-content .blog-img-date {
  margin-bottom: 30px;
}

.course-price {
  top: 20px;
  left: 20px;
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 4px;
  position: absolute;
}

.course-price span {
  color: #fff;
}

.blog-post-img-content .course-price {
  bottom: 20px;
  top: inherit;
}

.blog-title-content h3 {
  font-size: 25px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 15px;
}

.blog-title-content .blog-content {
  font-size: 17px;
  margin-bottom: 22px;
}

.couse-pagination li {
  font-size: 18px;
  color: #bababa;
  margin: 0 5px;
}

.couse-pagination li.active {
  color: #333333;
  font-weight: 700;
}

.couse-pagination .pg-text {
  font-size: 13px;
}

.float-right {
  float: right !important;
}

.shorting-filter {
  /* position: relative;
  top: 20px; */
}

.blog-button .ul-li ul {
  margin-top: -50px;
}

#course-btn .genius-btn {
  margin: 0 auto;
}

.contact_secound_form .contact-info input,
.contact_secound_form textarea {
  color: white;
}

.form-control:focus,
button:visited,
button.active,
button:hover,
button:focus,
input:visited,
.register-form-area select:visited,
.register-form-area textarea:visited,
input.active,
.register-form-area select.active,
.register-form-area textarea.active,
input:hover,
.register-form-area select:hover,
.register-form-area textarea:hover,
input:focus,
.register-form-area select:focus,
.register-form-area textarea:focus,
textarea:hover,
textarea:focus,
a:hover,
a:focus,
a:visited,
a.active,
select,
select:hover,
select:focus,
select:visited {
  outline: none;
  box-shadow: none;
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.4;
  color: #777777;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.ul-li ul {
  margin: 0;
  padding: 0;
}

.ul-li ul li {
  list-style: none;
  display: inline-block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.ul-li-block ul {
  margin: 0;
  padding: 0;
}

.ul-li-block ul li {
  list-style: none;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover,
a:focus {
  text-decoration: none;
}

.relative-position {
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  overflow: hidden;
}

button {
  cursor: pointer;
}

.backgroud-style {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.mb5{
  margin-bottom: 5px;
}
.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb45 {
  margin-bottom: 45px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt25 {
  margin-top: 25px;
}

.ml42 {
  margin-left: 42px;
}

.mb65 {
  margin-bottom: 65px;
}

.mt60 {
  margin-top: 60px;
}

.pt150 {
  padding-top: 150px;
}

.pb45 {
  padding-bottom: 30px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb10 {
  padding-bottom: 10px;
}

.bold-font {
  font-weight: 700;
}


button:visited,
button.active,
button:hover,
button:focus {
  outline: none;
  box-shadow: none;
  text-decoration: none;
  color: inherit;
}

.text-gradiant {
  background: linear-gradient(to right, #01a6fd 0%, #17d0cf 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-bg {
  background: #17d0cf;
  background: linear-gradient(to right, #01a6fd 0%, #17d0cf 51%, #01a6fd 100%);
  background-size: 200% auto;
  transition: background 1s ease-out;
}

.gradient-bg:hover {
  background: #01a6fd;
  background: linear-gradient(to right, #17d0cf 0%, #01a6fd 51%, #17d0cf 100%);
  background-size: 200% auto;
  background-position: 190px;
}

.nws-button {
  position: relative;
  top: 50px;
  height: 50px;
  line-height: 52px;
  padding: 0px 25px;
}

.nws-button button {
  background-color: transparent;
  border: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.genius-btn {
  height: 50px;
  line-height: 52px;
  border-radius: 4px;
  display: table;
  padding: 0px 25px;
}

.genius-btn a {
  color: #fff;
  display: block;
  width: 100%;
}

.genius-btn a i {
  margin-left: 5px;
  color: #01a6fd;
}

.about-btn .genius-btn {
  display: inline-block;
  margin-right: 25px;
}

.section-title .subtitle {
  color: #a9a3a3;
  letter-spacing: 7px;
  position: relative;
}

.section-title .subtitle:before,
.section-title .subtitle:after {
  content: ".";
  font-size: 70px;
  left: -45px;
  pointer-events: none;
  position: absolute;
  text-shadow: rgba(0, 0, 0, 0) 0px 0px;
  top: -10px;
  line-height: 0;
  color: #17d0cf;
  text-shadow: 15px 0 #17d0cf;
}

.section-title .subtitle:after {
  right: -28px;
  left: inherit;
}

.section-title h2 {
  font-size: 55px;
  font-weight: 300;
  color: #333333;
}

.section-title h2 span {
  font-weight: 700;
}

.section-title-2 h2 {
  font-size: 38px;
  color: #333333;
  font-weight: 300;
  position: relative;
}

.section-title-2 h2 span {
  font-weight: 700;
}

.section-title-2 h2:after {
  position: absolute;
  content: '';
  bottom: -20px;
  height: 2px;
  width: 50px;
  left: 0;
  background-color: #17d0cf;
}

.headline {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.headline h2 {
  margin: 0;
  display: inline-block;
  font-size: 36px;
  color: #333;
  position: relative;
}

.headline h2 span {
  color: #ff5a00;
  font-weight: 900;
}

.headline h2::after {
  content: '';
  position: absolute;
  left: 9%;
  bottom: -10px;
  width: 50px;
  height: 4px;
  background-color: #ff5a00;
  transform: translateX(-50%);
}

.owl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-nav button {
  background: #f7f7f7;
  color: #007bff;
  border: none;
  border-radius: 4px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.owl-nav button:hover {
  background-color: #e2e2e2;
  transform: scale(1.1);
}

.owl-nav {
  margin-left: auto;
}
.img-outer {
  width: 100%;
  height: auto;
}

.img-outer img {
  width: 100%;
  height: 100%;
  border-radius: 3px;
}

.content-heading h2 {
  font-size: 35px;
  font-weight: 350;
  padding: 20px 0;
  color: #333333;
  line-height: 100%;
}

.content-heading span {
  background-color: rgb(255, 72, 0);
  color: white;
  font-weight: 700;
  font-size: 12px;
  position: relative;
  top: -4px;
  padding: 3px;
  border-radius: 2px;
  margin-left: 10px;
  white-space: nowrap;
}

.content-heading i {
  padding-right: 2px;
}

.content {
  font-size: 20px;
  margin-top: 35px;
  text-align: justify;
  font-weight: 300;
  color: #333333;
}

#course-sec {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  padding: 60px 0 10px 0;
  color: #777777;
  border-bottom: 1px solid grey;
}

.Section-left h3 {
  font-size: 30px;
  font-weight: 400;
}

.Section-left h3 {
  white-space: nowrap;
}

.Section-right {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  margin-left: 10px;
  position: relative;
  top: -2px;
}

.section-btn {
  font-size: 15px;
  background-color: rgba(128, 128, 128, 0.1);
  padding: 6px 8px;
  border-radius: 4px;
  margin: 05px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.section-btn:hover {
  background-image: linear-gradient(to right, #01a6fd 0%, #17d0cf 51%, #01a6fd 100%);
  background-size: 100% auto;
  transition: background-image, background-size, background-position 1s ease-out;
  background-position: 100px;
  color: white;
}

/* --------------------------------------------------- */

#sub-section {
  max-width: 100%;
  margin-top: 20px;
}

#sub-section h1 {
  font-size: 38px;
  font-weight: 300;
  margin: 20px 0;
  color: #333333;
}

.beg-steps-container {
  border: 1px solid rgba(128, 128, 128, 0.3);
  padding: 10px 5px;
}

.beg-con-head {
  display: flex;
  align-items: center;
  /* height: auto;
  border: none;
  background-color: inherit;
  cursor: pointer;
  position: relative;
  padding: 10px 0px; */
  justify-content: space-between;
}

.si-num {
  font-size: 50px;
  font-weight: 500;
  padding: 0px 25px;
  color: #eeeeee;
  transition: color 0.7s ease-out;
}

.active .si-num {
  color: #17d0cf;
  transition: color 0.5s ease-in;
}

.beg-inner-head {
  /* margin:0 30px 0 10px; */
  flex: 1;
}

.beg-inner-head h4 {
  font-size: 22px;
  font-weight: 500;
  color: #333;
}

.beg-inner-head-1 {
  margin-left: 10px;
}

.beg-inner-head p {
  font-size: 12px;
  font-weight: 500;
}

.beg-inner-head span {
  color: #17d0cf;
}

.beg-head-btn {
  background-color: #f7f7f7;
  padding: 8px 15px;
  border-radius: 2px;
  color: #cccccc;
  font-size: 12px;
  font-weight: 500;
}

.arrow-icon, .arrow-icon-up {
  width: 18px;
  height: 18px;
  font-size: 12px;
  border-radius: 50%;
  background-color: #d9d9d9;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  position: relative;
  /* left: 18%; */
  top: 1%;
  color: white;
  transition: transform 0.6s ease, opacity 0.3s ease;
  padding: 2px 4px;
}

.arrow-icon-up {
  transform: scale(0);
  opacity: 0;
  background-color: #17d0cf;
}

.beg-con-cont-wrapper {
  overflow: hidden;
  max-height: 0;
}

.opening {
  transition: max-height 1s ease-in;
}

.closing {
  transition: max-height 0.5s ease-out;
}

.beg-con-cont {
  padding: 20px;
  transition: padding 0.5s ease;
}

.beg-con-cont p {
  max-width: 80%;
  margin-left: 100px;
  color: #333333;
}

.active .beg-con-cont-wrapper {
  max-height: 500px;
}

.active .arrow-icon {
  transform: scale(0);
  opacity: 0;
}

.active .arrow-icon-up {
  transform: scale(1);
  opacity: 1;
}

/* _______________________________________________________________________________________________ */

#rev-box-full-container ul {
  display: flex;
  list-style: none;
}

#rev-box-full-container {
  max-width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 40px;
  margin-top: 20px;
}

#rev-boxes {
  display: flex;
}

#review-con {
  margin-bottom: 10px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

#review-con h2 {
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #333333;
}

#avg-rate-con,
#rev-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#avg-rate-con span {
  font-size: 15px;
  font-weight: 700;
}

#avg-rate-con ul {
  padding-left: 0;
}

#avg-rate-con #avg-rate {
  font-size: 50px;
  padding: 10px;
  color: #17d0cf;
}

#rev-detail {
  font-weight: 400;
  font-size: 17px;
  margin-left: 30px;
  line-height: 26px;
}

/* Progress Bar Styles */
.rev-range {
  width: 100px;
  height: 8px;
  background-color: #eeeeee;
  display: inline-block;
  margin: 0px 10px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.rev-range-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #17d0cf;
  transition: width 0.3s ease;
  border-radius: 4px;
}

.rev-range:hover .rev-range-fill {
  background-color: #14b5b4;
}

.rev-prof {
  display: flex;
  padding: 20px 0px;
  justify-content: space-between;
}

.comment-boxes {
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.prof-pic {
  width: 60px;
  height: 60px;
  background-color: #f0efef;
  border-radius: 100%;
  overflow: hidden;
}

.prof-pic img {
  width: inherit;
  height: inherit;
}

.prof-con {
  font-size: 14px;
  font-weight: 700;
  margin-left: 20px;
  margin-top: 20px;
}

.prof-con-rate {
  margin: 0px 20px;
  padding-bottom: 16px;
}

.prof-cont-left,
.prof-cont-right {
  display: flex;
  align-items: center;
}

.prof-name {
  color: #17d0cf;
  margin-left: 5px;
}

.command-bold {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 10px;
  color: #333333;
}

#write-rev {
  padding: 10px 10px;
}

#whole-star-rating {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
}

.star-rating-left {
  font-size: 30px;
  color: #333333;
  font-weight: 300;
}

.star-rating-right {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.rate {
  float: left;
  height: 46px;
  padding: 0 10px 0 0;
  /* position: relative;
  top: -12px; */
}

.rate:not(:checked)>input {
  position: absolute;
  top: -9999px;
}

.rate:not(:checked)>label {
  float: right;
  width: 1em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 30px;
  color: #000;
}

.rate:not(:checked)>label:before {
  content: '★ ';
}

.rate>input:checked~label {
  color: #FFD43B;
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
  color: #FFD43B;
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
  color: #FFD43B;
}

form {
  display: flex;
  flex-direction: column;
}

.review-input-box {
  display: flex;
  margin-top: 20px;
}

.boxes {
  display: flex;
  flex-direction: column;
}

.review-input-box label,
form label {
  font-size: 14px;
  font-weight: 700;
  color: #333333;
}

.name-box,
.email-box {
  width: 50%;
}

.name-box {
  margin-right: 20px;
}

form input {
  font-size: inherit;
  color: inherit;
}

.review-input-box input,
textarea {
  /* height: 40px; */
  border-radius: 4px;
  max-width: 100%;
  margin-bottom: 30px;
  padding: 15px;
  border: none;
  background-color: #f7f7f7;
  outline: none;
}

form textarea {
  height: 130px;
  font-size: 17px;
  color: inherit;
}

.button-box {
  height: 50px;
  width: 195px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to right, #01a6fd 0%, #17d0cf 51%, #01a6fd 100%);
  background-size: 300% auto;
  transition: 1s ease-out;
  background-position: right;
  box-sizing: border-box;
}

.button-box button {
  border: none;
  outline: none;
  background-color: transparent;
  white-space: no-wrap;
  font-size: inherit;
  font-weight: 700;
  color: white;
  padding: 0 10px;
}

.button-box:hover {
  background-position: 100px;
  background-size: 200% auto;
}

/* ____________________________________________________________________________________________________ */
.cd-ratings h1 {
  font-size: 30px;
  font-weight: 300;
  color: #333;
}

.cd-ratings h1 span {
  font-weight: 700;
  color: #17d0cf;
}

.btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.enroll-btn {
  background-color: #17d0cf;
  height: 50px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  white-space: no-wrap;
  max-width: 100%;
  background-image: linear-gradient(to right, #01a6fd 0%, #17d0cf 51%, #01a6fd 100%);
  background-size: 300% auto;
  transition: 1s ease-out;
  background-position: right;
  box-sizing: border-box;
  cursor: pointer;
}

.enroll-btn:hover {
  background-position: 100px;
  background-size: 200% auto;
}

.enroll-btn a {
  text-decoration: none;
  color: white;
  font-weight: 700;
  white-space: nowrap;
}

.enroll-btn a i {
  margin-left: 2px;
}

.wishlist-btn {
  height: 50px;
  width: 50px;
  background-color: #eeeeee;
  color: #cccccc;
  display: inline-block;
  line-height: 50px;
  text-align: center;
  border-radius: 4px;
}

.wishlist-btn a {
  font-size: 20px;
  text-decoration: none;
  color: #cccccc;
}

.wishlist-btn a:hover {
  color: rgba(255, 0, 0, 0.829);
}

#rating {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  min-width: 100%;
  margin-top: 20px;
}

#rating ul {
  list-style-type: none;
  display: flex;
  justify-content: baseline;
  padding: 0;
}

#rating span {
  font-size: 14px;
  color: #17d0cf;
  font-weight: 700;
  white-space: no-wrap;
}

.details {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 500;
  color: #c4c4c4;
  padding: 5px 0;
  border: 1px solid #eeeeee;
  border-left: none;
  border-right: none;
  position: relative;
}

.details-right {
  color: #333333;
  padding-left: 10px;
  text-align: right;
}

@media screen and (min-width:767px) and (max-width:970px) {
  .enroll-btn a {
      font-size: 1.7vw;
  }

  .details {
      font-size: 1.4vw;
  }
}

@media screen and (max-width:1120px) {
  .wishlist-btn {
      margin-left: 0px;
      margin-top: 5px;
  }
}


@media screen and (max-width:768px) {
  .enroll-btn {
      max-width: auto;
  }

  .btns {
      flex-direction: row;
      justify-content: baseline;
  }

  .wishlist-btn {
      margin-left: 5px;
      margin-top: 0px;
  }
}

@media screen and (max-width:291px) {
  .btns {
      flex-direction: column;
      justify-content: baseline;
  }

  .wishlist-btn {
      margin-left: 0px;
      margin-top: 5px;
  }
}

/* ---------------------------------------------------------------- */

.course-title h3 {
  color: #333333;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  transition: .3s all ease-in-out;
}

.side-bar-widget .latest-news-thumbnile {
  height: 80px;
  width: 80px;
  float: left;
  margin-right: 20px;
  overflow: hidden;
}

.latest-news-thumbnile .hover-search {
  position: absolute;
  top: 50%;
  left: 0;
  color: #fff;
  transform: translateY(-50%);
  text-align: center;
  right: 0;
  transition: .3s all ease-in-out;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.blakish-overlay {
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  position: absolute;
  visibility: hidden;
  transition: .3s all ease-in-out;
  background-color: rgba(0, 0, 0, 0.65);
}

.latest-news-area {
  display: inline-block;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
  width: 100%;
  max-width: 335px;
}

.latest-news-area:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.latest-news-area .date-meta {
  color: #989898;
  font-size: 14px;
  margin-bottom: 10px;
}

.latest-news-area:hover .blakish-overlay {
  opacity: 1;
  visibility: visible;
}

.latest-news-area:hover .hover-search {
  opacity: 1;
  visibility: visible;
}

.latest-title {
  font-size: 18px;
  color: #333333;
  margin-bottom: 10px;
}

.view-all-btn {
  color: #333333;
}

.view-all-btn i {
  color: #17d0cf;
  margin-left: 5px;
}

.side-bar-widget .latest-news-area {
  margin-bottom: 20px;
  padding-bottom: 15px;
}

.side-bar-widget .latest-title {
  font-size: 17px;
}

.side-bar-widget .tag-clouds li {
  border: 1px solid #cfcaca;
  color: #cbc8c8;
  padding: 5px 15px;
  margin-bottom: 8px;
  margin-right: 2px;
  border-radius: 4px;
  transition: .3s all ease-in-out;
}

.side-bar-widget .tag-clouds li:hover {
  background-color: #17d0cf;
  border-color: #17d0cf;
  color: #fff;
}

.best-course-pic-text .best-course-pic {
  overflow: hidden;
  border-radius: 4px;
}

.trend-badge-2 {
  top: -18px;
  left: -50px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  padding: 30px 35px 5px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #ff5a00;
}

.trend-badge-2 span {
  display: block;
}

.side-bar-widget {
  margin: 30px 0px;
  display: inline-block;
  width: 100%;
}

.side-bar-widget .widget-titles {
  font-size: 30px;
  font-weight: 300;
  color: #333333;
  margin-bottom: 20px;
}

.side-bar-widget .widget-titles span {
  font-weight: 700;
}

.side-bar-widget .best-course-text {
  position: absolute;
  top: 50%;
  background-color: transparent;
  box-shadow: none;
  transform: translateY(-50%);
  text-align: center;
}

.side-bar-widget .best-course-text h3 {
  color: #fff;
}

.side-bar-widget .best-course-text .course-meta {
  display: inline;
}

.side-bar-widget .best-course-text .course-meta span {
  float: none;
  margin-right: 0;
  color: #fff;
  margin: 0px 10px;
}

.side-bar-widget .best-course-pic-text:hover .best-course-text {
  box-shadow: none;
}

@media screen and (min-width:767px)and (max-width: 1024px) {
  .side-bar-widget .best-course-text {
      top: 63%;
  }

  .course-title h3 {
      font-size: 14px;
  }
}

@media (max-width: 767px) {
  .best-course-pic-text {
      max-width: 270px;
      margin: 0 auto;
      margin-bottom: 10px;
  }
}
.add-cart {
  margin-top: -5px !important;
}

.best-product-section .price-start {
  margin-top: 1px !important;
}

.course-title h3 {
  font-size: 16px !important;
  line-height: 25px !important;
  /* width: 350px; */
}

.course-content {
  padding: 10px !important;
}

.price-tag {
  left: 0px !important;
  padding: 0px 0px !important;
}

#about-page {
  margin-top: -33px;
}

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px !important;
}

.pagination ul {
  display: flex;
  list-style: none;
  padding: 0;
}

.pagination li {
  margin: 0 5px;
}

.pagination .page-link {
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background-color: #f0f0f0;
  cursor: pointer;
}

.pagination .activePage {
  background-color: #2eb9b8;
  color: rgb(3, 3, 3);
  border-radius: 5px;
}

.pagination .disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.pagination .dotClass {
  padding: 10px 15px;
}

.page-link {
  color: #000000 !important;
  font-weight: 500;
}

#about-page {
  margin-top: -50px !important;
}

.course-type-list span {
  display: inline-block;
  text-align: center;
  line-height: 1.5;
}

.short-filter-tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.shorting-filter {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.shorting-filter span {
  margin-right: 5px;
}

.shorting-filter select {
  margin-left: 5px;
}
.sort-by {
  margin-top: -20px;
  /* margin-left: 12%; */
}

.short-filter-tab {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.course-finder-widget {
  background: #fff;
  border-radius: 10px;
  margin-top: 35px;
}

.widget-title {
  font-size: 30px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.widget-title span {
  font-weight: 300;
}
.review-input-box label,
form label {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  display: block;
  font-family: Roboto;
}

.skiller-primary {
  height: 50px;
  line-height: 52px;
  border-radius: 4px;
  display: table;
  padding: 0 25px;
  background: linear-gradient(to right, #01a6fd 0%, #17d0cf 51%, #01a6fd 100%);
  transition: background 1s ease-out;
  background-size: 200% auto;
  width: 70%;
}
.skiller-primary:hover {
  background: linear-gradient(to right, #17d0cf 0%, #01a6fd 51%, #17d0cf 100%);
  background-size: 200% auto;
}
.find-course {
  font-weight: 700;
}

.skiller-primary:hover {
  background: linear-gradient(to right, #00f0ff, #0094ff);
}
.widget-title:after {
  background-color: #ffffff !important;
}
.skiller-primary i {
  color: #01a6fd;
  position: relative;
  right: 10px;
}
.btn.skiller-primary {
  height: 50px;
  line-height: 52px;
  border-radius: 4px;
  display: table;
  padding: 0 25px;
  background: linear-gradient(to right, #01a6fd 0%, #17d0cf 51%, #01a6fd 100%);
  background-size: 200% auto;
  transition: background 1s ease-out;
  width: 70%;
}

.btn.skiller-primary:hover {
  background: #01a6fd;
  background: -moz-linear-gradient(left, #17d0cf 0%, #01a6fd 51%, #17d0cf 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #4eb3bf), color-stop(51%, #01a6fd), color-stop(100%, #4eb3bf));
  background: -webkit-linear-gradient(left, #17d0cf 0%, #01a6fd 51%, #17d0cf 100%);
  background: -o-linear-gradient(left, #17d0cf 0%, #01a6fd 51%, #17d0cf 100%);
  background: -ms-linear-gradient(left, #17d0cf 0%, #01a6fd 51%, #17d0cf 100%);
  background: -webkit-gradient(linear, left top, right top, from(#17d0cf), color-stop(51%, #01a6fd), to(#17d0cf));
  background: linear-gradient(to right, #17d0cf 0%, #01a6fd 51%, #17d0cf 100%);
  background-size: 200% auto;
  background-position: 190px;
}
.skiller-primary span {
  position: relative;
  right: 16px;
}


