@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
:root {
  --primary: #1d587a;
  --secondary: #5BA5B2;
}
html,
body {
  font-family: 'Poppins', sans-serif;
}
body {
  background: #ffffff;
  font-size: 15px;
  color: #343434;
  width: 100%;
}
* {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  cursor: pointer;
}
*:focus, *:visited, *:focus:visited, *:focus:active {
  outline: none !important;
}
.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
}
textarea:focus, input:focus {
  outline: none !important;
}
img {
  border: none;
  max-width: 100%;
}
::-moz-selection {
  background: #343434;
  color: #fff;
}
::selection {
  background: #343434;
  color: #fff;
}
a,
a:hover {
  text-decoration: none;
}
ul{
  margin: 0px;
  padding: 0px;
}
section{
  width: 100%;
  padding-top: 100px;
  overflow: hidden;
}
.section-title{
  width: 100%;
  margin-bottom: 40px;
}
.section-title h3{
  color: var(--primary);
  font-size: 65px;
  font-weight: 300;
  line-height: 81px;
  margin-bottom: 0px;
}
.section-title.title-white h3{
  color: #fff;
}
.section-title h3 span{
  font-weight: 800;
}


/*------- Buttons Style Start -------*/
.btn{
  font-size: 17px;
  font-weight: 600;
  line-height: 26px;
  text-transform: uppercase;
  padding: 12px 25px 12px 35px;
  border-radius: 10px 0 0 10px;
  position: relative;
  margin-right: 50px;
  transition: all 0.4s;
}
.btn-primary{
  background: var(--primary);
  color: #FFFFFF;
  border: 0px;
}
.btn-secondary{
  background: var(--secondary);
  color: #FFFFFF;
  border: 0px;
}
.btn-white{
  background: #fff;
  color: var(--primary);
  border: 0px;
}
.btn:after,
.btn:before {
  content: '';
  position: absolute;
  right: -49px;
  top: 0;
  width: 50px;
  height: 100%;
  background-image: url("../images/btn-icon.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  transition: all 0.4s;
}
.btn:before{
  opacity: 0;
  z-index: 1;
  background-image: url("../images/btn-icon-hv.png");
}
.btn:hover:before,
.btn:active:before,
.btn:focus:before,
.btn:focus-visible:before{
  opacity: 1;
}
.btn.btn-white:after{
  background-image: url("../images/btn-icon-wh.png");
}
.btn.btn-white:before{
  background-image: url("../images/btn-icon-wh-hv.png");
}
.btn.btn-secondary:after{
  background-image: url("../images/btn-icon-hv.png");
}
.btn.btn-secondary:before{
  background-image: url("../images/btn-icon.png");
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-white:hover,
.btn-white:active,
.btn-white:focus,
.btn-white:focus-visible,
:not(.btn-check)+.btn:active{
  color: #fff;
  background-color: var(--secondary);
  border: 0px;
}
.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:focus-visible{
  color: #fff;
  background-color: var(--primary);
  border: 0px;
}
.btn-primary:active:focus,
.btn-primary:focus,
.btn-secondary:active:focus,
.btn-secondary:focus,
.btn:focus-visible,
:not(.btn-check)+.btn:active:focus-visible{
  box-shadow: none;
}
.btn-custom{
  background: var(--primary);
  color: #FFFFFF;
  border: 0px;
  font-size: 17px;
  font-weight: 600;
  line-height: 26px;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 10px;
  transition: all 0.4s;
}
.btn-custom:hover,
.btn-custom:active,
.btn-custom:focus,
.btn-custom:focus-visible{
  background-color: var(--secondary);
}
.btn-custom:focus-visible {
  outline: none;
}


/*------- Header Style Start -------*/
.header-main .navbar-collapse{
  flex-grow: initial;
}
.header-main {
  width: 100%;
  background: #fff;
  padding: 10px 0;
}
.header-main .navbar {
  padding: 0;
}
.header-main .navbar-brand {
  padding: 0;
  margin: 0;
}
.header-main .navbar-nav .nav-item{
  margin: 0 23px;
}
.header-main .navbar-nav .nav-item.mobile-nav{
  display: none;
}
.header-main .navbar-nav .nav-link{
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
  padding: 0px;
  transition: all ease .2s;
}
.header-main .navbar-nav .nav-link.active,
.header-main .navbar-nav .nav-link:hover{
  color: var(--primary);
  transition: all ease .2s;
}
.header-main .nav-other-link{
  display: flex;
  gap: 20px;
}
.header-main .nav-other-link .nav-cart{
  width: 40px;
  height: 40px;
  text-align: center;
  border: 1px solid #0000001A;
  background: #fff;
  border-radius: 8px;
  color: #000;
  font-size: 20px;
  line-height: 38px;
  transition: all ease .2s;
}
.header-main .nav-other-link .nav-cart:hover{
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff;
  transition: all ease .2s;
}
.header-main .nav-other-link .nav-btn{
  border-radius: 10px;
  text-align: center;
  padding: 8px 25px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
}
.header-main .nav-other-link .nav-btn-secondary{
  background: var(--secondary);
  transition: all ease .2s;
}
.header-main .nav-other-link .nav-btn-primary{
  background: var(--primary);
  transition: all ease .2s;
}
.header-main .nav-other-link .nav-btn-secondary:hover{
  background: var(--primary);
  transition: all ease .2s;
}
.header-main .nav-other-link .nav-btn-primary:hover{
  background: var(--secondary);
  transition: all ease .2s;
}


/*------- Hero Banner Style Start -------*/
.top-hero-section{
  width: 100%;
  overflow: hidden;
  padding-top: 0px;
}
.hero-banner-item{
  width: 100%;
  height: 640px;
  background: var(--primary);
  position: relative;
}
.hero-banner-item div{
  height: 100%;
}
.hero-banner-content {
  height: auto !important;
}
.hero-banner-img{
  width: 100%;
  height: auto !important;
  text-align: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s;
}
.slick-active .hero-banner-img{
  opacity: 1;
  transform: scale(1);
}
.hero-banner-img img {
  display: inline-block;
}
.main-hero-banner{
  position: relative;
  margin: 0px !important;
}
.main-hero-banner .slick-dots{
  bottom: 40px;
}
.main-hero-banner .slick-dots li{
  margin: 0 9px;
  width: auto;
  height: auto;
}
.main-hero-banner .slick-dots li button{
  background: transparent;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.main-hero-banner .slick-dots li button:before{
  background: #fff;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  top: 2.6px;
  left: 2.6px;
  opacity: 0.5;
}
.main-hero-banner .slick-dots li.slick-active button,
.main-hero-banner .slick-dots li.slick-active button:before{
  opacity: 1;
  background: #fff;
}
.hero-banner-content h1{
  color: #fff;
  font-size: 69px;
  font-weight: 300;
  line-height: 93px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.4s;
}
.slick-active .hero-banner-content h1{
  opacity: 1;
  transform: translateY(0);
}
.hero-banner-content h1 span{
  font-weight: 700;
}
.hero-banner-content h1 strong{
  font-weight: 800;
}
.hero-banner-content .btn{
  opacity: 0;
  transform: translatey(-50px);
  transition: all 0.4s;
}
.slick-active .hero-banner-content .btn{
  opacity: 1;
  transform: translatex(0);
}
.main-hero-banner .slick-track .slick-slide:first-child .hero-banner-item::after{
  position: absolute;
  bottom: 0px;
  right: -10rem;
  content: "";
  width: 990px;
  height: 990px;
  border: 130px solid var(--secondary);
  border-radius: 50%;
}
.hero-banner-item .container{
  position: relative;
  z-index: 9;
}
.main-hero-banner .slick-track .slick-slide:nth-child(2) .hero-banner-item{
  background: var(--secondary);
}
.main-hero-banner .slick-track .slick-slide:nth-child(2) .row{
  flex-direction: row-reverse;
}
.main-hero-banner .slick-track .slick-slide:nth-child(2) .hero-banner-content{
  text-align: right;
}
.main-hero-banner .slick-track .slick-slide:nth-child(2) .hero-banner-item::after{
  position: absolute;
  bottom: 0px;
  left: -10rem;
  content: "";
  width: 990px;
  height: 990px;
  border: 130px solid var(--primary);
  border-radius: 50%;
}
.main-hero-banner .slick-track .slick-slide:nth-child(2) .hero-banner-item .btn-white:hover{
  background: var(--primary);
}
.main-hero-banner .slick-track .slick-slide:nth-child(2) .hero-banner-item .btn:after{
  background-image: url("../images/btn-icon-bl.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.main-hero-banner .slick-track .slick-slide:nth-child(2) .hero-banner-item .btn:before{
  background-image: url("../images/btn-icon-bl-hv.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}


/*------- Home About Style Start -------*/
.home-about-section{
  padding-bottom: 217px;
}
.home-about-content{
  width: 100%;
  padding-right: 40px;
}
.home-about-content .section-title{
  margin-bottom: 17px;
}
.home-about-content h5{
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  color: var(--primary);
  margin-bottom: 17px;
}
.home-about-content p{
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #212129;
  margin-bottom: 15px;
}
.home-about-content .btn{
  margin-top: 20px;
}
.home-about-item{
  width: 100%;
  position: relative;
}
.home-about-item::after{
  width: 275px;
  height: 115px;
  position: absolute;
  content: "";
  top: 0;
  left: -80px;
  background: url("../images/about-arrow.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
.home-about-inner{
  width: 900px;
  position: absolute;
  top: 95px;
  right: 0;
  display: flex;
}
.home-about-inner .home-about-card:nth-child(1){
  margin-top: 230px;
}
.home-about-inner .home-about-card:nth-child(2){
  margin-top: 160px;
}
.home-about-inner .home-about-card:nth-child(3){
  margin-top: 80px;
}
.home-about-card{
  height: 188px;
  flex: 1;
  padding: 30px 25px;
  background: var(--secondary);
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}
.home-about-card img{
  margin-bottom: 10px;
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}
.home-about-card:hover img{
  -webkit-transform: scale(-1) rotate(180deg);
  -moz-transform: scale(-1) rotate(180deg);
  -ms-transform: scale(-1) rotate(180deg);
  -o-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}
.home-about-card h5{
  color: #fff;
  font-size: 23px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 5px;
}
.home-about-card h5:last-child{
  margin-bottom: 0px;
}
.home-about-card p{
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 0px;
}
.home-about-card:nth-child(2n){
  background: var(--primary);
}


/*------- Why ACCA Style Start -------*/
.why-acca-section{
  position: relative;
  padding: 108px 0 158px 0;
  background: linear-gradient(180deg, #1F597A 0%, #174865 100%),
  linear-gradient(180deg, #448692 0%, #5BA5B2 100%);
}
.why-acca-content {
  width: 100%;
  padding-left: 65px;
}
.why-acca-card{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 50px 60px;
}
.why-acca-item{
  flex: 1;
  display: flex;
  align-items: center;
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}
.why-acca-item i{
  width: 90px;
  height: 90px;
  display: inline-block;
  text-align: center;
  line-height: 88px;
  background: #336582;
  border-radius: 50%;
  margin-right: 20px;
}
.why-acca-item i img{
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}
.why-acca-item:hover i img{
  -webkit-transform: scale(-1) rotate(180deg);
  -moz-transform: scale(-1) rotate(180deg);
  -ms-transform: scale(-1) rotate(180deg);
  -o-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}
.why-acca-item h5{
  flex: 1;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 31px;
  margin: 0px;
}
.why-acca-item h5 span{
  font-weight: 300;
}
.why-acca-img{
  position: absolute;
  left: 0;
  bottom: -90px;
  z-index: 9;
}
.why-acca-shape{
  position: absolute;
  bottom: 47px;
  right: 44px;
}


/*------- App Features Style Start -------*/
.appfeatures-section{
  padding: 185px 0 125px 0;
  background: #EAF8FB80;
  position: relative;
}
.appfeatures-content .why-acca-card{
  gap: 60px 40px;
}
.appfeatures-content .why-acca-item i{
  margin-right: 16px;
  background: var(--primary);
}
.appfeatures-content .why-acca-item h5{
  color: var(--primary);
}
.app-download{
  margin-top: 80px;
}
.app-download h4{
  color: var(--primary);
  font-size: 38px;
  font-weight: 600;
  line-height: 57px;
  margin-bottom: 20px;
}
.app-download-links{
  display: flex;
  gap: 30px;
}
.app-download-links a{
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}
.app-download-links a:hover{
  transform: scale(0.9);
}
.appfeatures-img{
  position: absolute;
  bottom: 0;
  right: 0;
}


/*------- Exemptions Style Start -------*/
.exemptions-section{
  margin-top: 53px;
}
.exemptions-head{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.exemptions-section .section-title{
  flex: 1;
  width: auto;
  margin-bottom: 0px;
}
.exemptions-section .section-title h3{
  font-size: 58px;
  line-height: 73px;
  font-weight: 400;
}
.exemptions-tabs .nav{
  border: 2px solid #59A3B01A;
  border-radius: 80px;
  padding: 7px;
}
.exemptions-tabs .nav .nav-link{
  color: var(--primary);
  font-size: 17px;
  font-weight: 500;
  line-height: 26px;
  padding: 10px 28px;
  border-radius: 50px;
}
.exemptions-tabs .nav .nav-link.active{
  background: var(--primary);
  color: #fff;
}
.exemptions-card .row{
  gap: 30px 0;
}
.exemptions-item{
  width: 100%;
  border: 1px solid var(--primary);
  border-radius: 20px;
  position: relative;
  padding: 30px;
  transition: .3s ease-in;
}
.exemptions-item h5{
  font-size: 23px;
  font-weight: 600;
  line-height: 32px;
  color: var(--primary);
  margin-bottom: 10px;
  transition: .2s ease-in;
}
.exemptions-item p{
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  color: var(--primary);
  margin-bottom: 0px;
  transition: .2s ease-in;
}
.exemptions-item::after{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  content: "";
  width: 14px;
  height: 50px;
  background: var(--primary);
  border-radius: 8px 0 0 8px;
  transition: .3s ease-in;
}
.exemptions-item:hover::after{
  width: 100%;
  height: 100%;
  transition: .3s ease-in;
  border-radius: 17px;
}
.exemptions-item:hover h5{
  color: #fff;
  z-index: 9;
  position: relative;
  transition: .2s ease-in;
}
.exemptions-item:hover p{
  color: #fff;
  z-index: 9;
  position: relative;
  transition: .2s ease-in;
}


/*------- Why Join ACCA Style Start -------*/
.whyjoin-inner{
  width: 100%;
  background: #EAF8FB;
  border-radius: 50px;
  padding: 70px;
}
.whyjoin-inner .section-title h3{
  font-size: 44px;
  font-weight: 400;
  line-height: 55px;
  text-align: center;
}
.whyjoin-card{
  width: 100%;
  height: 100%;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 8px 8px 0px 0px #5BA4B1;
  border: 1px solid #5AA3B0;
  padding: 25px;
  transition: .2s ease-in;
}
.whyjoin-card:hover{
  box-shadow: 8px 8px 10px 0px #5BA4B1;
  transition: .2s ease-in;
}
.whyjoin-card i{
  width: 120px;
  height: 90px;
  text-align: center;
  margin-bottom: 8px;
  display: inline-block;
  line-height: 90px;
}
.whyjoin-card h6{
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  color: var(--primary);
  margin-bottom: 0px;
  padding: 0 18px;
}
.whyjoin-inner .row{
  gap: 35px 0;
}


/*------- Syllabus Style Start -------*/
.syllabus-section{
  padding-bottom: 100px;
  background: url("../images/syllabus-bg.svg") no-repeat;
  background-position: left bottom -127px;
  overflow: initial;
}
.syllabus-title{
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}
.syllabus-section .sticky {
  position: sticky;
  top: 15px;
}
.syllabus-title h3{
  font-size: 110px;
  font-weight: 900;
  line-height: 165px;
  color: var(--primary);
  margin-bottom: 0px;
  text-transform: uppercase;
  position: relative;
}
.syllabus-title h3::after{
  width: 100%;
  position: absolute;
  bottom: -23px;
  right: -23px;
  content: "Syllabus";
  font-size: 110px;
  font-weight: 900;
  line-height: 165px;
  text-transform: uppercase;
  color: #1D587A33;
  -webkit-text-fill-color: white;
  -webkit-text-stroke: 1px #1D587A33;
  z-index: -1;
}
.syllabus-title-ic-1{
  position: absolute;
  bottom: -15px;
  right: 31%;
}
.syllabus-title-ic-2{
  position: absolute;
  top: 167px;
  left: 34%;
}
.syllabus-content{
  width: 100%;
}
.syllabus-content>.accordion>.accordion-item {
  width: 100%;
  margin-bottom: 12px;
  border-radius: 12px;
  background: #EAF8FB;
  padding: 5px;
  border: 0;
} 
.syllabus-content>.accordion>.accordion-item:last-child {
  margin-bottom: 0px;
} 
.syllabus-content>.accordion>.accordion-item>.accordion-header>.accordion-button{
  background: transparent;
  padding: 9px 60px 9px 30px;
  color: #002226;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  position: relative;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.syllabus-content>.accordion>.accordion-item>.accordion-header>.accordion-button:not(.collapsed){
  padding: 15px 60px 15px 30px;
}
.syllabus-content>.accordion>.accordion-item>.accordion-header>.accordion-button::after{
  position: absolute;
  right: 30px;
  background: transparent;
  content: "\F4FE";
  font-family: bootstrap-icons !important;
  color: #002226;
  font-size: 35px;
  font-weight: 400;
  margin: 0 0 0 0;
  transform: none;
  width: 20px;
  height: 20px;
  line-height: 21px;
  text-indent: -0.2em;
}
.syllabus-content>.accordion>.accordion-item>.accordion-header>.accordion-button:not(.collapsed)::after{
  content: "\F63B";
  font-size: 24px;
  text-indent: -0.1em;
}
.syllabus-content>.accordion>.accordion-item>.accordion-collapse>.accordion-body{
  padding: 18px 30px;
  background: #fff;
  border-radius: 10px;
  margin-top: 5px;
}
.syllabus-content .accordion-sub .accordion-item{
  border: 0px;
  border-radius: 0px;
  margin-bottom: 18px;
}
.syllabus-content .accordion-sub .accordion-item:last-child{
  margin-bottom: 0px;
}
.syllabus-content .accordion-sub .accordion-item .accordion-button{
  width: 100%;
  position: relative;
  padding: 2px 0 2px 44px;
  color: #002226;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.syllabus-content .accordion-sub .accordion-item .accordion-button::after{
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  background: #EAF8FB;
  border-radius: 50%;
  content: "\F282";
  font-family: bootstrap-icons !important;
  color: #000000;
  font-size: 13px;
  font-weight: 800;
  transform: none;
  line-height: 30px;
  text-indent: 0.6em;
}
.syllabus-content .accordion-sub .accordion-item .accordion-body{
  padding: 12px 0 0 44px;
}
.syllabus-content .accordion-sub .accordion-item .accordion-body p{
  color: #333333;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 12px;
}
.syllabus-content .accordion-sub .accordion-item .accordion-body li{
  color: #333333;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}
.syllabus-content .accordion-sub .accordion-item .accordion-body li:last-child{
  margin-bottom: 0px;
}
.syllabus-content .accordion-sub .accordion-item .accordion-body li::before{
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #009AAD;
  left: 0;
  top: 9px;
}
.accordion-sub-title{
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  color: var(--primary);
  margin-bottom: 15px;
}


/*------- Best Tutors Guaranteed Style Start -------*/
.tutors-guaranteed-section{
  width: 100%;
  padding: 0px;
  display: flex;
  background: #2D5278;
}
.tutors-guaranteed-content{
  flex: 1;
  padding: 100px;
  padding-left: 0px;
  display: flex;
  justify-content: flex-end;
}
.tutors-guaranteed-inner{
  width: 560px;
}
.tutors-guaranteed-counter{
  flex: 1;
  background: url("../images/guaranteed-content.png") no-repeat;
  background-size: cover;
  background-position: center;
  padding: 90px 0 90px 100px;
  position: relative;
}
.tutors-guaranteed-counter::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #032540AB;
}
.tutors-guaranteed-content .section-title{
  margin-bottom: 20px;
}
.tutors-guaranteed-content .section-title h3{
  color: #fff;
}
.tutors-guaranteed-content .section-title h3 span{
  font-weight: 700;
}
.tutors-guaranteed-content p{
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 34px;
}
.guaranteed-count-item{
  position: relative;
  z-index: 9;
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.guaranteed-count-item:last-child{
  margin-bottom: 0px;
}
.guaranteed-count-item .count{
  color: #fff;
  font-size: 70px;
  font-weight: 600;
  line-height: 88px;
  margin-bottom: 0px;
}
.guaranteed-count-item h5{
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 0px;
}


/*------- Trusted Employers Style Start -------*/
.employers-section .section-title h3{
  font-size: 50px;
  line-height: 63px;
  font-weight: 400;
  text-align: center;
}
.employers-slider {
  width: 100%;
  margin-top: 10px;
}
.employers-item{
  min-height: 100px;
  text-align: center;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}
.employers-item img{
  max-height: 100%;
}
.employers-slider .slick-slide > div{
  margin: 0 30px;
}


/*------- Testimonial Style Start -------*/
.testimonial-section{
  padding-top: 80px;
  padding-bottom: 100px;
}
.testimonial-section .container{
  padding-top: 100px;
  border-top: 1px solid #2D52781A;
}
.testimonial-title{
  width: 100%;
  height: 100%;
  position: relative;
  border-right: 1px solid #2D52781A;
  padding-right: 210px;
  display: flex;
  align-items: center;
}
.testimonial-title::before{
  width: 121px;
  height: 117px;
  position: absolute;
  content: "";
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/quote.svg") no-repeat;
  background-size: 100%;
}
.testimonial-title .section-title{
  margin-bottom: 10px;
}
.testimonial-title .section-title h3 span{
  font-weight: 700;
}
.testimonial-title p{
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: var(--primary);
  margin-bottom: 40px;
}
.testimonial-nav-btn{
  display: flex;
  gap: 15px;
}
.testimonial-nav-btn a {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: #ffffff;
  border: 1px solid #c0cbd7;
  font-size: 24px;
  color: #c0cbd7;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.testimonial-nav-btn a:hover {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.testimonial-nav-btn .bi-chevron-left::before,
.testimonial-nav-btn .bi-chevron-right::before {
  font-weight: bold !important;
}
.testimonial-nav-btn i {
  margin-bottom: -3px;
}
.testimonial-content{
  width: 100%;
  padding-left: 30px;
}
.testimonial-item p{
  color: var(--primary);
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 38px;
  margin-bottom: 17px;
}
.ratings{
  width: 100%;
  display: flex;
  gap: 10px;
  margin-bottom: 38px;
  align-items: center;
}
.ratings ul{
  display: flex;
  gap: 5px;
}
.ratings li{
  color: #FFAE35;
  font-size: 20px;
}
.ratings h6{
  color: var(--primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 31px;
  margin-bottom: 0px;
}
.testimonial-user{
  display: flex;
  gap: 20px;
  align-items: center;
}
.testimonial-user i{
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--secondary);
  overflow: hidden;
}
.testimonial-user i img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-text{
  flex: 1;
}
.testimonial-text h5{
  color: var(--primary);
  font-size: 24px;
  font-weight: 600;
  line-height: 41px;
  margin-bottom: 0px;
}
.testimonial-text p{
  color: var(--primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 31px;
  font-style: normal;
  margin-bottom: 0px;
}


/*------- Footer Style Start -------*/
.footer-main{
  width: 100%;
}
.footer-top{
  width: 100%;
  background: linear-gradient(180deg, #EAF8FB 0%, rgba(255, 255, 255, 0) 100%);
  position: relative;
  padding: 115px 0 60px 0;
}
.footer-top::after{
  content: '';
  position: absolute;
  right: 0px;
  top: 0;
  width: 500px;
  height: 461px;
  background-image: url("../images/footer-bg.svg");
  background-repeat: no-repeat;
  background-size: 100%;
}
.footer-about h2{
  color: var(--primary);
  font-size: 105px;
  font-weight: 700;
  line-height: 105px;
  margin-bottom: 50px;
}
.footer-about p{
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  color: #212129;
  margin-bottom: 0px;
}
.footer-widget{
  width: 100%;
  margin-top: 73px;
  border-right: 1px solid #1D587A1A;
}
.footer-widget h4{
  font-size: 25px;
  font-weight: 600;
  line-height: 38px;
  color: var(--primary);
  margin-bottom: 20px;
}
.footer-widget ul {
  display: inline-block;
  margin-right: 50px;
}
.footer-widget ul:last-child {
  margin-right: 0px;
}
.footer-widget li{
  margin-bottom: 10px;
}
.footer-widget li:last-child{
  margin-bottom: 0px;
}
.footer-widget li a{
  color: var(--primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  transition: .2s ease-in;
}
.footer-widget li a:hover{
  color: var(--secondary);
  transition: .2s ease-in;
}
.footer-widget-contact{
  padding-left: 30px;
  border-right: 0px;
}
.footer-widget-cont{
  width: 100%;
  display: flex;
}
.footer-widget-cont-in:first-child{
  flex: 1;
  border-right: 1px solid #1D587A1A;
  padding-right: 80px;
}
.widget-cont-item{
  display: flex;
}
.widget-cont-item i{
  display: inline-block;
  color: var(--primary);
  font-size: 25px;
  margin-right: 15px;
}
.widget-cont-item p{
  color: var(--primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0px;
}
.widget-cont-item p a{
  color: var(--primary);
  transition: .2s ease-in;
}
.widget-cont-item p a:hover{
  color: var(--secondary);
  transition: .2s ease-in;
}
.footer-widget-cont-in:last-child{
  padding-left: 40px;
}
.footer-widget-cont-in:last-child .widget-cont-item{
  align-items: center;
  margin-bottom: 25px;
}
.footer-widget-cont-in:last-child .widget-cont-item:last-child{
  margin-bottom: 0px;
}
.footer-copyright{
  width: 100%;
  background: #EAF8FB;
  padding: 15px 0;
}
.footer-copyright-inner{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.footer-copyright-inner p{
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: var(--primary);
  margin-bottom: 0px;
}
.laxraj-love a {
  text-decoration: none;
  color: var(--primary);
  transition: .2s ease-in;
}
.laxraj-love a:hover {
  color: var(--secondary);
  transition: .2s ease-in;
}
.laxraj-love svg,
.laxraj-love .fa {
  color: var(--secondary);
  margin: 0 3px;
  font-size: 10px;
  animation: pound 0.35s infinite alternate;
  -webkit-animation: pound 0.35s infinite alternate;
  width: 12px;
  height: auto;
}
@-webkit-keyframes pound {
  to {
      transform: scale(1.1);
  }
}
@keyframes pound {
  to {
      transform: scale(1.1);
  }
}
.footer-copyright-inner ul{
  display: flex;
  gap: 25px;
}
.footer-copyright-inner li a{
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: var(--primary);
  transition: .2s ease-in;
}
.footer-copyright-inner li a:hover{
  color: var(--secondary);
  transition: .2s ease-in;
}
.social-media-list{
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.social-media-list li {
  line-height: 0;
}
.social-media-list a{
  width: 34px;
  height: 34px;
  background: var(--primary);
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-size: 17px;
  color: #fff;
  display: inline-block;
  transition: all 0.3s ease;
}
.social-media-list a:hover{
  background: var(--secondary);
  transition: all 0.3s ease;
}
.social-media-list a i {
  margin-right: -2px;
}




/*------- Scroll to Top Style Start -------*/
#return-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--secondary);
  width: 50px;
  height: 50px;
  line-height: 26px;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#return-to-top i {
  color: #fff;
  margin: 0;
  position: relative;
  left: 16px;
  top: 13px;
  font-size: 19px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#return-to-top:hover {
  background: var(--primary);
}
#return-to-top:hover i {
  color: #fff;
  top: 6px;
}



/*--==== About Page Style Start ====--*/
/*------- About Hero Banner Style Start -------*/
.sub-hero-banner{
  width: 100%;
  background: var(--primary);
  padding: 120px 0 50px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.sub-hero-banner::after{
  content: "";
  width: 124px;
  height: 13px;
  background: url("../images/sub-hero-arrow.png") no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
}
.sub-hero-banner::before {
  position: absolute;
  bottom: 0;
  right: -150px;
  content: "";
  width: 500px;
  height: 500px;
  border: 80px solid var(--secondary);
  border-radius: 50%;
}
.sub-hero-banner .container{
  position: relative;
  z-index: 9;
}
.sub-hero-title{
  width: 100%;
  text-align: center;
  margin-bottom: 80px;
}
.sub-hero-title h1{
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  margin-bottom: 0px;
}
.breadcrumb{
  width: 100%;
  display: flex;
  margin: 0;
  justify-content: center;
}
.breadcrumb>li+li:before {
  padding: 0 4px 0 10px;
  color: #fff;
  content: "/\00a0";
  font-size: 14px;
}
.breadcrumb li{
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.breadcrumb li a{
  color: #fff;
  transition: all 0.3s;
}
.breadcrumb li.active,
.breadcrumb li a:hover{
  color: var(--secondary);
  transition: all 0.3s;
}
.breadcrumb li.active{
  font-weight: 500;
}


/*------- About Style Start -------*/
.about-page-section{
  width: 100%;
  padding-bottom: 45px;
}
.main-post-about{
  width: 100%;
  position: relative;
  margin-top: 15px;
  text-align: center;
}
.main-post-about img{
  width: 600px;
  height: 600px;
  object-fit: cover;
  border-radius: 50%;
}
.main-post-about:after{
  width: 150px;
  height: 150px;
  position: absolute;
  top: -15px;
  right: 80px;
  z-index: -1;
  content: "";
  border: 22px solid var(--secondary);
  border-radius: 50%;
}
.about-count-box{
  position: absolute;
  padding: 12px;
  background-color: var(--primary);
  border-radius: 7px;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.about-count-box-inner{
  width: 100%;
  padding: 12px 15px;
  border-radius: 7px;
  border: 1px solid rgba(238, 228, 228, 0.616);
  display: flex;
}
.about-count-box-inner .count{
  font-size: 52px;
  font-weight: 600;
  line-height: 40px;
  margin-right: 8px;
  color: #fff;
}
.about-count-box-inner h5{
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  margin-bottom: 0px;
  color: #fff;
  max-width: 9ch;
}
.about-page-content {
  width: 100%;
  padding-left: 40px;
}
.about-page-content p{
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #212129;
  margin-bottom: 30px;
}
.about-page-content h5{
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  color: var(--primary);
  margin-bottom: 20px;
}
.about-page-content h6{
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: #212129;
  margin-bottom: 0px;
  border-left: 3px solid var(--primary);
  padding-left: 15px;
  font-style: italic;
}


/*--==== Login Page Style Start ====--*/
.login-page-section{
  width: 100%;
  padding: 100px 0;
}
.login-card{
  width: 100%;
  border: 1px solid #1D587A1A;
  border-radius: 15px;
  padding: 30px;
  position: relative;
}
.login-card::after{
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  top: 50px;
  bottom: 50px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.49) 19%,rgba(0,0,0,1) 50%,rgba(0,0,0,0.52) 85%,rgba(0,0,0,0) 100%);
  opacity: 0.1;
}
.login-card-img {
  width: 100%;
  text-align: center;
}
.login-card-img img {
  max-height: 450px;
}
.login-page-card-img{
  position: relative;
  margin: 30px 0;
}
.login-page-card-img img {
  max-width: 380px;
}
.login-page-card-img h4{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  margin-bottom: 0px;
}
.login-page-card-img h4 span{
  font-weight: 700;
  color: var(--primary);
}
.login-card-content {
  width: 100%;
  padding: 0 50px;
}
.lr-heading{
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}
.lr-heading h5 {
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 0px;
  color: var(--primary);
}
.lr-heading p {
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: #212129;
  margin: 8px 0 0 0;
}
.form-field{
  width: 100%;
  margin-bottom: 30px;
}
.form-field .form-control {
  width: 100%;
  height: 54px;
  border-radius: 12px;
  border: 1px solid #d2d2d2;
  background-color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: #000000;
  padding: 15px 16px;
}
.form-field .form-control:focus{
  box-shadow: none;
  border: 1px solid var(--primary);
}
.lr-form-card .btn-primary {
  min-width: 150px;
}
.register-link {
  width: 100%;
  text-align: center;
  margin-top: 40px;
}
.register-link p {
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: #212129;
  margin: 0px;
}
.register-link p a {
  color: var(--secondary);
  transition: all 0.3s ease;
}
.register-link p a:hover{
  color: var(--primary);
  transition: all 0.3s ease;
}
.iti {
  width: 100%;
}
.iti--separate-dial-code .iti__selected-flag {
  background-color: #b3b3b31a;
}
.iti__selected-flag{
  padding: 0 8px 0 10px;
  border-radius: 12px 0 0 12px;
}
.verification-code-inputs{
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}
.verification-code-inputs input{
  width: 46px;
  height: 46px;
  background: #fff;
  border: 1px solid #d2d2d2;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 17px;
  color: var(--primary);
}
.verification-code-inputs input:focus,
.verification-code-inputs input:valid{
  border: 1px solid var(--primary);
}


/*--==== Contact Us Page Style Start ====--*/
.contact-page-section{
  width: 100%;
  padding: 100px 0;
}
.contact-content .section-title h5{
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  margin-bottom: 17px;
}
.contact-content .section-title{
  margin-bottom: 30px;
}
.contact-content p{
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #212129;
  margin-bottom: 0px;
  padding-right: 60px;
}
.contact-content .social-media-list a {
  width: 40px;
  height: 40px;
  line-height: 42px;
  font-size: 18px;
}
.form-field textarea.form-control{

  padding-top: 15px;
}
.contact-getintouch-section{
  width: 100%;
  background: #f5fcfd80;
  padding: 100px 0;
}
.contact-getintouch-section .section-title{
  text-align: center;
}
.getintouch-card{
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 15px;
  padding: 50px 40px;
  text-align: center;
  border: 1px solid #1D587A1A;
}
.getintouch-icon-wrap{
  margin-bottom: 30px;
}
.getintouch-icon-wrap svg{
  width: auto;
  height: 70px;
}
.getintouch-card h5{
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 25px;
  color: var(--primary);
}
.getintouch-card p{
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #212129;
  margin-bottom: 0px;
}
.getintouch-card p a{
  color: #212129;
  transition: all 0.3s ease;
}
.getintouch-card p a:hover{
  color: var(--primary);
  transition: all 0.3s ease;
}



/*--==== Cart Page Style Start ====--*/
.cart-page-section{
  width: 100%;
  padding: 100px 0;
  overflow: initial;
}
.cart-content-main{
  width: 100%;
}
.cart-items{
  width: 100%;
  margin-bottom: 20px;
}
.cart-items h5{
  color: var(--primary);
  font-size: 22px;
  font-weight: 400;
  line-height: 31px;
  margin: 0px;
}
.cart-items h5 span{
  font-weight: 700;
}
.cart-name-card{
  width: 100%;
  background: #EAF8FB;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  position: relative;
}
.cart-name-card:last-child{
  margin-bottom: 0px;
}
.cart-img{
  width: 240px;
  height: 240px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  margin-right: 30px;
}
.cart-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-name-cont{
  flex: 1;
}
.cart-name-cont h4{
  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 10px;
  padding-right: 25px;
}
.cart-name-cont h4 a{
  color: var(--primary);
  transition: all 0.3s ease;
}
.cart-name-cont h4 a:hover{
  color: var(--secondary);
  transition: all 0.3s ease;
}
.cart-name-cont p{
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #212129;
  margin-bottom: 15px;
}
.cart-name-cont p span{
  color: var(--primary);
  font-weight: 600;
}
.course-info{
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}
.course-info-card{
  display: flex;
  gap: 8px;
  padding: 5px;
  border-radius: 8px;
  background: #fff;
  align-items: center;
}
.course-info-card i {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  background: var(--primary);
  color: #fff;
  border-radius: 7px;
  font-size: 17px;
  line-height: 32px;
}
.course-info-card h6{
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  color: var(--primary);
  margin-bottom: 0px;
  padding-right: 5px;
}
.course-price{
  display: flex;
}
.course-price h4{
  background: var(--primary);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 0px;
  padding: 5px 20px;
  border-radius: 8px 0 0 8px;
}
.course-price h6{
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 0px;
  text-decoration: line-through;
  padding: 5px 15px;
  border-radius: 0 8px 8px 0;
}
.cart-close{
  position: absolute;
  top: 15px;
  right: 15px;
  color: var(--secondary);
  font-size: 25px;
  line-height: 20px;
  z-index: 9;
  transition: all 0.3s ease;
}
.cart-close:hover{
  color: var(--primary);
  transition: all 0.3s ease;
}
.cart-summary-card{
  width: 100%;
  padding-left: 20px;
  position: sticky;
  top: 15px;
}
.cart-subtotal{
  width: 100%;
  margin-bottom: 40px;
}
.cart-subtotal h5{
  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 15px;
}
.cart-subtotal ul{
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 8px 8px 0px 0px #5BA4B1;
  border: 1px solid #5AA3B0;
  padding: 25px;
}
.cart-subtotal li{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #212129;
}
.cart-subtotal li:last-child{
  margin-bottom: 0px;
}
.cart-subtotal li span:last-child{
  font-weight: 600;
  color: var(--primary);
}
.cart-btn{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.cart-btn .btn {
  width: 100%;
}


/*--==== Edit Profile Page Style Start ====--*/
.profile-details-section{
  width: 100%;
  padding: 0px;
  overflow: inherit;
}
.profile-img {
  margin-top: -70px;
  position: relative;
  z-index: 9;
}
.avatar-border{
  position: absolute;
  top: 0;
  left: 0;
  width: 190px;
  height: 70px;
  overflow: hidden;
}
.avatar-border span{
  width: 190px;
  height: 190px;
  display: inline-block;
  border-radius: 100%;
  border: 6px solid #fff;
  position: absolute;
  z-index: 9;
}
.avatar-upload {
  width: 190px;
  position: relative;
}
.avatar-upload .avatar-edit {
  position: absolute;
  bottom: 12px;
  right: 0px;
  z-index: 9;
}
.avatar-upload .avatar-edit input {
  display: none;
}
.avatar-upload .avatar-edit input + label {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #FFFFFF;
  border: 1px solid #f0f0f0;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}
.avatar-upload .avatar-edit input + label:after {
  content: "\F4CB";
  font-family: bootstrap-icons!important;
  color: var(--primary);
  font-weight: 800;
  position: absolute;
  top: 7px;
  left: 0;
  right: 0;
  font-size: 15px;
  text-align: center;
  margin: auto;
  transition: all 0.2s ease-in-out;
}
.avatar-upload .avatar-edit input + label:hover {
  background: var(--primary);
  border-color: var(--primary);
  transition: all 0.2s ease-in-out;
}
.avatar-upload .avatar-edit input + label:hover:after{
  color: #fff;
  transition: all 0.2s ease-in-out;
}
.avatar-upload .avatar-preview {
  width: 190px;
  height: 190px;
  position: relative;
  border-radius: 100%;
  border: 6px solid var(--primary);
}
.avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.profile-details-card {
  width: 100%;
  display: flex;
}
.profile-details-content {
  flex: 1;
  padding: 20px 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.profile-details-name h4{
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 5px;
  color: var(--primary);
}
.profile-details-name p{
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: #212129;
  margin: 0px;
}
.profile-details-welcome h5{
  font-size: 28px;
  font-weight: 400;
  line-height: 38px;
  color: var(--primary);
  margin-bottom: 0px;
}
.profile-details-welcome h5 span{
  font-weight: 800;
}
.edit-profile-section{
  width: 100%;
  padding: 60px 0 100px 0;
}
.edit-profile-title{
  width: 100%;
  margin-bottom: 15px;
}
.edit-profile-title h5{
  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 0px;
}
.edit-profile-title p{
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: #212129;
  margin: 6px 0 0 0;
}
.profile-links-card{
  width: 100%;
  background: var(--primary);
  border-radius: 15px;
  padding: 15px 0;
}
.profile-links-card li{
  width: 100%;
  padding: 0 0 0 15px;
}
.profile-links-card li a{
  width: 100%;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  padding: 15px 20px;
  display: inline-block;
  position: relative;
}
.profile-links-card li.active a{
  background: #fff;
  border-radius: 15px 0 0 15px;
  color: var(--primary);
}
.profile-links-card li a i {
  font-size: 22px;
  margin-right: 10px;
  position: relative;
  top: 3px;
}
.profile-links-card li.active a::before,
.profile-links-card li.active a::after{
  position: absolute;
  content: "";
  top: -4px;
  right: 0;
  width: 20px;
  height: 20px;
  border-radius: 0 0 0 15px;
  background: var(--primary);
}
.profile-links-card li.active a::after{
  bottom: -4px;
  top: auto;
  border-radius: 15px 0 0 0;
}
.edit-profile-content {
  width: 100%;
  padding: 0 0 0 20px;
}
.edit-profile-form {
  width: 100%;
  margin-bottom: 30px;
  padding: 25px 22px 0 22px;
  border-radius: 15px;
  background: #EAF8FB;
}
label.form-label {
  width: 100%;
  display: inline-block;
  margin: 0 0 5px 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  color: #212129;
}



/*Calendar Date Start*/
.form-field .form-control.dateselect {
  background: url("../images/calendar.svg") #fff no-repeat;
  background-position: right 18px center;
}
.datepicker {
  border-radius: 15px;
  padding: 0;
}
.datepicker-days table thead,
.datepicker-days table tbody,
.datepicker-days table tfoot {
  padding: 10px;
  display: list-item;
}
.datepicker-days table thead,
.datepicker-months table thead,
.datepicker-years table thead,
.datepicker-decades table thead,
.datepicker-centuries table thead {
  background: var(--primary);
  color: #ffffff;
  border-radius: 0;
}
.datepicker-days table thead tr:nth-child(2n+0) td,
.datepicker-days table thead tr:nth-child(2n+0) th {
  border-radius: 3px;
}
.datepicker-days table thead tr:nth-child(3n+0) {
  text-transform: uppercase;
  font-weight: 300 !important;
  font-size: 12px;
  color: #fff;
}
.table-condensed>tbody>tr>td,
.table-condensed>tbody>tr>th,
.table-condensed>tfoot>tr>td,
.table-condensed>tfoot>tr>th,
.table-condensed>thead>tr>td,
.table-condensed>thead>tr>th {
  padding: 7px 10px;
}
.table-condensed>tbody>tr>td {
  font-size: 14px;
}
.datepicker-months table thead td,
.datepicker-months table thead th,
.datepicker-years table thead td,
.datepicker-years table thead th,
.datepicker-decades table thead td,
.datepicker-decades table thead th,
.datepicker-centuries table thead td,
.datepicker-centuries table thead th {
  border-radius: 0;
}
.datepicker-days table tfoot {
  padding: 0px;
}
.datepicker td,
.datepicker th {
  border-radius: 50%;
  padding: 0 12px;
}
.datepicker-days table thead,
.datepicker-months table thead,
.datepicker-years table thead,
.datepicker-decades table thead,
.datepicker-centuries table thead {
  background: var(--primary);
  color: #ffffff;
  border-radius: 15px 15px 0 0;
}
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
  background-image: none;
}
.datepicker .prev,
.datepicker .next {
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  width: 37px;
  height: 37px;
}
.datepicker .prev:hover,
.datepicker .next:hover {
  background: transparent;
  color: rgba(255, 255, 255, 0.99);
  font-size: 21px;
}
.datepicker .datepicker-switch {
  font-size: 20px;
  font-weight: 400;
  transition: 0.3s;
}
.datepicker .datepicker-switch:hover {
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
}
.datepicker table tr td span {
  border-radius: 2px;
  margin: 3%;
  width: 27%;
}
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  background-color: var(--primary);
  background-image: none;
}
.dropdown-menu {
  border: 1px solid rgba(0, 0, 0, .1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.datepicker-dropdown.datepicker-orient-top:before {
  border-top: 7px solid rgba(0, 0, 0, .1);
}
.datepicker-dropdown.datepicker-orient-left:after {
  left: 27px;
}
.datepicker-dropdown.datepicker-orient-left:before {
  left: 26px;
}
.datepicker table tr td span {
  height: 40px;
  line-height: 40px;
}


/*--==== Courses Page Style Start ====--*/
.courses-page-section{
  padding-bottom: 100px;
}
.courses-head{
  width: 100%;
  display: flex;
  gap: 25px;
  align-items: center;
}
.grid-view-card{
  display: flex;
  gap: 15px;
}
.grid-view-card .toggle-courses-view{
  width: 45px;
  height: 45px;
  border-radius: 5px;
  background: #EAF8FB;
  color: var(--primary);
  font-size: 25px;
  line-height: 25px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.grid-view-card .toggle-courses-view .bi-list-task{
  font-size: 28px;
}
.grid-view-card .toggle-courses-view.active{
  background: var(--primary);
  color: #fff;
}
.show-result h4{
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  margin: 0px;
}
.courses-search form {
  width: 100%;
  display: flex;
  gap: 20px;
}
.courses-search .form-field{
  margin-bottom: 0px;
}
.courses-search .form-field .form-control{
  height: 45px;
  font-size: 14px;
  padding: 5px 15px;
}
.courses-search .form-field:last-child{
  width: 350px;
}
.courses-search .form-field .form-control.search-icon{
  background: url("../images/search.svg") #fff;
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 18px;
  padding-left: 42px;
}
.courses-list-main{
  margin-top: 50px;
}
.courses-card{
  width: 100%;
  background: #EAF8FB;
  border-radius: 15px;
  padding: 15px;
  transition: all 0.3s ease;
}
.courses-card:hover{
  transition: all 0.3s ease;
  box-shadow: 8px 8px 0px 0px var(--secondary);
}
.courses-card-img{
  width: 100%;
  height: 180px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
} 
.courses-card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.courses-card-content{
  width: 100%;
  padding: 15px 0;
}
.courses-card-content h3{
  color: #212129;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 12px;
  min-height: 60px;
}
.courses-card-content h3 a{
  color: #212129;
  transition: all 0.3s ease;
}
.courses-card-content h3 a:hover{
  color: var(--secondary);
  transition: all 0.3s ease;
}
.course-price-wishlist{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.courses-card-content .course-info {
  gap: 9px;
  margin-bottom: 15px;
}
.courses-card-content .course-info-card {
  flex: 1;
}
.courses-card-content .course-info-card h6 {
  font-size: 14px;
  line-height: 24px;
}
.courses-card-content .course-info-card i {
  width: 28px;
  height: 28px;
  font-size: 14px;
  line-height: 29px;
}
.course-wishlist a{
  color: var(--secondary);
  font-size: 20px;
  line-height: 20px;
  transition: all 0.3s;
}
.course-wishlist a:hover{
  color: var(--primary);
  transition: all 0.3s;
}
.course-wishlist a i {
  position: relative;
  top: 4px;
}
.courses-card-btn a{
  width: 100%;
  display: inline-block;
  text-align: center;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 600;
  line-height: 26px;
  text-transform: uppercase;
  padding: 10px 15px;
  border-radius: 10px;
  transition: all 0.3s;
}
.courses-card-btn a:hover{
  background: var(--secondary);
  transition: all 0.3s;
}
.courses-card-content .course-price h4{
  background: var(--secondary);
  font-size: 18px;
  line-height: 28px;
  padding: 5px 15px;
}
.courses-card-content .course-price h6{
  border: 1px solid var(--secondary);
  color: var(--secondary);
  font-size: 14px;
  line-height: 24px;
  padding: 6px 12px;
}
.courses-list-main{
  gap: 30px 0;
}
.courses-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.courses-pagination .pagination{
  gap: 15px;
}
.courses-pagination .page-link{
  background: #fff;
  border: 1px solid var(--primary);
  border-radius: 12px !important;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #212129;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.courses-pagination .page-item.active .page-link,
.courses-pagination .page-link:hover{
  background: var(--primary);
  color: #fff;
  transition: all 0.3s;
}
.courses-grid-view .col-lg-3.col-md-6{
  width: 100%;
}
.courses-grid-view .courses-card{
  display: flex;
  gap: 25px;
  align-items: center;
}
.courses-grid-view .courses-card-img {
  width: 300px;
}
.courses-grid-view .courses-card-content {
  padding: 0;
  flex: 1;
}
.courses-grid-view .courses-card-content h3{
  min-height: auto;
}
.courses-grid-view .courses-card-content .course-info{
  width: 270px;
}
.courses-grid-view .course-price-wishlist{
  justify-content: normal;
  gap: 25px;
}
.courses-grid-view .courses-card-btn a{
  padding: 10px 45px;
}


/*--==== Course Details Page Style Start ====--*/
.course-details-title{
  width: 100%;
  padding: 60px 0;
}
.sub-hero-title h1 span{
  font-weight: 400;
}
.cd-head{
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #2D52781A;
  padding-bottom: 60px;
}
.cd-head .section-title h3 {
  font-size: 58px;
  line-height: 73px;
  font-weight: 400;
}
.cd-head-info {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
.cd-head .section-title {
  margin-bottom: 30px;
}
.cd-head-info ul {
  display: flex;
  gap: 20px;
}
.cd-head-info li{
  background: var(--secondary);
  color: #fff;
  padding: 7px 20px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 400;
  line-height: 27px;
}
.cd-head-info li span{
  font-weight: 600;
}
.cd-head h4{
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: var(--primary);
  margin-bottom: 0px;
}
.cd-head h4 span{
  font-weight: 700;
}
.course-content-section{
  width: 100%;
  padding: 0 0 100px 0;
  overflow: initial;
}
.course-content-card{
  width: 100%;
  margin-bottom: 40px;
}
.course-content-title{
  width: 100%;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.course-content-title h5{
  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 0px;
}
.course-content-title p{
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: #212129;
  margin: 0;
}
.course-content-card-inner{
  width: 100%;
  padding: 25px;
  border-radius: 15px;
  background: #EAF8FB;
}
.course-description-list li{
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: #212129;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddebef;
  text-transform: capitalize;
}
.course-description-list li span{
  font-weight: 400;
  display: inline-block;
  min-width: 95px;
  position: relative;
  margin-right: 10px;
}
.course-description-list li span:after{
  content: ":";
  position: absolute;
  top: 0;
  right: 0;
  color: #212129;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}
.moretext {
  display: none;
}
.moreless-button{
  width: 100%;
  text-align: center;
  margin-top: 25px;
}
.cd-read-more{
  color: var(--primary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}
.course-content-accordion .accordion-button.combo-course:not(.collapsed):after {
  content: ""!important;
  font-size: 24px;
  text-indent: -.05em;
}
.course-content-accordion .accordion-item{
  width: 100%;
  margin-bottom: 15px;
  border-radius: 12px;
  background: #fff;
  padding: 5px;
  border: 0;
}
.course-content-accordion .accordion-item:last-child{
  margin-bottom: 0px;
}
.course-content-accordion .accordion-button{
  background: transparent;
  padding: 7px 50px 7px 12px;
  color: #002226;
  font-size: 17px;
  font-weight: 600;
  line-height: 27px;
  position: relative;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.course-content-accordion .accordion-button span{
  width: 30px;
  height: 30px;
  display: inline-flex;
  background: #EAF8FB;
  border-radius: 50%;
  margin-right: 15px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  align-items: center;
  justify-content: center;
}
.course-content-accordion .accordion-button::after {
  position: absolute;
  right: 20px;
  background: transparent;
  content: "\F4FE";
  font-family: bootstrap-icons !important;
  color: #002226;
  font-size: 35px;
  font-weight: 400;
  margin: 0 0 0 0;
  transform: none;
  width: 20px;
  height: 20px;
  line-height: 21px;
  text-indent: -0.2em;
}
.course-content-accordion .accordion-button:not(.collapsed)::after {
  content: "\F63B";
  font-size: 24px;
  text-indent: -0.05em;
}
.course-content-accordion .accordion-body{
  padding: 5px 20px;
  background: #EAF8FB;
  border-radius: 10px;
  margin-top: 5px;
}
.course-content-accordion .accordion-body li{
  width: 100%;
  position: relative;
  padding: 15px 40px 15px 18px;
  border-bottom: 1px solid #ddebef;
  color: #002226;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.course-content-accordion .accordion-body li:after{
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  left: 0;
  top: 24px;
}
.course-content-accordion .accordion-body li:last-child{
  border-bottom: 0px;
}
.course-content-accordion .accordion-body li span{
  position: absolute;
  top: 16px;
  right: 5px;
  color: #002226;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.cc-right{
  width: 100%;
  padding-left: 20px;
  position: sticky;
  top: 0;
  padding-top: 45px;
  margin-bottom: 50px;
}
.course-content-sidebar{
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 8px 8px 0px 0px #5BA4B1;
  border: 1px solid #5AA3B0;
  padding: 25px;
  margin-bottom: 40px;
}
.cc-video {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid var(--secondary);
  border-radius: 12px;
  overflow: hidden;
}
.cc-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cc-video:after{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #EAF8FB80;
}
.cc-video .video-btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary);
  font-size: 60px;
  line-height: 50px;
  z-index: 9;
}
.course-content-price{
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.course-content-price h5{
  color: var(--primary);
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
}
.course-content-price h5 span{
  color: var(--primary);
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  text-decoration: line-through;
  margin-left: 10px;
}
.course-content-price p{
  background: #eaf8fb;
  color: var(--primary);
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 0px;
  padding: 3px 10px;
  border-radius: 5px;
}
.course-content-btn{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.course-content-btn a{
  text-align: center;
  background: var(--secondary);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  padding: 10px 27px;
  border-radius: 10px;
  transition: all 0.3s;
}
.course-content-btn a:hover{
  background: var(--primary);
  transition: all 0.3s;
}
.course-content-btn a i {
  font-size: 18px;
  margin-right: 5px;
  position: relative;
  top: 2px;
}
.course-video-modal .modal-content{
  width: 100%;
  border-radius: 15px;
  border: 0;
  background: #fff;
  position: relative;
}
.course-video-modal .btn-close{
  position: absolute;
  top: -40px;
  right: 0;
  padding: 0;
  background: transparent;
  width: 30px;
  height: 30px;
  font-size: 27px;
  line-height: 25px;
  opacity: 1;
  color: #fff;
}
.course-video-modal .btn-close:focus{
  box-shadow: none;
}
.course-video-modal .modal-body{
  width: 100%;
  padding: 0px;
}
.course-video-modal .course-video-card{
  width: 100%;
  border-radius: 15px;
  border: 3px solid var(--secondary);
  overflow: hidden;
}
.course-video-modal .course-video-card video{
  width: 100%;
  display: block;
}

.course-feature-card{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 25px 15px;
}
.cd-icon-card{
  width: 250px;
  display: flex;
  align-items: center;
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}
.cd-icon-card i{
  width: 70px;
  height: 70px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex: none;
  text-align: center;
  background: var(--primary);
  border-radius: 50%;
  margin-right: 10px;
}
.cd-icon-card i img{
  width: 35px;
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}
.cd-icon-card:hover i img {
  -webkit-transform: scale(-1) rotate(180deg);
  -moz-transform: scale(-1) rotate(180deg);
  -ms-transform: scale(-1) rotate(180deg);
  -o-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}
.cd-icon-card h6{
  flex: 1;
  color: #002226;
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
  margin: 0px;
}
.cd-icon-card h6 span{
  font-weight: 700;
}

.course-details-tabs{
  width: 100%;
}
.course-details-tabs .exemptions-tabs .nav{
  display: inline-flex;
  border: 2px solid #eaf8fb;
  border-radius: 15px 15px 0 0;
  padding: 10px;
  border-bottom: 0;
}
.course-details-tabs .exemptions-tabs .nav .nav-link{
  border-radius: 10px;
  padding: 10px 25px;
  font-weight: 600;
}
.course-details-tabs-content{
  border-radius: 0 15px 15px 15px;
}
.description-tabs-content{
  width: 100%;
}
.description-tabs-content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid #1D587A1A;
  margin-bottom: 30px;
}
.description-tabs-content table th,
.description-tabs-content table td {
  padding: 8px 15px;
  color: #002226;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
.description-tabs-content table th {
  font-weight: 600;
  text-align: left;
  color: var(--primary);
  border-right: 1px solid #1D587A1A;
}
.description-tabs-content table tbody tr:nth-child(even) th,
.description-tabs-content table tbody tr:nth-child(even) td {
   background-color: #f4fdff;
}
.description-tabs-content strong{
  font-weight: 700;
}
.description-tabs-content a{
  color: var(--secondary);
  font-weight: 500;
  transition: all 0.3s ease 0s;
}
.description-tabs-content a:hover{
  color: var(--primary);
  transition: all 0.3s ease 0s;
}
.description-tabs-content h3{
  font-size: 25px;
  font-weight: 700;
  line-height: 35px;
  color: var(--primary);
  margin-bottom: 15px;
}
.description-tabs-content p{
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #212129;
  margin-bottom: 15px;
}
.description-tabs-content h5{
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--primary);
  margin-bottom: 15px;
}
.description-tabs-content ul{
  margin-bottom: 15px;
  padding-left: 10px;
}
.description-tabs-content li{
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #212129;
  margin-bottom: 10px;
  position: relative;
  padding-left: 16px;
}
.description-tabs-content li:last-child{
  margin-bottom: 0px;
}
.description-tabs-content li:before{
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #009AAD;
  left: 0;
  top: 9px;
}
.demo-session-tabs-content{
  width: 100%;
}
.demo-session-tabs-content .row{
  gap: 25px 0;
}
.demo-session-video{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
  border: 2px solid var(--secondary);
  border-radius: 15px;
}
.demo-session-video iframe{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.about-faculty-img{
  width: 100%;
  border-radius: 15px;
  box-shadow: 8px 8px 0px 0px #5BA4B1;
  border: 1px solid #5AA3B0;
  overflow: hidden;
}
.about-faculty-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-faculty-content{
  width: 100%;
  padding-left: 20px;
}
.about-faculty-content h4{
  color: var(--primary);
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 7px;
}
.about-faculty-content h6{
  color: #002226;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 20px;
}
.about-faculty-content p{
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #212129;
  margin-bottom: 15px;
}
.about-faculty-content p:last-child{
  margin-bottom: 0px;
}
.about-faculty-tabs-content .row > div:last-child .about-faculty-content{
  padding-top: 30px;
  padding-left: 0px;
}
.faqs-title{
  width: 100%;
  margin-bottom: 15px;
  margin-top: 30px;
}
.faqs-title:first-child{
  margin-top: 0px;
}
.faqs-title h4{
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 0px;
}
.faqs-tabs-content .accordion-body{
  padding: 18px 20px;
}
.faqs-tabs-content .accordion-body p{
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #212129;
  margin-bottom: 15px;
}
.faqs-tabs-content .accordion-body p a{
  font-weight: 500;
  color: var(--secondary);
  transition: all 0.3s;
}
.faqs-tabs-content .accordion-body p a:hover{
  color: var(--primary);
  transition: all 0.3s;
}
.faqs-tabs-content .accordion-body p:last-child{
  margin-bottom: 0;
}
.faqs-tabs-content .accordion-body p strong{
  font-weight: 700;
}
.faqs-tabs-content .accordion-body ul{
  margin-bottom: 15px;
}
.faqs-tabs-content .accordion-body ul:last-child{
  margin-bottom: 0px;
}
.faqs-tabs-content .accordion-body li{
  padding: 0 0 0 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  border: 0;
  margin-bottom: 10px;
}
.faqs-tabs-content .accordion-body li:last-child{
  margin-bottom: 0px;
}
.faqs-tabs-content .accordion-body li:after{
  top: 10px;
}


/*--==== Checkout Page Style Start ====--*/
.checkout-page-section {
  width: 100%;
  padding: 100px 0;
  overflow: initial;
}
.checkout-login-card{
  width: 100%;
  background: #EAF8FB;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
}
.checkout-login-card .lr-form-card .form-field{
  margin-bottom: 0px;
}
.checkout-title{
  width: 100%;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.checkout-title h5{
  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 0px;
}
.checkout-title p{
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #212129;
  margin-bottom: 0px;
}
.checkout-title p a{
  font-weight: 500;
  color: var(--secondary);
  transition: all 0.3s;
}
.checkout-title p a:hover{
  color: var(--primary);
  transition: all 0.3s;
}
.checkout-otp {
  width: 100%;
  display: flex;
  gap: 40px;
  align-items: center;
}
.checkout-login-card .verification-code-inputs{
  width: auto;
  margin-bottom: 0px;
  justify-content: flex-start;
  gap: 20px;
}
.checkout-login-card .lr-heading{
  text-align: left;
  margin-top: 25px;
  margin-bottom: 15px;
}
.checkout-login-card .lr-heading h5{
  font-size: 18px;
  line-height: 28px;
}
.checkout-login-card .lr-heading p{
  font-size: 14px;
  line-height: 24px;
  margin: 2px 0 0 0;
}
.checkout-login-details{
  width: 100%;
}
.checkout-login-details h6{
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #212129;
  margin-bottom: 8px;
}
.checkout-login-details h6 span{
  font-weight: 600;
  color: var(--primary);
  display: inline-block;
  min-width: 145px;
  padding-right: 15px;
  position: relative;
}
.checkout-login-details h6 span:before{
  position: absolute;
  top: 0;
  right: 5px;
  content: ":";
  color: var(--primary);
}
.checkout-login-details h6:last-child{
  margin-bottom: 0px;
}
.coupon-code-field {
  width: 100%;
  margin: 0;
  position: relative;
}
.coupon-code-field .coupon-code-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  border: 0;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 600;
  line-height: 26px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 10px;
  transition: all 0.3s;
}
.coupon-code-field .coupon-code-btn:hover{
  background: var(--secondary);
  transition: all 0.3s;
}
.coupon-code-field .coupon-code-btn:focus-visible {
  outline: none;
}
.coupon-code-field.form-field .form-control{
  padding-right: 110px;
}


/*--==== Privacy Policy Page Style Start ====--*/
.privacy-policy-section{
  width: 100%;
  padding: 100px 0;
}
.privacy-policy-content{
  width: 100%;
}
.privacy-policy-content h3{
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}
.privacy-policy-content h3 span{
  color: var(--secondary);
}
.privacy-policy-content p{
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #212129;
  margin-bottom: 15px;
}
.privacy-policy-content h2{
  font-size: 40px;
  font-weight: 600;
  line-height: 50px;
  color: var(--primary);
  margin-bottom: 20px;
  margin-top: 30px;
}
.privacy-policy-content h4{
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}
.privacy-policy-content h5{
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  color: var(--primary);
  margin-bottom: 20px;
}
.privacy-policy-content ul{
  width: 100%;
  margin-bottom: 20px;
}
.privacy-policy-content li{
  width: 100%;
  position: relative;
  padding: 0 0 0 20px;
  color: #002226;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 15px;
}
.privacy-policy-content li:last-child{
  margin-bottom: 0px;
}
.privacy-policy-content li:after {
  position: absolute;
  content: "";
  top: 9px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
}
.privacy-policy-content li strong{
  font-weight: 600;
}


/*--====  Courses Page Style Start ====--*/
.level-filter {
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
  transition: all 0.3s ease;
  /*margin: 0 5px;*/
  /*padding: 10px 20px;*/
  border-radius: 25px;
  font-weight: 500;
}

.level-filter:hover,
.level-filter.active {
  background-color: var(--secondary);
  color: white;
  border-color:var(--primary)!important;
}

.filter-buttons{
  margin-top: 30px;
}
/*--==== My Courses Page Style Start ====--*/

.mycourses-list .row{
  gap: 25px 0;
}
.mycourses-list .courses-grid-view .courses-card-img {
    width: 250px;
}
.mycourses-list .courses-grid-view .courses-card-btn a {
  padding: 10px 25px;
  width: auto;
}
.mycourses-list .courses-grid-view .courses-card-content .course-info {
  width: auto;
  margin-bottom: 20px;
}
.mycourses-list .courses-card-content .course-info-card {
  flex: none;
}
.mycourses-list .courses-card-content p{
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #212129;
  margin-bottom: 15px;
}
.mycourses-list .courses-card-content p span{
  color: var(--primary);
  font-weight: 600;
}


/*--==== My Courses Details Page Style Start ====--*/
.mycourse-details-section{
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  padding: 0;
  position: relative;
}
.mycourse-details-header{
  width: 100%;
  padding: 12px 20px;
  background: var(--primary);
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
.mycourse-back{
  width: 480px;
}
.mycourse-back .btn-custom{
  background: #fff;
  color: var(--primary);
  padding: 10px 20px 10px 10px;
  position: relative;
  top: -3px;
}
.mycourse-back .btn-custom:hover{
  background: var(--secondary);
  color: #fff;
}
.mycourse-back .btn-custom i {
  font-size: 28px;
  line-height: 20px;
  position: relative;
  top: 5px;
}
.mycourse-head-content{
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
}
.mycourse-head-content h4{
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: #fff;
  margin-bottom: 0px;
}
.mycourse-head-content h5{
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #fff;
  margin-bottom: 0px;
}
.mycourse-head-content h5 span{
  font-weight: 600;
}
.mycourse-details-section .footer-copyright {
  padding: 10px 10px;
}
.mycourse-details-content{
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: calc(100vh - 50px);
  padding: 75px 20px 20px 20px;
}
.mycourse-detail-list{
  width: 480px;
  height: 100%;
  padding: 15px;
  border-radius: 15px;
  background: #EAF8FB;
}
.mycourse-detail-list .cd-list-in{
  width: 100%;
  height: 100%;
  padding-right: 8px;
  overflow-y: scroll; 
  scrollbar-width: thin; 
  scrollbar-color: var(--primary) #0000001A;
}
.mycourse-detail-list .cd-list-in::-webkit-scrollbar {
  width: 0.5rem;
}
.mycourse-detail-list .cd-list-in::-webkit-scrollbar-track {
  background: #0000001A;
}
.mycourse-detail-list .cd-list-in::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 1rem;
}
.mycourse-detail-list h3{
  width: 100%;
}
.cd-list-card{
  width: 100%;
  margin-bottom: 15px;
  padding: 5px;
  border-radius: 12px;
  background: #fff;
}
.cd-list-card:last-child{
  margin-bottom: 0px;
}
.cd-list-card h3{
  width: 100%;
  padding: 5px 5px;
  margin-bottom: 0px;
}
.cd-list-card h3 .accordion-button{
  padding: 0 35px 0 0;
  color: var(--primary);
  font-size: 17px;
  font-weight: 600;
  line-height: 27px;
  background: transparent !important;
}
.cd-list-card h3 .accordion-button:not(.collapsed),
.cd-list-card h3 .accordion-button:focus{
  box-shadow: none;
}
.cd-list-card h3 .accordion-button::after {
  position: absolute;
  right: 5px;
  background: transparent;
  content: "\F4FE";
  font-family: bootstrap-icons !important;
  color: #002226;
  font-size: 35px;
  font-weight: 400;
  margin: 0 0 0 0;
  transform: none;
  width: 20px;
  height: 20px;
  line-height: 21px;
  text-indent: -0.2em;
}
.cd-list-card h3 .accordion-button:not(.collapsed)::after {
  content: "\F63B";
  font-size: 24px;
  text-indent: -0.05em;
}
.cd-list-card h3 span{
  width: 30px;
  height: 30px;
  display: inline-flex;
  flex: none;
  background: var(--primary);
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  align-items: center;
  justify-content: center;
}
.cd-list-card ul{
  width: 100%;
  background: #EAF8FB;
  border-radius: 10px;
  margin-top: 5px;
  overflow: hidden;
}
.cd-list-card li a{
  width: 100%;
  display: inline-block;
  padding: 10px 10px 10px 45px;
  border-bottom: 1px solid #ddebef;
  color: #002226;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  position: relative;
}
.cd-list-card li.active a{
  background: var(--secondary);
  color: #fff;
}
.cd-list-card li:last-child a{
  border-bottom: 0px;
}
.cd-list-card li a:after{
  position: absolute;
  content: "";
  top: 14px;
  left: 18px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid var(--primary);
}
.cd-list-card li.active a:after{
  border: 2px solid #fff;
}
.cd-list-card li a:before{
  position: absolute;
  content: "";
  top: 19.1px;
  left: 23px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
}
.cd-list-card li.active a:before{
  opacity: 1;
}
.mycourse-detail-video{
  flex: 1;
  padding: 0 80px;
}
.mycourse-detail-video h2{
  font-size: 28px;
  font-weight: 600;
  line-height: 38px;
  color: var(--primary);
  width: 100%;
  margin-bottom: 10px;
}
.cd-video-in{
  width: 100%;
  padding: 10px;
  border-radius: 15px;
  background: #EAF8FB;
}
.cd-video-card{
  width: 100%;
  height: auto;
  padding-top: 48.4442%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.cd-video-in video{
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}


/*--==== Transaction History Page Style Start ====--*/
.transaction-history-card{
  width: 100%;
  background: #EAF8FB;
  border-radius: 15px;
  padding: 15px;
  transition: all 0.3s ease;
}
.transaction-history-card:hover {
  transition: all 0.3s ease;
  box-shadow: 8px 8px 0px 0px var(--secondary);
}
.transaction-history-head{
  width: 100%;
  background: var(--secondary);
  border-radius: 10px;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 20px;
}
.th-head-content h6{
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 0;
}
.th-head-content h5{
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  line-height: 27px;
  margin-bottom: 0px;
}
.transaction-history-card .courses-card{
  width: 100%;
  background: #EAF8FB;
  border-radius: 0px;
  padding: 0px;
  box-shadow: none !important;
}









