/*====================================================
    <--	eduplus Header Menu Section Css -->
======================================================*/
.header-top-area {
  background: #0866ff;
  padding: 10px 0;
}
.header-top-left-info span i {
	margin-right: 6px;
}
.header-top-left-info i {
  color: #fff;
  font-size: 15px;
}
.header-top-left-info a {
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  margin-right: 26px;
}
.header-top-right-social {
	text-align: right;
}
.header-social a {
  display: inline-block;
  font-size: 15px;
  margin-left: 12px;
}
.header-social a i {
  background: transparent;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  font-size: 14px;
  display: inline-block;
}
.header-social a i:hover {
	background: #fff;
	color: #0866ff;
	border: 1px solid #fff;
	transition:.5s ;
	-webkit-transition:.5s ;
	-moz-transition:.5s ;
	-ms-transition:.5s ;
	-o-transition:.5s ;
}
.menu-logo img {
	margin-top: -7px;
}
.header-menu-section{
  padding: 40px 0px;
  background: transparent;
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
}
.header-area {
	display: inherit;
}
.header-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-menu ul {
  display: inline-block;
}
.header-menu ul li {
  display: inline;
  position: relative;
  padding-bottom: 35px;
}
.header-menu ul li a {
  display: inline-block;
  text-decoration: none;
  color: #16243E;
  font-size: 17px;
  font-weight: 500;
  margin-right: 40px;
  position: relative;
  transition: .5s;
}
.header-menu ul li a i{
  font-size: 12px;
  margin-right: 15px;
}
.header-menu ul li a:hover{
	color:#0866ff;
}
.header-menu ul li a i {
  font-size: 12px;
  color:#000;
  opacity: 0.5;
}
.header-contact {
  display: inline-block;
}
.header-contact-icon span{
  color: #fff;
}
.header-contact-icon span i {
  margin-right: 15px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: #0866ff;
  background:  #0866ff;
  text-align: center;
  border-radius: 50%;
  color: #fff;
}
.header-contact-content p {
  margin-bottom: 0;
  color: #fff;
}
.header-contact-content span a {
	text-decoration: none;
	color: #000;
	font-size: 18px;
	font-weight: 600;
}

.has-homemenu {
  width: 600px !important;
  padding: 30px 30px 10px 30px !important;
  box-shadow: rgba(149, 157, 165, 0.4) 0px 8px 24px !important;
}
.has-homemenu .homemenu {
  position: relative;
  padding: 0px 10px;
  margin-bottom: 20px;
}
.has-homemenu .homemenu-thumb {
  position: relative;
}
.has-homemenu .homemenu-thumb::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #0866ff;
  opacity: 0;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.has-homemenu .homemenu-thumb:hover::before {
  opacity: 0.2;
}
.has-homemenu .homemenu-btn {
  position: absolute;
  bottom: 16%;
  left: 0;
  right: 0;
  opacity: 0;
  text-align: center;
  visibility: hidden;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.has-homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
}
.has-homemenu .homemenu-btn .menu-btn {
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 5px;
  width: 128px;
  background-size: 200% auto;
  color:#fff;
  background: #0866ff;
  overflow: hidden;
}
.has-homemenu .homemenu-btn .menu-btn span{
  color: #fff;
}
.has-homemenu .homemenu-thumb:hover .homemenu-btn .menu-btn.show-1 {
  top: 42%;
  transform: translateY(-42px);
}
.has-homemenu .homemenu-thumb:hover .homemenu-btn .menu-btn.show-2 {
  top: 30%;
  transform: translateY(-30px);
}

/*====================================================
    <--	eduplus Sub Menu Section Css -->
======================================================*/
.header-menu ul li .sub-menu {
  text-align: left;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 260px;
  left: 0;
  top: 58px;
  padding: 10px 0;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
  box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
  z-index: 9;
  transition: .5s;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.header-menu ul li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
}
.header-menu ul li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
}
.header-menu ul li .sub-menu li a {
  display: block;
  color: #0a2c3d;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 0px;
  transition: .5s;
  border-bottom: 1px solid rgb(0,0,0,.09);
  margin: 5px 20px;
  position: relative;
}
.header-menu ul li .sub-menu li a:hover {
  color: #0866ff;
}
.header-menu ul li .sub-menu li a:before {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  bottom: 0;
  left: 0px;
  right: 0px;
  transform: scaleX(0);
  background: #0866ff;
  transition: .5s;
}
.header-menu ul li .sub-menu li a:hover:before{
    transform: scaleX(1);
}
/*============= Sticky CSS ===============*/
.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: .95s ease-in-out 0s normal none 1 running fadeInDown;
  z-index: 10000;
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 15px 0 15px;
  -webkit-animation: .95s ease-in-out 0s normal none 1 running fadeInDown;
}
.header-area.transparent .sticky-logo {
  display: none;
}
.header-area.transparent .is-sticky .sticky-logo {
  display: block;
}
.header-area.transparent .is-sticky .main-logo {
  display: none;
}
.header-area.transparent .is-sticky .header-main-menu ul li a{
  color:#000;
}
/*============= Sticky CSS End =====================*/

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: #0866ff;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #0866ff;
  -webkit-animation: cxuSpin 2s linear infinite;
  animation: cxuSpin 2s linear infinite;
}
#loader::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #000;
  -webkit-animation: cxuSpin 3s linear infinite;
  animation: cxuSpin 3s linear infinite;
}
#loader::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #F9C02F;
  -webkit-animation: cxuSpin 1.5s linear infinite;
  animation: cxuSpin 1.5s linear infinite;
}

/*============= Preloader CSS End =====================*/

/*====================================================
      <--	eduplus Footer Section Area Css -->
======================================================*/
.footer-section-area {
  /* background: url(../image/bg-shapee.png);
  background-repeat: no-repeat;
  background-size: cover; */
  /* background-position: center center; */
  background-color: #fff; 
  padding-bottom: 20px;
}
.footer-main-area{
  margin-bottom: 25px;
  display: block;
}
.footer-widget-log {
	padding-top: 10px;
	margin-bottom: 20px;
}
.footer-widget-content p {
  color: #fff;
  margin-bottom: 20px;
  width: 84%;
}
.footer-widget-social{
  padding-top: 10px;
}
.footer-widget-logo img {
	margin-top: -20px;
}
.footer-widget-logo {
  margin-bottom: 20px;
}
.footer-widget-social a {
  margin-right: 25px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.footer-widget-social a i{
  font-size: 20px;
  color:#fff;
}
.footer-widget-social a:hover{
  background:#0866ff;
  color:#fff;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.footer-widget-title h3{
  color:#fff;
  margin-bottom: 20px;
  font-size: 25px;
  position: relative;
}
.footer-widget-title h3::after {
	position: absolute;
	content: "";
	width: 50px;
	height: 2px;
	bottom: -5px;
	left: 0;
	background-color: #0866ff;
}
.footer-widget-content a {
	text-decoration: none;
}
.footer-widget-content ul li {
  margin-bottom: 10px;
}
.footer-widget-content ul li::marker{
  color: #fff;
  font-size: 14px;
}
.footer-widget-content ul li a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.footer-widget-content ul li a:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.footer-widget-content ul li a:hover:before{
  width: 100%;
}
.footer-widget-item{
  position: relative;
}
.footer-widget-item a:before{
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.footer-widget-item a:hover:before{
  width: 100%;
}


.blog__title a{
  color: #002935;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
  font-family: "Manrope", sans-serif;
	background-image: linear-gradient(#0866ff, #0866ff), linear-gradient(#0866ff, #0866ff);
	background-size: 0% 1px, 0 1px;
	background-position: 100% 100%, 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.4s linear;
	-webkit-transition: background-size 0.4s linear;
	-moz-transition: background-size 0.4s linear;
	-ms-transition: background-size 0.4s linear;
	-o-transition: background-size 0.4s linear;
}

.blog__title a:hover {
	background-size: 0 1px, 100% 1px;
} 
.blog__title a:hover{
  color:#0866ff;
}

.footer-item-title li{
	margin-bottom: 10px;
}
.footer-item-title a{
  color:#fff;
  font-size: 18px;
  text-decoration: none;
  display: block;
}

.footer__post {
  gap: 20px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: 90px 20px auto;
  grid-template-columns: 90px auto;
  margin-bottom: 30px;
}
.footer__post img {
	width: 88px;
}
.footer__post .title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 10px;
	color: #FFF;
	font-family: "Manrope", sans-serif;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.info p {
	color: #fff;
  font-size: 15px;
}
.footer-item-title a {
	background-image: linear-gradient(#f1f1f5, #f3f3f8), linear-gradient(#f3f3f7, #f2f2f7);
	background-size: 0% 1px, 0 1px;
	background-position: 100% 100%, 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.4s linear;
	position: relative;
	-webkit-transition: background-size 0.4s linear;
	-moz-transition: background-size 0.4s linear;
	-ms-transition: background-size 0.4s linear;
	-o-transition: background-size 0.4s linear;
  display: inline-block;
}
.footer-item-title span {
  color: #fff;
  font-size: 15px;
  display: block;
}
.footer-item-title span i{
  color:#fff;
  margin-right: 5px;
  font-size: 14px;
}
.footer-widget-contact {
  border: 1px solid #333F4D;
  padding: 28px 30px 4px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.footer-widget-contact-inner i{
  color:#fff;
  margin-right: 5px;
}
.footer-widget-contact-inner a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 24px;
}

.footer-widget-copyright-inner p{
  color:#fff;
  
}
.footer-widget-copyright-inner a{
  color:#fff;
  text-decoration: none;
  margin-right: 35px;
}
/*========= Footer Copyright Area =========*/
.footer-copyright-area {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-copyright-inner {
	position: relative;
}
.footer-copyright-inner p {
	color: #000;
	margin-bottom: 14px;
}
.footer-copyright-inner p img {
  width: 20px;
  margin-right: 30px;
}
.footer-copyright-inner a {
	color: #fff;
	text-decoration: none;
	margin-right: 30px;
	font-size: 18px;
}
.footer-copyright-inner a:hover{
  color:#0866ff;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}


/*--- =============== Scroll Top ============ ---*/
.scroll-area .go-top {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 30px;
  color: #ffffff;
  background-image: -moz-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
  background-image: -webkit-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
  z-index: 9999;
  width: 45px;
  text-align: center;
  height: 45px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.9s ease-out 0s;
  -moz-transition: all 0.9s ease-out 0s;
  border-radius: 10px; 
}
.scroll-area .go-top i {
  position: absolute;
  top: 50%;
  left: -4px;
  right: 0;
  margin: 0 auto;
  font-size: 15px;
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
}
.scroll-area .go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%; 
}
.scroll-area .go-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #0866ff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  border-radius: 100%;
}
.scroll-area .go-top:focus, .scroll-area .go-top:hover {
  color: #fff; 
}
.scroll-area .go-top:focus::before, .scroll-area .go-top:hover::before {
      opacity: 1;
      visibility: visible; 
}
.scroll-area .go-top:focus i:first-child, .scroll-area .go-top:hover i:first-child {
      opacity: 0;
      top: 0;
      visibility: hidden;
}
.scroll-area .go-top:focus i:last-child, .scroll-area .go-top:hover i:last-child {
      opacity: 1;
      visibility: visible;
      top: 50%; 
}
.scroll-area .go-top.active {
  top: 95%;
  -webkit-transform: translateY(-98%);
  -moz-transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
  border-radius: 0;
  right: 30px;
  border-radius:100%;
}
.go-top.go-top-button.active:hover {
	background-color: #000;
}
.top-wrap {
position: relative; 
}
.top-wrap .go-top-button {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  top: 3px;
  z-index: 1;
  background: #0866ff;
}
.top-wrap .go-top-button i {
  font-size: 20px;
  font-weight: 700;
  padding-left: 4px;
  color: #fff;
}
.top-wrap .go-top-button::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 45px;
  height: 45px;
  -webkit-animation: ripple 1.6s ease-out infinite;
  -moz-animation: ripple 1.6s ease-out infinite;
  opacity: 0;
  border-radius: 100%;
}
.top-wrap .go-top-button:hover {
  background: #0866ff;
  color: #fff; 
}
/*============= Sticky CSS ===============*/
.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: .95s ease-in-out 0s normal none 1 running fadeInDown;
  z-index: 10000;
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  -webkit-animation: .95s ease-in-out 0s normal none 1 running fadeInDown;
  padding: 18px 0;
}
.header-area.transparent .sticky-logo {
  display: none;
}
.header-area.transparent .is-sticky .sticky-logo {
  display: block;
}
.header-area.transparent .is-sticky .main-logo {
  display: none;
}
.header-area.transparent .is-sticky .header-main-menu ul li a{
  color:#000;
}

/*============= Hero Section CSS ===============*/
.hero__area {
  background: url('../image/1.png') no-repeat;
  background-size: cover;
	background-color:  #fff;
	position: relative;
  /* margin-top: 280px; */
}
.hero__area .star-1 {
  position: absolute;
  top: 130px;
  left: 41%;
}
.hero__area .star-2 {
  position: absolute;
  left: 285px;
  top: 160px;
}
.hero__area .star-3 {
  position: absolute;
  right: 200px;
  bottom: 90px;
}
.hero__content {
	padding-top: 70px;
}
.hero__title {
	font-size: 40px;
	font-weight: 800;
	line-height: 1.5;
	color: #000;
	letter-spacing: -0.8px;
	font-family: "Manrope", sans-serif;
}
.color-pink {
	color: #0866ff;
}
.b-btm {
	position: relative;
}
.b-btm::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 10px;
	bottom: 5px;
	left: 0;
	opacity: 0.3;
	background-color: #0866ff;
}
.hero__area .shape-2 {
	position: absolute;
	top: 0;
	left: 0;
}
.hero__area .shape-1, .hero__area .breadcrumb__area .shape-3, .breadcrumb__area .hero__area .shape-3, .hero__area .breadcrumb__area .shape-2, .breadcrumb__area .hero__area .shape-2 {
	position: absolute;
	left: 53%;
	top: 90px;
}
.hero__area .shape-2 {
  position: absolute;
  top: 0;
  left: 0;
}
.b-btm {
	position: relative;
}


.hero__area .swiper-pagination {
  top: 50%;
  width: 65px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  height: 100%;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 30px;
}
.hero__area .swiper-pagination-bullet {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: #80979D;
  position: relative;
  background: transparent;
  font-family: "Manrope", sans-serif;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}
.hero__area .swiper-pagination-bullet::after {
  position: absolute;
  content: "";
  width: 0px;
  height: 2px;
  right: 0;
  top: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #0866ff;
}
.hero__area .swiper-pagination-bullet-active {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.hero__area .swiper-pagination-bullet-active::after {
  top: -8px;
  width: 32px;
}

.hero__btn {
  gap: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}
.hero__btn button {
  border: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  color: #fff;
  background: transparent;
  font-family: "Manrope", sans-serif;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hero__btn button:hover {
  color: #0866ff;
}
.hero__content p {
  font-size: 18px;
  max-width: 590px;
  padding-top: 20px;
  padding-bottom: 50px;
  color:#000;
}
.hero__content .btns {
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hero__slider {
  margin-left: 10px;
}
.hero__slider img {
  border-radius: 12px;
}
.hero__right {
  position: relative;
}
.hero__social {
  position: absolute;
  right: -40px;
  top: 0;
}
.social-media-2 {
	padding-top: 8px;
}
.social-media-2 li {
	padding-bottom: 10px;
}
.social-media-2 li a {
	font-size: 16px;
	color: #fff;
	display: inline-block;
}
.social-media-2 li a:hover {
  color: #0866ff;
}
.social-media-2 p {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	display: inline-block;
	-webkit-writing-mode: vertical-lr;
	-ms-writing-mode: tb-lr;
	writing-mode: vertical-lr;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	font-family: "Manrope", sans-serif;
}
.social-media-2 p span {
  width: 2px;
  height: 32px;
  margin-bottom: 5px;
  display: inline-block;
  background: #0866ff;
}

.btn-ractangle-2 {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	border-radius: 6px;
	padding: 15px 25px;
	font-weight: 400;
	display: inline-block;
	border: 1px solid #0866ff;
	background-color: #0866ff;
}
.btn-ractangle-2 img {
	padding-left: 3px;
}
.btn-ractangle-2:hover {
	color: #fff;
	background-color: transparent;
}
.btn-border {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	border-radius: 60px;
	padding: 15px 25px;
	font-weight: 400;
	display: inline-block;
}
.btn-border:hover {
	/* color: #0866ff; */
  border-color: #7da9ce;
  background-color: #7da9ce;
}
.btns {
  position: relative;
}
.btn-border {
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
  position: relative;
  transition: all 0.3s ease;
}

.hover-popup {
  position: absolute;
  top: 20%; /* 控制弹出层的位置 */
  left: 35%;
  transform: translateX(-50%);
  width: 200px; /* 弹出层的宽度 */
  /* height: 150px; /* 弹出层的高度 */
  background: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* 阴影效果 */
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

.hover-popup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.btn-border:hover + .hover-popup,
.p-box:hover + .hover-popup {
  opacity: 1;
  visibility: visible;
  top: -150px; /* 弹出层在悬浮时移动的高度 */
}
.btns a{
  text-decoration: none;
}

/*============= Achievement Section CSS ===============*/
.achievement__area {
  background-color: #fff;
}
.achievement__top {
  text-align: center;
  padding-bottom: 40px;
}
.achievement__top p {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
  color: #002935;
  font-family: "Manrope", sans-serif;
}
.achievement__item {
  width: 163px;
  height: 218px !important;
  border-radius: 12px;
  /* background: #fff; */
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.achievement__img {
  width: 80px;
  height: 80px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #CDE0FF;
  border-radius: 100%;
  padding: 20px;
  -ms-flex-preferred-size: 80px;
  flex-basis: 80px;
}
.achievement__info p {
  font-weight: 700;
  line-height: 24px;
  color: #4A5355;
}
.achievement__number {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  color: #0866ff;
  letter-spacing: 0.96px;
  font-family: "Manrope", sans-serif;
}
.achievement__item .bg-2 {
  background-color:#CDE0FF;
}
.achievement__item .bg-3 {
  background-color: #CDE0FF;
}
.achievement__item .bg-4 {
  background-color: #CDE0FF;
}

/*============= About Section CSS ===============*/

.about__area {
  padding: 350px 0;
  background: url(../image/7.png) no-repeat;
  background-size: cover;
  background-color: #fff;
  background-position: center;
}
.about__area .container{
  
}
.about-inner {
	padding-top: 160px;
}
.about__inner {
  
}
.about__img {
  position: relative;
}
.about__img .image {
  z-index: 3;
  width: 100%;
  position: relative;
  padding-left: 60px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.about__img .shape {
  z-index: 0;
  position: absolute;
  top: -40px;
  left: 0;
}
.about__success {
  position: absolute;
  bottom: 60px;
  left: 0;
  z-index: 5;
}
.success-story {
	gap: 10px;
	width: 310px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 22px 20px;
	border-radius: 8px;
	background: #fff;
	-webkit-box-shadow: -8px 8px 25px 0px rgba(0, 0, 0, 0.1);
	box-shadow: -8px 8px 25px 0px rgba(0, 0, 0, 0.1);
}
.success-story .title {
	color: #001920;
	font-family: "Manrope", sans-serif;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.5;
}
.about__content {
  padding-top: 50px;
  margin-left: 100px;
}
.sec-subtitle::before{
  position: absolute;
  content: "";
  left: -4px;
  top: 0;
  width: 26px;
  height: 26px;
  background: rgba(156, 193, 255);;
  border-radius: 50px;
}
.sec-subtitle::after{
  position: absolute;
  content: "";
  left: 4px;
  top: 8px;
  width: 10px;
  height: 10px;
  background: #0866ff;
  border-radius: 50px;
}
.about__content > p {
  max-width: 580px;
  padding-top: 18px;
  padding-bottom: 25px;
}
.about__content ul {
  padding-bottom: 30px;
}
.about__content ul li {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: #4A5355;
  padding-left: 20px;
  position: relative;
}
.about__content ul li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  left: 0;
  top: 12px;
  border-radius: 100px;
  background-color: #0866ff;
}
.about__content .btm {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about__btn a:hover {
  color: #002935;
}
.about__btn a:hover img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.about__btn a img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.project-story {
	gap: 20px;
	width: 310px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.project-story .title {
	color: #001920;
	font-family: "Manrope", sans-serif;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.5;
}

/*============= Services Section CSS ===============*/
.service__area {
	padding-bottom: 300px;
	padding-top: 300px;
	position: relative;
  /* background: url(../image/8.png) no-repeat; */
  background-size: cover;
  background-color: #fff;
}
.service__area .shape {
  position: absolute;
  right: 225px;
  bottom: 210px;
  z-index: 0;
  opacity: 0.5;
}
.service__area .text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  gap: 15px;
}
.service__category {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  padding-left: 60px;
  color: #0866ff;
  font-family: "Manrope", sans-serif;
}
.service__category::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 2px;
  left: 0;
  top: 13px;
  background-color: #0866ff;
}
.service__inner {
	display: -ms-grid;
	display: grid;
	grid-gap: 20px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-grid-columns: 1fr 20px 0.5fr;
	grid-template-columns: 1fr 0.5fr;
	margin-top: 55px;
}
.service__list {
  padding: 40px 20px 30px;
  border-radius: 12px;
  background: #002935;
  position: relative;
  z-index: 1;
}
.service__list .title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  padding-bottom: 40px;
  font-family: "Manrope", sans-serif;
}
.service__list .title img {
  margin-right: 5px;
}
.service__list .nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 0;
}
.service__list .nav-tabs .nav-item:last-child .nav-link {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.service__list .nav-tabs .nav-link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: "Manrope", sans-serif;
  border: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  padding: 0;
  border-bottom: 1px solid #1A434F;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.service__list .nav-tabs .nav-link.active {
  color: #0866ff;
  background-color: transparent;
}
.service__list .nav-tabs .nav-link.active span {
  background-color: #0866ff;
}
.service__list .nav-tabs .nav-link span {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #1A434F;
  padding-top: 7px;
  border-radius: 100%;
}
.service__item {
  position: relative;
}
.service__item img {
  border-radius: 12px;
}
.service__item .info {
  padding: 35px 30px;
  background: #fff;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
  position: absolute;
  width: 85%;
  left: 0;
  -webkit-transform: translateY(-90px);
  transform: translateY(-90px);
  position: relative;
  z-index: 1;
}
.service__item p {
  font-size: 18px;
  padding-bottom: 25px;
  color:#001D25;
}
.service__item a {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  display: inline-block;
  color: #0866ff;
}
.service__item a img {
  margin-left: 3px;
}
.service__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  color: #002935;
  font-family: "Manrope", sans-serif;
  padding-bottom: 16px;
}

.about-service-wrap {
  background-color: #F5F5F5;
  /* background-image: url(../image/shape-04.png); */
  /* background-repeat: no-repeat;
  background-position: bottom left; */
  position: relative;
}
/* .about-service-wrap::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  pointer-events: none;
  background-image: url(../images/shape/shape-03.png);
  background-repeat: no-repeat;
  background-position: right top;
  images/shape/shape-03.png
  assets/images/home-1/line.png
} */

/*============= Course Section CSS ===============*/
.course__area {
	background-color: #F5F5F5;
	background-image: url(../image/coursee-bg.png);
	background-repeat: no-repeat;
	background-position: left top;
}
.course__area .text-wrapper {
  z-index: 1;
  text-align: right;
  position: relative;
  padding-right: 30px;
  max-width: 550px;
  margin-left: auto;
  padding-top: 10px;
  background-image: url(../image/line.png);
  background-repeat: no-repeat;
  background-position: right center;
  height: 100%;
}
.sec-subtitle-2 {
	font-size: 18px;
	font-weight: 800;
	line-height: 1.5;
	color: #0866ff;
	font-family: "Manrope", sans-serif;
	text-transform: capitalize;
	padding-bottom: 10px;
  padding-left: 30px;
}
.course__area .text-wrapper p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  padding-top: 10px;
}
.course__area .title-wrapper {
  padding-left: 30px;
}
.course__category {
  z-index: 1;
  position: relative;
  padding-top: 80px;
  padding-bottom: 50px;
  display: -ms-grid;
  display: grid;
  grid-gap: 30px;
  -ms-grid-columns: 1fr 30px auto;
  grid-template-columns: 1fr auto;
}
.course__category .nav-tabs {
  border-bottom: 1px solid #002E3B;
}
.course__category .nav-item {
  padding-right: 30px;
}
.course__category .nav-link {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  font-family: "Manrope", sans-serif;
  padding: 10px;
  border-radius: 0;
  outline: 0;
}
.course__category .nav-link:hover {
  color: #0866ff;
  border-color: transparent;
  border-bottom: 1px solid #0866ff;
}
.course__category .nav-link.active {
  border-color: transparent;
  color: #0866ff;
  background-color: transparent;
  border-bottom: 1px solid #0866ff;
}
.course__btns {
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.course__btns button {
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 100%;
	color: #fff;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	background-color: #0866ff;
}
.course__btns button:hover {
  color: #001920;
  background-color: #fff;
}
.course__btns .course-btn-next i {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.course__btns .course-btn-prev i {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.course__item {
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  position: relative;
}
.course__item .image {
  margin-bottom: 30px;
  border-radius: 6px 6px 0 0;
}
.course__item .rating {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  background: #0866ff;
  display: inline-block;
  padding: 3px 8px;
  border-top-left-radius: 6px;
  position: absolute;
  top: 20px;
  left: 20px;
}
.course__item .rating i {
  font-size: 14px;
  color: #F9C02F;
}
.course__item .category {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  border-radius: 4px;
  display: inline-block;
  padding: 4px 10px;
  background: #0866ff;
  margin-bottom: 10px;
}
/* .course__title {
  color: var(---5);
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
} */
.course__title a{
  color: #001920;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
  -webkit-transition: all 0.3s;
	transition: all 0.3s;
  background-image: linear-gradient(#0866ff, #0866ff), linear-gradient(#0866ff, #0866ff);
	background-size: 0% 1px, 0 1px;
	background-position: 100% 100%, 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.4s linear;
	-webkit-transition: background-size 0.4s linear;
	-moz-transition: background-size 0.4s linear;
	-ms-transition: background-size 0.4s linear;
	-o-transition: background-size 0.4s linear;
}
.course__title a:hover{
  background-size: 0 1px, 100% 1px;
}

.course__title a:hover{
  color:#0866ff;
}
.course__meta {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
.course__meta li {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #4A5355;
}
.course__meta li img {
  margin-right: 3px;
}
.course__btm {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 15px;
  border-top: 1px solid #E6E8E9;
}
.course__author {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.course__author p {
  color: #001920;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}
.course__cost p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #0866ff;
  font-family: "Manrope", sans-serif;
}
.course__cost p span {
  margin-right: 12px;
  display: inline-block;
  color: #001920;
  text-decoration: line-through;
}
.course__more {
  margin-top: 60px;
  text-align: center;
}
.course__more a:hover {
  color: #002935;
}
.course__more a:hover img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.course__more img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*============= Why Section CSS ===============*/
.why__area {
  background-color: #F5F5F5;
}
.why__image {
  text-align: right;
  position: relative;
}
.why__image img {
  margin-right: -50px;
}
.why__image .expert-tutor {
  position: absolute;
  left: 90px;
  top: 45%;
}
.expert-tutor {
	width: 170px;
	border-radius: 10px;
	text-align: center;
	padding: 24px 18px;
	background: #fff;
	-webkit-box-shadow: -8px 8px 15px 0px rgba(0, 0, 0, 0.08);
	box-shadow: -8px 8px 15px 0px rgba(0, 0, 0, 0.08);
}
.expert-tutor span {
	width: 76px;
	height: 76px;
	border-radius: 100%;
	display: inline-block;
	background: #0866ff;
	color: #fff;
	text-align: center;
	font-family: "Inter", sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 76px;
}
.expert-tutor p {
	font-size: 20px;
	font-weight: 600;
	color: #4A5355;
	font-family: "Inter", sans-serif;
}
.why__image .total-student {
  position: absolute;
  right: 0;
  bottom: 0;
}
.total-student {
	width: 240px;
	text-align: center;
	border-radius: 8px;
	padding: 40px 20px;
	background: #fff;
	-webkit-box-shadow: 8px 8px 30px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 8px 8px 30px 0px rgba(0, 0, 0, 0.1);
}
.total-student span {
	width: 64px;
	height: 64px;
	border-radius: 100%;
	display: inline-block;
	background: #0866ff;
}
.total-student p {
	font-size: 16px;
	font-weight: 500;
	color: #4A5355;
	font-family: "Inter", sans-serif;
}
.total-student .student {
	color: #002935;
	font-size: 32px;
	font-weight: 700;
	padding-bottom: 15px;
	font-family: "Inter", sans-serif;
}

.why__feature {
  width: 480px;
  padding: 25px 20px;
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  gap: 20px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: 70px 20px auto;
  grid-template-columns: 70px auto;
  position: relative;
  z-index: 1;
}
.why__feature:last-child {
  margin-left: 70px;
}
.why__feature .title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
  padding-bottom: 10px;
  color: #002935;
  font-family: "Manrope", sans-serif;
}
.why__content {
  padding-top: 80px;
}
.why__content > p {
  padding-top: 25px;
  padding-bottom: 40px;
}
.online__class {
  padding: 70px;
  margin-top: 120px;
  text-align: center;
  border-radius: 19px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/class-bg.png);
  margin-bottom: -180px;
  position: relative;
  z-index: 3;
}
.online__class p {
  color: #fff;
  padding-bottom: 40px;
}
.online__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  max-width: 590px;
  margin: 0 auto;
  padding-bottom: 20px;
  font-family: "Manrope", sans-serif;
}
.online__title span {
  color: #0866ff;
}
.sec-title span {
	color: #0866ff;
}

/*============= instructor Section CSS ===============*/
.instructor__area {
  /* padding-top: 300px; */
  background-color: #fff;
  background-image: url(../image/7.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.instructor__list {
  gap: 25px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 1fr 25px 1fr 25px 1fr;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  padding-top: 40px;
}
.instructor__item {
  border-radius: 8px;
  background: transparent;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08), 0px 0px 6px 0px rgba(0, 0, 0, 0.02);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08), 0px 0px 6px 0px rgba(0, 0, 0, 0.02);
  padding: 40px 30px;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  /* border-bottom: 6px solid #fff; */
}
.instructor__item:hover {
  border-color: #0866ff;
}
.instructor__item img {
  margin-bottom: 20px;
  /* border-radius: 215px; */
}
.instructor__item p {
  font-size: 14px;
  padding-top: 10px;
  font-weight: 500;
}
.instructor__name {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  color: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Manrope", sans-serif;
}
.instructor__name:hover {
  color: #0866ff;
}
.instructor__category {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.instructor__category .shape {
  position: absolute;
  left: 30%;
}
.instructor__category select {
  border-radius: 8px;
  padding: 15px 20px;
  color: #fff;
  background: #0866ff;
  cursor: pointer;
}
#instructor_category {
	border: 0;
}


.share__wrap {
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 25px;
  padding-right: 25px;
}
.share__wrap li {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 9;
  -webkit-transform: translateY(calc(-60px * var(--i)));
          transform: translateY(calc(-60px * var(--i)));
}
.share__wrap li a {
  width: 40px;
  height: 30px;
  display: inline-block;
  background-color: #fff;
  text-align: center;
  line-height: 30px;
  font-size: 16px;
  color: #002935;
}
.share__wrap li a:hover {
  color: #0866ff;
}
.share__wrap .active li {
  -webkit-transform: translateY(calc(0px * var(--i)));
  transform: translateY(calc(0px * var(--i)));
}
.share__wrap .share-btn {
  width: 40px;
  height: 40px;
  display: inline-block;
  background-color: #0866ff;
  text-align: center;
  line-height: 42px;
  font-size: 22px;
  color: #fff;
  border: none;
  outline: none;
  font-weight: 300;
  border-radius: 12px;
}

.share__wrap .share-btn.active {
  background-color: #0866ff;
}

.social-share {
  overflow: hidden;
  border-radius: 0 0 6px 6px;
  -webkit-filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.06)) drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.04));
          filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.06)) drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.04));
}
.social-share li:first-child a {
  height: 40px;
  padding-top: 10px;
}
.social-share li:last-child a {
  height: 35px;
}

/*============= Faq Section CSS ===============*/
.faq__area {
  background-color: #F5F5F5;
}
.faq__area .title-wrapper p {
  font-size: 18px;
  padding-top: 20px;
  padding-bottom: 30px;
}
.faq__left {
  position: relative;
  margin-right: 40px;
}
.faq__left img {
	border-radius: 8px;
}
.faq__left .image {
  position: relative;
  z-index: 1;
}
.faq__left .shape {
  position: absolute;
  right: 0;
  top: -35px;
  z-index: 0;
}
.faq__left .contact-box {
  position: absolute;
  right: 0;
  bottom: -100px;
  z-index: 3;
}
.faq__list .accordion-item {
  border-radius: 8px;
  margin-bottom: 15px;
  background: #fff;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
}
.faq__list .accordion-button {
  color: #070F2C;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  border-radius: 0;
  font-family: "Manrope", sans-serif;
}
.faq__list .accordion-button::after {
  background-image: none;
  content: "+";
  -webkit-transform: unset;
          transform: unset;
  width: 20px;
  height: 20px;
  color: #070F2C;
  border: 1px solid #070F2C;
  line-height: 18px;
  text-align: center;
  border-radius: 100px;
}
.faq__list .accordion-button:focus {
  outline: none;
  border: none;
}
.faq__list .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  color: #0866ff;
  background-color: transparent;
}
.faq__list .accordion-button:not(.collapsed)::after {
  content: "-";
  color: #0866ff;
  border-color: #0866ff;
}
.faq__left .contact-box {
	position: absolute;
	right: 0;
	bottom: -100px;
	z-index: 3;
}
.contact-box {
	max-width: 410px;
	padding: 40px 25px;
	border-radius: 8px;
	background: #002935;
	-webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
}
.contact-box li {
	gap: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.contact-box li a {
	font-size: 36px;
	font-weight: 800;
	line-height: 1.3;
	color: #fff;
	display: inline-block;
	font-family: "Manrope", sans-serif;
}
.contact-box p {
	font-size: 22px;
	font-weight: 800;
	line-height: 1.5;
	color: #fff;
	padding-bottom: 20px;
	font-family: "Manrope", sans-serif;
}
.contact-box a {
	color: #0866ff;
	font-size: 17px;
}
.contact-box p span {
	color: #0866ff;
}

/*============= Testimonials Section CSS ===============*/
.testimonial__area {
  position: relative;
  background-color: #F5F5F5;
}
.testimonial__area .title-wrapper {
  text-align: center;
  padding-bottom: 40px;
}
.testimonial__area .image-1 {
  position: absolute;
  left: 15%;
  top: 15%;
}
.testimonial__area .image-2 {
  position: absolute;
  left: 18%;
  top: 32%;
}
.testimonial__area .image-3 {
  position: absolute;
  left: 15%;
  top: 62%;
}
.testimonial__area .image-4 {
  position: absolute;
  right: 15%;
  bottom: 0%;
}
.testimonial__area .image-5 {
  position: absolute;
  right: 18%;
  top: 60%;
}
.testimonial__area .image-6 {
  position: absolute;
  right: 15%;
  top: 20%;
}
.testimonial__content {
  max-width: 930px;
  margin: 0 auto;
  border-radius: 8px;
  padding: 60px 40px;
  background-color:#0866ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
.testimonial__content .text {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
}
.testimonial__info {
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 40px;
}
.testimonial__info img {
  width: 76px;
  height: 76px;
  border-radius: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.testimonial__info .name {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  font-family: "Manrope", sans-serif;
}
.testimonial__info p {
  color:#B3C0C4;
}
.testimonial__btn {
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.testimonial__btn button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 100%;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #00171E;
}
.testimonial__btn button:hover {
  background-color: #fff;
}
.testimonial__btn-prev i:hover {
	color: #0866ff;
}
.testimonial__btn-next i:hover {
	color: #0866ff;
}
.testimonial__btn-prev {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.testimonial__btn-next {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*============= Blog Section CSS ===============*/
.blog__area {
  background-color: #F5F5F5;
}
.blog__area .title-wrapper {
  padding-bottom: 60px;
}
.blog__item {
  border-radius: 8px;
  background: #fff;
  border: 1px solid #D9DDDE;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08), 0px 0px 6px 0px rgba(0, 0, 0, 0.02);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08), 0px 0px 6px 0px rgba(0, 0, 0, 0.02);
}
.blog__item .image {
  border-radius: 8px 8px 0 0;
  width: 100%;
}
.blog__content {
  padding: 20px 20px 35px;
}
.blog__content p {
  padding-bottom: 20px;
}
.blog__meta {
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 10px;
}
.blog__meta li a {
  color: #0866ff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.blog__meta li a i {
  margin-right: 5px;
}
.blog__title a{
  color: #002935;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
  /* padding-bottom: 15px; */
  font-family: "Manrope", sans-serif;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-image: linear-gradient(#0866ff, #0866ff), linear-gradient(#0866ff, #0866ff);
	background-size: 0% 1px, 0 1px;
	background-position: 100% 100%, 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.4s linear;
	-webkit-transition: background-size 0.4s linear;
	-moz-transition: background-size 0.4s linear;
	-ms-transition: background-size 0.4s linear;
	-o-transition: background-size 0.4s linear;
}
.blog__title a:hover {
  color: #0866ff;
  background-size: 0 1px, 100% 1px;
}
.blog__content p {
	margin-top: 10px;
}
.blog__list {
  gap: 20px;
  display: -ms-grid;
  display: grid;
}
.blog__single {
  padding: 30px 25px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #E6E8E9;
  gap: 20px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: 1fr 20px auto;
  grid-template-columns: 1fr auto;
}

.blog__single .title a {
	font-size: 18px;
	font-weight: 800;
	line-height: 1.5;
	color: #002935;
	font-family: "Manrope", sans-serif;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
  background-image: linear-gradient(#0866ff, #0866ff), linear-gradient(#0866ff, #0866ff);
	background-size: 0% 1px, 0 1px;
	background-position: 100% 100%, 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.4s linear;
	-webkit-transition: background-size 0.4s linear;
	-moz-transition: background-size 0.4s linear;
	-ms-transition: background-size 0.4s linear;
	-o-transition: background-size 0.4s linear;
}
.title a:hover{
  background-size: 0 1px, 100% 1px;
}
.title a:hover{
  color:#0866ff;
}

.blog__single .title:hover {
  color: #0866ff;
}
.blog__single p i {
  padding-right: 5px;
}
.blog__single .right a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #CDE0FF;
  text-align: center;
  line-height: 38px;
  color: #0866ff;
  border-radius: 100%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.blog__single .right a:hover {
  color: #fff;
  background-color: #0866ff;
}
.blog__single .category {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #0866ff;
  letter-spacing: -0.14px;
  padding-left: 40px;
  position: relative;
}
.blog__single .category::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 2px;
  left: 0;
  top: 8px;
  background-color: #0866ff;
}

/*============= Hero-area-02 Section CSS ===============*/
.hero__area-2 {
  padding-top: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/hero-bg-1.jpg);
  padding-bottom: 280px;
}
.hero__area-2 .star-1 {
  position: absolute;
  top: 290px;
  left: 42%;
}
.hero__social-2 {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(30px, -50%);
  transform: translate(30px, -50%);
}

/*============= achievement area-02 Section CSS ===============*/
.achievement__area-2 {
  padding-bottom: 20px;
  background-color: #F5F5F5;
}
.achievement__wrapper-2 {
  padding: 20px;
  background: #F5F5F5;
  -webkit-transform: translateY(-80px);
  transform: translateY(-80px);
}
.achievement__item-2 {
  padding: 30px 25px;
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.achievement__info-2 p {
  font-weight: 700;
  line-height: 24px;
  color: #4A5355;
}
.achievement__img-2 {
  width: 72px;
  height: 72px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 4px;
  background: #CDE0FF;
  padding: 20px;
}
.achievement__number-2 {
  color: #001920;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  padding-bottom: 15px;
  font-family: "Manrope", sans-serif;
}
.btn-readmore {
	color: #4A5355;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.5;
	font-family: "Manrope", sans-serif;
}
.btn-readmore:hover {
	color: #0866ff;
}

/*============= course area-2  Section CSS ===============*/
.course__area-2 {
  background-color: #F5F5F5;
}
.course__area-2 .sec-title-wrapper {
  text-align: center;
  padding-bottom: 50px;
}
.course__area-2 .sec-title-wrapper p {
  max-width: 650px;
  margin: 0 auto;
  margin-top: 10px;
}
.course__item-lg img{
  position: relative;
  border-radius: 8px;
}
.course__item-lg::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 8px;
  background: -webkit-gradient(linear, left bottom, left top, from(#001920), to(rgba(0, 25, 32, 0)));
  background: linear-gradient(360deg, #001920 0%, rgba(0, 25, 32, 0) 100%);
}
.course__title-lg{
  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  font-family: "Manrope", sans-serif;
}
.course__title-lg:hover{
  color:#0866ff;
}
.course__content-lg {
  padding: 40px 30px;
  position: absolute;
  content: "";
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.course__content-lg .category {
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  display: inline-block;
  background-color: #0866ff;
}
.course__content-lg .meta {
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}
.course__content-lg .meta li {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
.course__content-lg .meta li img {
  margin-right: 5px;
  -webkit-filter: brightness(100);
  filter: brightness(100);
}
.course__content-lg .rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.course__content-lg .rating li {
  font-size: 12px;
  line-height: 1.5;
  color: #FFA41B;
}
.course__content-lg .rating span {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #E6E8E9;
  margin-left: 5px;
}
.course__btn-lg {
  position: absolute;
  right: 30px;
  bottom: 30px;
}
.course__btn-lg a {
  display: inline-block;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #0866ff;
  color: #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.course__title-2 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  color:#001920;
  font-family: "Manrope", sans-serif;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.course__title-2:hover {
  color: #0866ff;
}
.course__item-2 {
  border-radius: 8px;
  background: #fff;
}
.course__item-2 a img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}
.course__content-2 {
  padding: 20px;
}
.course__content-2 .meta {
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}
.course__content-2 .meta li {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: #4A5355;
}
.course__content-2 .meta li img {
  margin-right: 5px;
}
.course__content-2 .category {
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  display: inline-block;
  border-radius: 4px;
  background: #0866ff;
}
.course__content-2 .rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  margin-bottom: 20px;
}
.course__content-2 .rating li {
  font-size: 12px;
  line-height: 1.5;
  color: #FFA41B;
}
.course__content-2 .rating span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #4A5355;
  margin-right: 10px;
}

/*============= course area-2  Section CSS ===============*/
.register__area-2 {
  background-color: #F5F5F5;
  position: relative;
}
.register__area-2::after {
  position: absolute;
  content: "";
  width: 840px;
  height: 540px;
  right: 0;
  top: 120px;
  background-color: #002935;
  pointer-events: none;
}
.register__area-2 .shape {
  position: absolute;
  bottom: 115px;
  right: 235px;
}
.register__left-2 {
  z-index: 1;
  position: relative;
}
.register__right {
  position: relative;
  z-index: 1;
}
.register__right p {
  max-width: 490px;
  margin-left: auto;
  padding-top: 60px;
  color:#B3C0C4;
  padding-bottom: 10px;
}
.register__countdown {
  padding-top: 35px;
  padding-bottom: 40px;
}
.register__countdown ul {
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.register__countdown ul li {
  width: 80px;
  height: 80px;
  text-align: center;
  border-radius: 4px;
  border: 1px dashed #0866ff;
  background-color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  color: #4A5355;
  text-transform: capitalize;
  padding-top: 12px;
}
.register__countdown ul li span {
  font-size: 36px;
  color: #001920;
  line-height: 1;
}
.register__text {
  font-size: 101px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  -webkit-text-stroke: 1px #0866ff;
  font-family: "Manrope", sans-serif;
  color: transparent;
  margin-right: -263px;
  text-align: right;
  opacity: 0.2;
}
.register__title {
	font-size: 22px;
	font-weight: 800;
	line-height: 1.5;
	padding-bottom: 20px;
	font-family: "Manrope", sans-serif;
  color:#000;
}
.register__form {
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.register__form input,
.register__form select,
.register__form textarea {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color:#B3C0C4;
  -ms-flex-preferred-size: calc(50% - 10px);
  flex-basis: calc(50% - 10px);
  border: 1px solid #D9DDDE;
  text-transform: capitalize;
  padding: 13px 15px;
  border-radius: 4px;
  outline: 0;
}
.register__form input::-webkit-input-placeholder, .register__form select::-webkit-input-placeholder, .register__form textarea::-webkit-input-placeholder {
  color: #D9DDDE;
}
.register__form input::-moz-placeholder, .register__form select::-moz-placeholder, .register__form textarea::-moz-placeholder {
  color: #D9DDDE;
}
.register__form input:-ms-input-placeholder, .register__form select:-ms-input-placeholder, .register__form textarea:-ms-input-placeholder {
  color: #D9DDDE;
}
.register__form input::-ms-input-placeholder, .register__form select::-ms-input-placeholder, .register__form textarea::-ms-input-placeholder {
  color: #D9DDDE;
}
.register__form input::placeholder,
.register__form select::placeholder,
.register__form textarea::placeholder {
  color: #D9DDDE;
}
.register__form select {
  color: #4A5355;
}
.register__form textarea {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  height: 100px;
  resize: none;
}
.register__form .submit {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  padding: 14px 36px;
  font-weight: 800;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #0866ff;
  background-color: #0866ff;
}
.register__form .submit:hover {
  color: #002935;
  background-color: transparent;
}
.register__form-wrapper {
  margin-top: 25px;
  border-radius: 8px;
  padding: 50px 30px;
  background: #fff;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.05);
}

/*============= category area-2  Section CSS ===============*/
.category__area-2 {
  padding-bottom: 220px;
  background-image: url(../image/cat-bg.png);
}
.category__area-2 .sec-title-wrapper {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 50px;
}
.category__area-2 .sec-title {
  padding-bottom: 15px;
}
.category__item {
  text-align: center;
  position: relative;
  border-radius: 8px;
  padding-bottom: 40px;
  background: #fff;
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
}
.category__item:hover .link {
  bottom: -24px;
  opacity: 1;
  visibility: visible;
}
.category__item a img {
  width: 100%;
}
.category__item .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 100%;
  background-color: #fff;
  -webkit-filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.08));
  filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.08));
  margin: 0 auto;
  margin-top: -40px;
}
.category__item .link {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  line-height: 48px;
  text-align: center;
  display: inline-block;
  color: #fff;
  background-color: #0866ff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  right: 30px;
  bottom: -14px;
  opacity: 0;
  visibility: hidden;
}
.category__item p span {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  display: inline-block;
  background: #0866ff;
}
.category__title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
  padding-top: 25px;
  padding-bottom: 5px;
  color: #001920;
  font-family: "Manrope", sans-serif;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.category__title:hover {
  color: #0866ff;
}
.category__slider .swiper-wrapper {
  margin-bottom: 100px;
}
.category__slider .swiper-pagination {
  bottom: 0;
}
.category__dots .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #333F4D;
}
.category__dots .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 5px;
  background: #0866ff;
}

.counter__area-2 {
  background-color: #f4f8ff;
}
.counter__wrapper-2 {
  padding: 40px;
  border-radius: 8px;
  background-color: #0866ff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*============= counter area-2  Section CSS ===============*/
.counter__img-2 {
  width: 94px;
  height: 94px;
  border-radius: 100%;
  line-height: 94px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 10px;
  background: linear-gradient(222deg, #1A434F 0%, #002935 100%);
}
.counter__item-2 {
  text-align: center;
}
.counter__number-2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
  font-family: "Manrope", sans-serif;
}
.counter__info-2 p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

/*============= counter area-2  Section CSS ===============*/
.event__area-2 {
  background-image: url(../image/event-bg.png);
}
.event__area-2 .sec-title-wrapper {
  text-align: center;
  padding-bottom: 50px;
}
.event__area-2 .sec-title-wrapper p {
  max-width: 590px;
  margin: 0 auto;
}
.event__area-2 .sec-title {
  padding-bottom: 15px;
}
.event__list-2 {
  gap: 22px;
  display: -ms-grid;
  display: grid;
  max-width: 85%;
  margin: 0 auto;
}
.event__item-2 {
  padding: 40px;
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  gap: 35px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: 210px 35px auto;
  grid-template-columns: 210px auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.event__item-2:hover .event__img-2 .date {
  background-color: #0866ff;
}
.event__title-2 a{
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  color: #001920;
  font-family: "Manrope", sans-serif;
  -webkit-transition: all 0.3s;
	transition: all 0.3s;
  background-image: linear-gradient(#0866ff, #0866ff), linear-gradient(#0866ff, #0866ff);
	background-size: 0% 1px, 0 1px;
	background-position: 100% 100%, 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.4s linear;
	-webkit-transition: background-size 0.4s linear;
	-moz-transition: background-size 0.4s linear;
	-ms-transition: background-size 0.4s linear;
	-o-transition: background-size 0.4s linear;
}
.event__title-2 a:hover{
  color:#0866ff;
  background-size: 0 1px, 100% 1px;
}
.event__link {
  padding-top: 20px;
}
.event__link a {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.event__link .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 100%;
  color: #0866ff;
  border: 1px solid currentColor;
}
.event__link p {
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
  color: #4A5355;
  font-family: "Manrope", sans-serif;
}
.event__link p:hover {
	color: #0866ff;
}
.event__img-2 {
  position: relative;
}
.event__img-2 .date {
  width: 84px;
  height: 84px;
  color: #fff;
  border-radius: 100%;
  background: #001920;
  text-align: center;
  padding-top: 12px;
  position: absolute;
  top: 0;
  right: 0;
}
.event__img-2 p {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  font-family: "Manrope", sans-serif;
}
.event__img-2 p span {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  display: block;
  font-family: "DM Sans", sans-serif;
}
.event__text-2 {
  text-align: center;
  margin-top: 35px;
}
.event__text-2 p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}
.event__text-2 p a {
  color: #0866ff;
}

/*============= instructor area-2  Section CSS ===============*/
.instructor__area-2 {
  background-color: #002935;
}
.instructor__area-2 .title-wrapper {
  padding-bottom: 60px;
}
.instructor__area-2 .title-wrapper p {
  padding-top: 20px;
  color:#B3C0C4;
}
.instructor__item-2 {
  border-radius: 8px;
  background-color: #fff;
  overflow: hidden;
}
.instructor__item-2:hover .instructor__social-2 {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.instructor__item-2 p {
  padding-top: 5px;
}
.instructor__content-2 {
  padding: 20px;
}
.instructor__social-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.instructor__social-2 ul {
  gap: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px 10px;
  background: #0866ff;
}
.instructor__social-2 ul li a {
  font-size: 18px;
  color: #fff;
}
.instructor__img-2 {
  position: relative;
}
.instructor__category-2 {
  gap: 30px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.instructor__category-2 select {
  border-radius: 8px;
  padding: 15px 20px;
  color: #fff;
  background: #0866ff;
  cursor: pointer;
  border: 0;
}
.instructor__slider-2 .swiper-wrapper {
  padding-bottom: 100px;
}
.instructor__slider-2 .swiper-pagination-bullet {
  bottom: 0;
  width: 10px;
  height: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background:#B3C0C4;
}
.instructor__slider-2 .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 5px;
  background:#0866ff;
}

/*============= testimonial area-2  Section CSS ===============*/
.testimonial__area-2 {
	background-color: #F5F5F5;
	background-repeat: no-repeat;
	background-position: left;
	background-image: url(../image/testimonial-bg-01.png);
}
.testimonial__right-2 {
  position: relative;
}
.testimonial__left-2 {
	position: relative;
	margin-top: 100px;
	margin-left: 50px;
}
.testimonial__left-2 .quote {
	position: absolute;
	width: 102px;
	height: 102px;
	left: 10px;
	border-radius: 100%;
	border: 5px solid #fff;
	background-color: #0866ff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.testimonial__left-2 .img-2 {
	position: absolute;
	bottom: 30px;
	right: 70px;
}
.testimonial__left-2 .img-3 {
	position: absolute;
	bottom: -50px;
	left: 30px;
}
.testimonial__right-2 > p {
	color: #4A5355;
	padding-top: 20px;
	padding-bottom: 30px;
}
.testimonial__slider-2 .img {
	-webkit-transform: translate(15px, -50px);
	transform: translate(15px, -50px);
}
.testimonial__slide-2 {
	padding: 0 40px 60px;
	background-size: 100% 100%;
	background-image: url(../image/testimonial-bg-2.png);
}
.testimonial__slider-2 .swiper-wrapper {
  padding-top: 60px;
}
.testimonial__right-2 .shape {
	position: absolute;
	right: -55px;
	bottom: -40px;
}
.testimonial__slider-2 .rating {
	display: block;
	-webkit-transform: translateY(-15px);
	transform: translateY(-15px);
}
.testimonial__slide-2 p {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	color: #4A5355;
	letter-spacing: -0.18px;
}
.testimonial__slider-2 .name {
	font-size: 18px;
	font-weight: 800;
	line-height: 1.5;
	padding-top: 20px;
	font-family: "Manrope", sans-serif;
}
/*============= brand area-2  Section CSS ===============*/
.brand__area-2 {
  background-color: #F5F5F5;
}
.brand__top-2 {
  padding-bottom: 40px;
  text-align: center;
}
.brand__top-2 p {
  font-size: 22px;
  font-weight: 800;
  line-height: 32px;
  color: #001920;
  font-family: "Manrope", sans-serif;
}
.brand__top-2 p span {
  color: #0866ff;
}
.brand__slider-2 .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.brand__slider-2 .swiper-slide {
  width: auto;
}

/*============= Blog area-2  Section CSS ===============*/
.blog__area-2 {
	background-color: #F5F5F5;
}
.blog__img-2 .category {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: -0.14px;
	background: #002935;
	color: #fff;
	padding: 6px 20px;
	position: absolute;
	right: 0;
	bottom: 0;
}
.blog__img-2 {
	position: relative;
}

/*============= Breadcrumb Area  Section CSS ===============*/
.breadcrumb__area {
	background: #00171E;
	padding-top: 170px;
	padding-bottom: 140px;
	background-image: url("../image/breadcumb-bg.jpg");
}
.breadcrumb__area .shape-1, .breadcrumb__area .shape-3, .breadcrumb__area .shape-2 {
  position: absolute;
  left: 0;
  top: -10px;
}
.breadcrumb__area .shape-2 {
  right: 0;
  left: auto;
}
.breadcrumb__area .shape-3 {
  right: 300px;
  left: auto;
  top: auto;
  bottom: 40px;
}
.breadcrumb__title {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.3;
	color: #fff;
}
.breadcrumb__menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 32px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 18px;
	position: relative;
}
.breadcrumb__menu li a {
	color: #fff;
	color: #FFF;
	font-family: "Manrope", sans-serif;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.2;
}
.breadcrumb__menu li i {
	padding-left: 10px;
	color: #fff;
}
/*============= aboutpage Area  Section CSS ===============*/
.aboutpage__overview {
  padding-top: 120px;
  text-align: center;
}
.aboutpage__subtitle {
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  font-family: "Manrope", sans-serif;
  position: relative;
  display: inline-block;
  padding-left: 10px;
  color:#000;
}
.aboutpage__subtitle::before {
  position: absolute;
  content: "";
  left: -30px;
  top: 0;
  width: 26px;
  height: 26px;
  background: rgba(156, 193, 255);;
  border-radius: 50px;
}
.aboutpage__subtitle::after {
  position: absolute;
  content: "";
  left: -22px;
  top: 8px;
  width: 10px;
  height: 10px;
  background: #0866ff;
  border-radius: 50px;
}
.aboutpage__title {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  font-family: "Manrope", sans-serif;
  color:#000;
}
.aboutpage__video {
  padding-top: 50px;
  padding-bottom: 30px;
}
.aboutpage__counter {
  margin-top: 50px;
}
.aboutpage__wrapper {
  padding: 40px;
  border-radius: 8px;
  background-color: #0866ff;
}
/*============= video Area  Section CSS ===============*/
.video-icon-3, .video-icon-4 {
  display: inline-block;
  height: 70px;
  width: 70px;
  line-height: 70px;
  color: #fff;
  text-align: center;
  border-radius: 50px;
  background: #0866ff;
}
.video-icon-4 {
  height: 104px;
  width: 104px;
  line-height: 100px;
  background: #0866ff;
}
.video__thumb-3 {
  position: relative;
  z-index: 2;
}
.video__thumb-3 img {
  border-radius: 8px;
}
.video__iconwraper-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50px;
}
/*============= Counter Area  Section CSS ===============*/
.why__area-about .online__class {
	margin-bottom: 0;
	border-radius: 0;
	background-position: center;
}

.instructor__area-about {
	background-color: #CDE0FF;
}


/*============= Course Area  Section CSS ===============*/
.course__area-2 {
  background-color: #F5F5F5;
}
.course__area-2 .accordion-item {
  margin-bottom: 24px;
  border-bottom: 0px;
}
.course__area-2 .list-title {
  font-size: 14px;
  font-weight: 600;
  color: #4A5355;
  padding-bottom: 15px;
  font-family: "Manrope", sans-serif;
}
.course__area-2 .offer-price {
  text-decoration: line-through;
  color: #001920;
  padding-right: 10px;
}
.course__area-3 .course__item-2 {
  padding: 0px;
}
.course__area-3 .course__item-2 h6 a {
  font-size: 18px;
}
.course__content-4 {
  padding: 24px 24px 20px;
}
.course__sidebarTitle button {
  font-size: 16px;
  font-weight: 800;
  color: #001920;
  padding: 16px 26px;
  border-radius: 4px;
  background: #fff;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
}
.course__widgetitem {
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 24px;
}
.course__widgetitem form {
  position: relative;
}
.course__widgetitem input, .course__widgetitem .eduplus__field textarea, .eduplus__field .course__widgetitem textarea {
  width: 100%;
  height: 50px;
  padding: 15px;
  border-radius: 4px;
  border: 1px solid #E9E9E9;
  background: #FFF;
  padding-right: 50px;
}
.course__widgetitem input::-webkit-input-placeholder, .course__widgetitem .eduplus__field textarea::-webkit-input-placeholder, .eduplus__field .course__widgetitem textarea::-webkit-input-placeholder {
  color: #5F5F5F;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.course__widgetitem input::-moz-placeholder, .course__widgetitem .eduplus__field textarea::-moz-placeholder, .eduplus__field .course__widgetitem textarea::-moz-placeholder {
  color: #5F5F5F;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.course__widgetitem input:-ms-input-placeholder, .course__widgetitem .eduplus__field textarea:-ms-input-placeholder, .eduplus__field .course__widgetitem textarea:-ms-input-placeholder {
  color: #5F5F5F;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.course__widgetitem input::-ms-input-placeholder, .course__widgetitem .eduplus__field textarea::-ms-input-placeholder, .eduplus__field .course__widgetitem textarea::-ms-input-placeholder {
  color: #5F5F5F;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.course__widgetitem input::placeholder, .course__widgetitem .eduplus__field textarea::placeholder, .eduplus__field .course__widgetitem textarea::placeholder {
  color: #5F5F5F;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.course__widgetitem button {
  position: absolute;
  right: 0;
  height: 100%;
  background: #0866ff;
  width: 50px;
  color: #fff;
  border: 0;
}
.course__authorthumb {
  text-align: center;
  padding-bottom: 30px;
}
.course__authorname {
  color: #001920;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.5;
  padding-bottom: 15px;
}
.course__authorsocial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding-top: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.course__authorsocial li a {
  color: #fff;
  height: 40px;
  width: 40px;
  background: #002E3B;
  display: inline-block;
  border-radius: 50px;
  text-align: center;
  line-height: 40px;
}

.course__authorsocial li a:hover{
  background-color:#0866ff;
}

.course__grid-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 100px 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 100px;
  border-radius: 4px;
  background-color: #fff;
  margin-bottom: 24px;
  padding: 15px;
}
.course__grid-top input, .course__grid-top .eduplus__field textarea, .eduplus__field .course__grid-top textarea {
  border-radius: 4px;
  border: 1px solid #E9E9E9;
  width: 100%;
  padding: 12px 20px 12px 40px;
  background-image: url(../image/searchh.png);
  background-position-x: 15px;
  background-repeat: no-repeat;
  background-position-y: 17px;
}
.course__grid-top input::-webkit-input-placeholder, .course__grid-top .eduplus__field textarea::-webkit-input-placeholder, .eduplus__field .course__grid-top textarea::-webkit-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #B4A9A8;
  font-family: "Manrope", sans-serif;
}
.course__grid-top input::-moz-placeholder, .course__grid-top .eduplus__field textarea::-moz-placeholder, .eduplus__field .course__grid-top textarea::-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #B4A9A8;
  font-family: "Manrope", sans-serif;
}
.course__grid-top input:-ms-input-placeholder, .course__grid-top .eduplus__field textarea:-ms-input-placeholder, .eduplus__field .course__grid-top textarea:-ms-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #B4A9A8;
  font-family: "Manrope", sans-serif;
}
.course__grid-top input::-ms-input-placeholder, .course__grid-top .eduplus__field textarea::-ms-input-placeholder, .eduplus__field .course__grid-top textarea::-ms-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #B4A9A8;
  font-family: "Manrope", sans-serif;
}
.course__grid-top input::placeholder, .course__grid-top .eduplus__field textarea::placeholder, .eduplus__field .course__grid-top textarea::placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #B4A9A8;
  font-family: "Manrope", sans-serif;
}
.course__img-2 {
  position: relative;
  padding-bottom: 30px;
}
@media (max-width: 1199px) {
  .course__img-2 img {
    width: 100%;
  }
}
.course__img-2 span {
  position: absolute;
  left: 0px;
  top: 0px;
  border-radius: 8px 0px 0px 0px;
  font-size: 14px;
  border-radius: 8px 0px 0px 0px;
  background: #0866ff;
  font-weight: 700;
  padding: 5px;
  color: #fff;
}
.course__img-2 span i {
  color: #F9C02F;
  padding-right: 4px;
}
.course__grid-topRight {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 340px 15px 1fr 15px 1fr;
  grid-template-columns: 340px 1fr 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.course__iconBox {
  width: 48px;
  height: 48px;
  border: 1px solid #E9E9E9;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.course__iconBox i {
	color: #0866ff;
  font-size: 20px;
}
.course__select {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 70px 15px 1fr;
  grid-template-columns: 70px 1fr;
  gap: 15px;
  color: #425162;
  font-size: 14px;
  font-weight: 500;
}
.course__select .form-select {
  border-radius: 4px;
  border: 1px solid #E9E9E9;
  padding: 12px 15px;
}
.course__select span {
  color: #121920;
  font-size: 16px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}
.course__grid-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.course__grid-3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
.course__btm-left span {
  font-size: 16px;
  color: #001920;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
}
.course__price {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0866ff;
}
.course__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.course__info span {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
  color: #4A5355;
}
.course__info span i {
  padding-right: 8px;
  color:#0866ff;
}
.course__category-title {
  border-radius: 4px;
  color: #fff;
  background: #0866ff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
}
.course__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding-top: 45px;
}
.course__pagination .page-item a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #4A5355;
}
.course__pagination .page-item a:hover {
  background-color: #0866ff;
  color: #fff;
}
.course__recentPost h3 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  padding-bottom: 20px;
  color: #001920;
  position: relative;
  padding-left: 40px;
}
.course__recentPost h3::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 32px;
  height: 2px;
  content: "";
  background-color: #0866ff;
}
.course__recentPost-wrapper {
  border-radius: 8px;
  padding: 40px 32px 40px 24px;
  background: #FFF;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
}
.course__recentPost-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px 16px 1fr;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid #E6E8E9;
  padding-bottom: 20px;
}
.course__recentPost-item:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 1px solid transparent;
}
.course__recentPost-right h4 {
  padding-bottom: 10px;
}
.course__recentPost-right h4 i {
  color: #0866ff;
  font-size: 14px;
}
.course__recentPost-right h4 span {
  font-size: 14px;
  font-weight: 500;
  color: #4A5355;
}
.course__recentPost-right h5 {
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.3;
  color: #001920;
  -webkit-transition: all 0.3s;
	transition: all 0.3s;
  background-image: linear-gradient(#0866ff, #0866ff), linear-gradient(#0866ff, #0866ff);
	background-size: 0% 1px, 0 1px;
	background-position: 100% 100%, 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.4s linear;
	-webkit-transition: background-size 0.4s linear;
	-moz-transition: background-size 0.4s linear;
	-ms-transition: background-size 0.4s linear;
	-o-transition: background-size 0.4s linear;
}
.course__recentPost-right h5:hover{
  color:#0866ff;
  background-size: 0 1px, 100% 1px;
}
.course__categorywrapper {
  border-radius: 8px;
  padding: 40px 32px 40px 24px;
  background: #FFF;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
}
.course__category-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #4A5355;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}
.course__category-list li:last-child {
  margin-bottom: 0;
}
.course__category-list li a {
  color: #4A5355;
}
.course__category-list li a:hover {
  color: #0866ff;
}
.course__category-list li span {
  display: inline-block;
  border-radius: 4px;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.course__category-list li span:hover {
  background: #0866ff;
  color: #fff;
}
.course__category-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.course__category-tags li a {
  display: inline-block;
  font-size: 14px;
  padding: 8px 20px;
  color: #4A5355;
  border: 1px solid #E6E8E9;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}
.course__category-tags li a:hover {
  background: #0866ff;
  color: #fff;
}
.course__item-3 h6 {
  font-size: 18px;
}
.course__student-3 {
  padding-left: 10px;
  font-size: 12px;
}
.course__wrapper-3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 312px 24px auto;
  grid-template-columns: 312px auto;
  gap: 24px;
}
.course__wrapper-3 .course__rating {
  padding-bottom: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 10px;
}
.course__wrapper-3 .course__itemTitle a {
  color: #001D25;
}
.course__btm3 {
  padding-top: 20px;
}
.course__btm3 span {
  font-size: 16px;
  font-weight: 500;
  color: #001920;
  padding-left: 8px;
}
.course__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.course__detailsReview i {
  color: #FFA41B;
  font-size: 14px;
}
.course__img-3 {
  position: relative;
}
.course__priceTitle {
  position: absolute;
  right: 0px;
  bottom: 0px;
  font-size: 18px;
  border-radius: 0px;
  background: #002E3B;
  font-weight: 700;
  padding: 4px 16px;
  color: #fff;
}
.course__priceTitle:hover {
  background-color: #FF3158;
}
.course__category-3 {
  padding: 20px 0px 15px;
}
.course__detailsWrp {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 24px 424px;
  grid-template-columns: auto 424px;
  gap: 24px;
}
.course__detailsThumb img {
	border-radius: 8px;
}
.course__detailsInfo {
  max-width: 784px;
  border-radius: 2px 8px 8px 8px;
  background: #fff;
  padding: 32px;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  margin-top: -60px;
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.course__authorBox {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px auto;
  grid-template-columns: 80px auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.course__authorBox::after {
  content: "";
  right: -20px;
  height: 40px;
  width: 1px;
  background: rgba(255, 49, 88, 0.2392156863);
  top: 18px;
  position: absolute;
}
.course__author-img {
  width: 72px;
  height: 72px;
  border-radius: 72px;
  border: 2px solid #000;
}
.course__author-img img {
  width: auto;
  height: 100%;
}
.course__author-name {
	color: #001920;
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.2;
}
.course__detailsCategory span {
	color: #001920;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
}
.course__detailsCategory p {
	color: #001920;
	text-align: center;
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.5;
}
.course__detailsCategory {
  position: relative;
}
.course__detailsCategory::after {
	content: "";
	right: -20px;
	height: 40px;
	width: 1px;
	background: rgba(255, 49, 88, 0.2392156863);
	top: 18px;
	position: absolute;
}
.course__video {
	border-radius: 8px;
	background: #fff;
	-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
	padding: 24px;
	margin-bottom: 24px;
}
.course__videooverview {
	position: relative;
	margin-bottom: 50px;
}
.course__videooverview img {
	width: 100%;
}
.blog__detailvideoicon {
	width: 64px;
	height: 64px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #0866ff;
	color: #fff;
	border-radius: 50px;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.course__pricing {
  color: #001920;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
}
.course__pricingOFF {
	color: #0866ff;
	font-family: "Manrope", sans-serif;
	font-size: 36px;
	font-weight: 800;
	line-height: 1.5;
}
.course__pricingOFF span {
	color: #4A5355;
	font-family: "Manrope", sans-serif;
	font-size: 22px;
	font-style: normal;
	font-weight: 800;
	line-height: 2;
	text-decoration: line-through;
	display: inline-block;
	padding-left: 15px;
}
.course__featuresTitle {
	color: #001920;
	font-family: "Manrope", sans-serif;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.5;
	display: inline-block;
	position: relative;
	margin-bottom: 15px;
	margin-top: 30px;
}
.course__featuresTitle::after {
	content: "";
	position: absolute;
	right: -120px;
	top: 50%;

	width: 100px;
	height: 2px;
	background: #0866ff;
	-moz-transform: translateY(-0);
	-ms-transform: translateY(-0);
	-o-transform: translateY(-0);
}
.coursetwo__list {
	margin-bottom: 30px;
}
.coursetwo__list li {
	/* padding-left: 28px; */
	position: relative;
	margin-bottom: 20px;
}
.coursetwo__list i{
  color:#001920;
  margin-right: 5px;
}
/* .coursetwo__list li::before {
	content: "";
	left: 0;
	top: 4px;
	height: 100%;
	width: 100%;
	position: absolute;
	background-image: url("../images/inner/check-sign.png");
	background-repeat: no-repeat;
} */
.course__btnenroll {
  color: #fff;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  background: #0866ff;
  display: block;
  width: 100%;
  border: 0;
  padding: 15px;
  margin-bottom: 20px;
  border-radius:6px;
  -webkit-border-radius:6px;
  -moz-border-radius:6px;
  -ms-border-radius:6px;
  -o-border-radius:6px;
}
.course__btnenroll:hover {
	background-color: #000;
}
.course__addtocart {
	color: #000;
	text-align: center;
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.5;
	display: block;
	width: 100%;
	border: 0;
	padding: 15px;
	border-radius: 4px;
	border: 1px solid  #0866ff;
	margin-bottom: 20px;
	background: transparent;
}
.course__gtitle {
	color: #4A5355;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	display: block;
	text-align: center;
}
.course__recent {
	border-radius: 8px;
	background: #fff;
	-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
	padding: 24px;
}
.course__recentRight a {
	color: #001920;
	font-family: "Manrope", sans-serif;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.5;
	/* display: block; */
	/* padding-bottom: 10px; */
  -webkit-transition: all 0.3s;
	transition: all 0.3s;
  background-image: linear-gradient(#0866ff, #0866ff), linear-gradient(#0866ff, #0866ff);
	background-size: 0% 1px, 0 1px;
	background-position: 100% 100%, 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.4s linear;
	-webkit-transition: background-size 0.4s linear;
	-moz-transition: background-size 0.4s linear;
	-ms-transition: background-size 0.4s linear;
	-o-transition: background-size 0.4s linear;
}
.course__recentRight a:hover {
	color: #0866ff;
  background-size: 0 1px, 100% 1px;
}
.course__recentItem {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 14px;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(221, 221, 221, 0.8666666667);
}
.course__recentRight span {
	color: #0866ff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
}
.course__recentItem span {
	display: block;
}
.course__detailsContent {
	padding-top: 50px;
}
.course__detailsContent h2 {
	color: #001920;
	font-family: "Manrope", sans-serif;
	font-size: 36px;
	font-weight: 800;
	line-height: 1.2;
	padding-bottom: 30px;
}
.course__detailslistwrap {
	padding-bottom: 40px;
}
.blog__detailslist {
	padding-top: 30px;
	padding-left: 20px;
}
.blog__detailslist li {
	list-style: disc;
}
.course__detailsthumb {
	padding-bottom: 40px;
}
.course__detailsthumb img {
	border-radius: 8px;
}
.course__detailsContent h2 {
	color: #001920;
	font-family: "Manrope", sans-serif;
	font-size: 36px;
	font-weight: 800;
	line-height: 1.2;
	padding-bottom: 30px;
}
.course__detailsfaqtitle h2 {
	color: #001920;
	font-family: "Manrope", sans-serif;
	font-size: 26px;
	font-weight: 800;
	line-height: 1.2;
}
.course__detailsfaqtitle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 30px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.course__detailsfaqtitle ul li i {
	color: #0866ff;
}
.course__detailsfaqtitle ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 23px;
}

.course__area-2 .accordion-item {
	margin-bottom: 24px;
	border-bottom: 0px;
}
.course__sidebarTitle button {
	font-size: 16px;
	font-weight: 800;
	color: #001920;
	padding: 16px 26px;
	border-radius: 4px;
	background: #fff;
	-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
}
.course__headerfaq {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
}
.course__headerfaqleft {
	background: #0866ff;
	padding: 8px 10px;
	border-radius: 4px;
	text-align: center;
}
.course__headerfaqleft span {
	font-family: "Manrope", sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	color: #fff;
}
.course__headercount {
	font-family: "Manrope", sans-serif;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
	color: #fff;
}
.course__headerfaqtitle {
	color: #001920;
	font-size: 22px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 0;
}
.course__headercate {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 23px;
	padding-top: 17px;
}
.course__headercate li i {
	color: #0866ff;
}
.course__headercate li img {
	padding-right: 8px;
}
.course__lecturelist li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 32px;
	border-bottom: 1px solid #EDEDED;
	padding: 20px 0;
}
.course__lecturelist span i {
	color: #0866ff;
}
.course__lecturelist .lecture {
	color: #001920;
	font-family: "Manrope", sans-serif;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.5;
}
.cmt__form {
	border-radius: 2px;
	background: #CDE0FF;
	padding: 40px;
	margin-top: 50px;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 134px 32px 1fr;
	grid-template-columns: 134px 1fr;
	gap: 32px;
	position: relative;
	margin-bottom: 60px;
}
.cmt__form::before {
	content: "";
	left: 0;
	top: 0;
	height: 100%;
	width: 1px;
	background: #0866ff;
	position: absolute;
}
.v-post {
	color: #0866ff;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	display: block;
	padding-top: 10px;
	padding-bottom: 15px;
}
.dis {
	padding-bottom: 20px;
}
.course__feedbacktitle {
	color: #001920;
	font-size: 36px;
	font-weight: 800;
	line-height: 1.5;
}
.course__ratingbox {
	border-radius: 8px;
	background: #fff;
	-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
	padding: 40px 24px;
	margin-top: 24px;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 240px 27px 1fr;
	grid-template-columns: 240px 1fr;
	gap: 27px;
}
.course__ratingbox .title {
	color: #0866ff;
	font-size: 64px;
	font-weight: 800;
	line-height: 1.2;
}
.course__ratingboxleft {
	border-radius: 3px;
	border: 2px dashed #0866ff;
	text-align: center;
	padding: 30px;
}
.course__rating {
	padding-bottom: 20px;
	text-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.course__rating i {
	color: #FFB400;
	font-size: 18px;
}
.course__ratingprogress li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	margin-bottom: 25px;
}
.course__ratingprogress .line {
	height: 6px;
	width: 80%;
	background: #B3C0C4;
	position: relative;
}
.course__ratingprogress .line::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 30%;
	background: #0866ff;
}
.course__related {
	padding-top: 120px;
}
.course__related-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 30px;
}
.course__related-header h2 {
	color: #001920;
}
.course__related-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
}
.course-related-next, .course-related-prev {
	height: 50px;
	width: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #0866ff;
	color: #fff;
	border-radius: 50px;
  
}
.course-related-next:hover {
	background-color: #000;
}
.course-related-next i:hover {
	color: #fff;
}
.course-related-prev:hover {
	background-color: #000;
}
.course-related-prev i:hover{
  color:#fff;
}
.course__item-inner {
	background-color: #fff;
	padding: 24px;
	border-radius: 12px;
	-webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08), 0px 0px 4px 0px rgba(0, 0, 0, 0.04);
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08), 0px 0px 4px 0px rgba(0, 0, 0, 0.04);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.course__item-inner h6 a {
	font-size: 22px;
	font-weight: 800;
	line-height: 1.3;
	color: #001920;
  -webkit-transition: all 0.3s;
	transition: all 0.3s;
  background-image: linear-gradient(#0866ff, #0866ff), linear-gradient(#0866ff, #0866ff);
	background-size: 0% 1px, 0 1px;
	background-position: 100% 100%, 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.4s linear;
	-webkit-transition: background-size 0.4s linear;
	-moz-transition: background-size 0.4s linear;
	-ms-transition: background-size 0.4s linear;
	-o-transition: background-size 0.4s linear;
}
.course__item-inner h6 a:hover{
  color:#0866ff;
  background-size: 0 1px, 100% 1px;
}
.course__item-inner h6 {
	padding: 10px 0px 20px;
}


/*============= Team Area Section CSS ===============*/

.teampage__area {
	padding-top: 130px;
}
.teampage__btnwrapper {
	text-align: center;
	padding-top: 50px;
}
.teampage__whybtnwrapper {
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 32px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.teampage__class {
	margin-bottom: 0;
	position: relative;
	z-index: 3;
	margin-top: 0;
	border-radius: 0;
}

/*============= Team Details Area Section CSS ===============*/
.teamDetails__area {
	padding-top: 100px;
	background: #F5F5F5;
	padding-bottom: 120px;
}
.teamDetails__wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 312px 30px 1fr;
	grid-template-columns: 312px 1fr;
	gap: 30px;
	max-width: 1096px;
	margin: auto;
	border-radius: 8px;
	background: #fff;
	-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
	padding: 30px;
	margin-bottom: 50px;
}
.teamDetails__name {
	font-family: "Manrope", sans-serif;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.5;
	padding-bottom: 10px;
  color:#001920;
}
.teamDetails__post {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	display: inline-block;
	padding-bottom: 10px;
  color:#070F2C;
}
.teamDetails__dis {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
}
.teamDetails__skills {
	padding-top: 25px;
}
.teamDetails__skills li {
	padding-bottom: 8px;
	font-family: "Manrope", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
  color:#070F2C;
}
.teamDetails__skills li span {
	font-weight: 700;
}
.teamDetails__social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	padding-top: 20px;
}
.teamDetails__social li a {
	height: 30px;
	width: 30px;
	background:#0866ff;
	color: #fff;
	border-radius: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 14px;
}
.teamDetails__title {
	font-family: "Manrope", sans-serif;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.3;
	padding-bottom: 20px;
  color: #001920;
}
.teamDetails__distwo {
	padding-bottom: 30px;
}
.teamDetails__experience {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 30px 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	padding-bottom: 120px;
}
.progress-wrapper {
	margin-bottom: 20px;
}
.progress-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.progress-header .title {
	color: #002935;
	font-family: "Manrope", sans-serif;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.5;
}
.progress-body {
	border-radius: 8px;
	background: #D9D9D9;
	height: 6px;
	width: 100%;
	position: relative;
	margin-top: 10px;
}
.progress-body::before {
	content: "";
	left: 0;
	top: 0;
	height: 100%;
	width: 80%;
	background: #0866ff;
	position: absolute;
	border-radius: 8px;
}

.eduplus__contact {
	border-radius: 6px;
	border: 1px solid #E7E7E7;
	background: #FAFAFA;
	padding: 50px 40px;
}

/*============= Blog Area Section CSS ===============*/
.blog__innerpage {
  padding-top: 120px;
}
.blog__innerthumb {
  position: relative;
}
.blog__innercontent {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  padding: 30px;
  border-radius: 0px 0px 0px 8px;
  max-width: 575px;
}
.blog__innerdate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
.blog__innerdate li {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #0866ff;
  padding-bottom: 15px;
  position: relative;
}
.blog__innerdate li:last-child::before {
  display: none;
}
.blog__innerdate li::before {
  content: "";
  position: absolute;
  right: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 1px;
  width: 41px;
  background: #0866ff;
}
.blog__innertitle {
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: #002935;
  padding-bottom: 10px;
}
.blog__innerbtnwrap {
  padding-top: 40px;
}
.blog__innerbtnwrap a {
  color: #4A5355;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
}
.blog__innerbtnwrap a i {
  padding-left: 8px;
}

/* .mainblog-inneractive {
  padding-bottom: 70px;
} */
.mainblog-inneractive .swiper-pagination-bullet {
  width: 9.833px;
  height: 9.833px;
  background: #0866ff;
}
.mainblog-inneractive .swiper-pagination-bullet-active {
	width: 25.125px;
	height: 10.833px;
	background: #0866ff;
	border-radius: 4.917px;
}
.mainblog-inneractive .swiper-wrapper {
  margin-bottom: 100px;
}
.mainblog-inneractive .swiper-pagination {
  bottom: 0;
}

.mainblog__items {
	padding-top: 120px;
	padding-bottom: 120px;
}
.mainblog__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.mainblog__pagination li a {
	text-align: center;
	font-family: "Manrope", sans-serif;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.5;
	color: #001920;
}
.mainblog__pagination li a:hover {
	color: #0866ff;
}
.mainblog__pagination li.active {
	border-radius: 8px;
	background: #0866ff;
	padding: 8px 14px;
}
.mainblog__pagination li.active:hover{
  background-color: #001920;
}
.mainblog__pagination li.active a {
	color: #fff;
}
.pagination-style-1 {
  padding-top: 15px;
}

/*============= Blog Details Section CSS ===============*/
.blog__details {
	background: #fff;
	-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
	padding: 32px;
}
.blog__detailsdate {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 24px;
	padding-top: 35px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 25px;
}
.blog__detailsdate li {
	color:#001920;
}
.blog__detailsdate li i  {
	margin-right: 5px;
}
.blog__detailsdate i {
	color: #0866ff;
}
.blog__detailsdate li:first-child {
	color: #0866ff;
	text-align: center;
	font-family: "Manrope", sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	padding: 5px 15px;
	border-radius: 4px;
	background: #CDE0FF;
}
.blog__details h2 {
	color: #001920;
	font-family: "Manrope", sans-serif;
	font-size: 22px;
	font-weight: 800;
	line-height: 32px;
	padding-bottom: 20px;
	padding-top: 20px;
}
.blog__details h3 {
	color: #111010;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.5;
}
.blog__detailvideo {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 24px 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	padding-top: 40px;
}
.blog__detailvideothumb {
	position: relative;
}
.blog__detailvideothumb img {
	border-radius: 8px;
}
.blog__details h4 {
	position: relative;
	padding-left: 60px;
	color: #001920;
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.5;
}
.blog__details h4::before {
	content: "";
	left: 0;
	height: 1px;
	width: 50px;
	background: #0866ff;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.blog__quote {
	position: relative;
	padding-top: 40px;
	margin-top: 40px;
	padding-bottom: 30px;
}
.blog__tagswrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 50px;
}
.blog__tagslist {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
}
.blog__tagslist li {
	border-radius: 4px;
	border: 1px solid #E9E9E9;
	padding: 8px;
}
.blog__details {
	background: #fff;
	-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
	padding: 32px;
}
.blog__detailsthumb img {
	border-radius: 8px 8px 0px 0px;
}
.blog__prevbtn {
	border: 0;
	background: transparent;
}
.blog__prevbtn:hover {
	color: #0866ff;
}
.blog__prev {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 24px;
	padding-top: 15px;
}
.blog__prevtitle {
	color: #001920;
	font-family: "Manrope", sans-serif;
	font-size: 16px;
	font-weight: 800;
	line-height: 24px;
}
.blog__prevdate {
	color: #4A5355;
	font-family: "Manrope", sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
}
.comment__user {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 82px 23px 1fr;
	grid-template-columns: 82px 1fr;
	gap: 23px;
}
.comment__user-title {
	color: #001920;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.5;
	margin-top: 48px;
	margin-bottom: 30px;
	position: relative;
}
.comment__user-title::before {
	content: "";
	left: 0;
	top: 0;
	height: 1px;
	width: 100%;
	background: #E6E8E9;
	position: absolute;
}
.comment__content-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 10px;
}
.comment__date {
	color: #0866ff;
}
.comment__content p {
	margin-bottom: 15px;
}
.comment__user button {
	border: 0;
	background: transparent;
	font-weight: 800;
	text-transform: uppercase;
}
.comment__user-form {
	margin-top: 30px;
}
.comment__user-form textarea {
	height: 200px;
	width: 100%;
	border: 1px solid #E6E8E9;
	padding: 30px;
	resize: none;
	margin-bottom: 30px;
}
.comment__user-form button {
	border: 1px solid transparent;
	padding: 15px;
	background: #0866ff;
	color: #fff;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.comment__user-form button:hover {
	background: transparent;
	color: #001D25;
	border: 1px solid #001D25;
}


/*============= faqpage area Section CSS ===============*/
.faqpage__area {
	padding-top: 120px;
	padding-bottom: 120px;
}
.faqpage__lists {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 15px;
	padding-top: 50px;
}
.faqpage__lists li button.active {
	background: #0866ff;
	color: #fff;
}
.faqpage__lists li button {
	padding: 10px;
	border-radius: 2px;
	border: 1px solid #B3C0C4;
	background: transparent;
	width: 200px;
	text-align: left;
}


/*============= faq Contact area Section CSS ===============*/
.faq__contact {
	padding-top: 110px;
	padding-bottom: 90px;
}
.faq__contactwrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 0.9fr 24px 1fr;
	grid-template-columns: 0.9fr 1fr;
	gap: 24px;
}
.faq__thumb img {
	border-radius: 8px;
}
.eduplus__contact {
	border-radius: 6px;
	border: 1px solid #E7E7E7;
	background: #FAFAFA;
	padding: 50px 40px;
}
.eduplus__form {
	padding-top: 50px;
}
.eduplus__fieldwrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 24px 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.eduplus__field {
	position: relative;
	margin-bottom: 20px;
}
.eduplus__field span {
	position: relative;
	left: 16px;
	top: 11px;
	background: #FAFAFA;
	padding-left: 10px;
	padding-right: 10px;
}
.eduplus__field input, .eduplus__field textarea {
	width: 100%;
	height: 62px;
	border-radius: 6px;
	border: 1px solid #E7E7E7;
	background: #FAFAFA;
	padding: 14px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.eduplus__field textarea {
	height: 111px;
}
.eduplus__formbtnwrapper {
	padding-top: 50px;
}
.btn-ractangle {
	background: #0866ff;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	padding: 7px 24px;
  border-radius: 6px;
	text-transform: capitalize;
}
.btn-ractangle:hover {
	color: #fff;
	background-color: #002935;
}
.eduplus__form button {
	border: 0;
}

/*============= Gallery area Section CSS ===============*/
.gallary__innerarea {
	padding-top: 100px;
	padding-bottom: 120px;
}
.gallary__innersectionwrap {
	text-align: center;
	padding-bottom: 50px;
}
.gallary__sectitle {
	color: #161C24;
	font-size: 48px;
	font-weight: 800;
	line-height: 1.3;
}
.gallary__inneritems {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 24px 1fr 24px 1fr;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-flow: dense;
	gap: 24px;
}
.gallary__inneritem img {
	height: 100%;
	width: auto;
	-o-object-fit: cover;
	object-fit: cover;
}
.teampage__btnwrapper {
	text-align: center;
	padding-top: 50px;
}
.teampage__btnwrapper a:hover {
	color: #000;
}
/* . {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	border-radius: 6px;
	padding: 15px 25px;
	font-weight: 400;
	display: inline-block;
	border: 1px solid #0866ff;
	background-color: #0866ff;
}
. i {
	margin-left: 4px;
} */
.btn-border i {
	margin-left: 4px;
}
.teampage__btnwrapper:hover {
	color: #000;
}
/*============= Contact area Section CSS ===============*/

.contact__top {
	padding-top: 120px;
	padding-bottom: 120px;
}
.contact__info {
	text-align: center;
	padding: 30px 25px;
	border-radius: 8px;
	background: #fff;
	margin-bottom: 15px;
	-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
}
.contact__infotitle {
	color: #002935;
	font-family: "Manrope", sans-serif;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.4;
	padding-bottom: 10px;
}
.contact__infodiscription {
	color: #4A5355;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}
.contact__form {
	border-radius: 8px;
	padding: 40px 30px;
	background: #fff;
	-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
}
.contact__form-title {
	color: #070F2C;
	font-family: "Manrope", sans-serif;
	font-size: 48px;
	font-weight: 800;
	line-height: 1.2;
	padding-bottom: 10px;
}
.contact__bottom-header {
	padding-bottom: 40px;
	text-align: center;
}
.contact__bottom {
	padding-bottom: 120px;
}

