
:root {
  --primary-font: 'Montserrat', sans-serif;
  --primary-color: #00A6DB;
  --primary-lt-color: #F59736;
  --primary-t-color: #081C7C;
  --tp-border-primary: #00715d;
  --secondary-color: #75B70E;
  --secondary-lt-color: #E8F3FE;
  --secondary-alt-color: #47e3e3;
  --secondary-d-color: #C2AFF0;
  --secondary-t-color: #9191E9;
  --tritary-color: #3498db;
  --tritary-d-color: #a4e043;
  --white-color: #fff;
  --black-color: #000;
  --grey-color: #444;
  --grey-lt-color: #fcfaf7;
  --lt-grey-color: #283734;
  --tp-text-body: #333333;
  --tp-grey-3: #f4f9f8;
  --font-color: #171c1e;
  --font-lt-color: #444444;
  --font-sec-color: #061135;
  --font-awesome: "FontAwesome Pro";
  --font-sm-size: 16px;
  --font-size: 18px;
  --font-lg-size: 24px;
  --font-xl-size: 36px;
  --font-xxl-size: 48px;
  --line-height: 1.5;
  --line-lg-height: 21px;
  --line-xl-height: 24px;
  --line-xxl-height: 36px;
  --font-thin: 100;
  --font-xlt: 200;
  --font-lt: 300;
  --font-reg: 400;
  --font-med: 500;
  --font-sbold: 600;
  --font-bold: 700;
  --font-xbold: 800;
  --font-black: 900;
  --bdr-10-radius: 10px;
  --bdr-20-radius: 20px;
  --bdr-30-radius: 30px;
}
.course__thumb img {
  transition: all 0.3s ease-out 0s;
}
.course:hover img {
  transform: scale(1.1);
}
.projects-area-margin {}
.project-active .swiper-slide {
  padding: 20px;
}
.course {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 15px 0px;
  transition: all 600ms ease;
    margin-bottom: 25px;
}
.course:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.course__content {
  position: relative;
  padding: 15px 30px 25px 30px;
  transition: 0.3s;
  text-align: center;
  z-index: 9;
  margin: 0px;
  background-color: rgb(255, 255, 255);
}
.course__content span {
  font-size: 16px;
  color: var(--tp-text-body);
  display: inline-block;
  line-height: 0;
}
.course__content h3 {
  font-size: 18px;
  color: var(--font-color);
  font-weight: 400;
  margin: 0;
  margin-top: 7px;
}
.course__content h3:hover {
  color: #00715d;
}
.course__thumb {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .course__thumb {
    bottom: -23px;
  }
}
.course__thumb img {
  width: 100%;
}
.course__thumb .course-icon {
  position: absolute;
  top: 10%;
  right: 10%;
  transform: translate(-50%, -50%);
  background: var(--white-color);
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  cursor: pointer;
  transform: scale(0);
  transition: all 600ms ease;
  z-index: 999999999;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .course__thumb .course-icon {
    height: 50px;
    width: 50px;
    line-height: 50px;
  }
}
.course__thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(0 166 219 / 50%);
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s;
  -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  z-index: 1;
}
.course:hover .course__thumb::before {
  opacity: 1;
  visibility: visible;
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1);
  transform: perspective(400px) rotateX(0deg) scaleY(1);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}
.course:hover .course__thumb .course-icon {
  visibility: visible;
  transform: scale(1);
  opacity: 1;
  transition-delay: 300ms;
}
.course:hover .course__thumb .course-icon:hover {
  background: #fbd45b;
}
.course:hover .course__content {
  background: var(--white-color);
}
.course__content::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: auto;
  right: 0;
  height: 2px;
  width: 0;
  opacity: 0;
  background-color: var(--primary-t-color);
  transition: 0.3s linear;
}
.course:hover .course__content::before {
  width: 100%;
  left: 0;
  right: auto;
  opacity: 1;
}
.course-img {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 10px;
  margin: 15px 0 15px 0;
  display: block;
    background: #fff;
}
@media (min-width: 992px) {
  .course-img {
    margin-top: -200px;
  }
}
.course-header {
  background: #e56a25;
  padding: 60px 0;
  color: #fff;
}
.course-title {
  color: var(--white-color);
  font-weight: 500;
}
.course-header p {
  color: var(--white-color);
  font-weight: 500;
}
.course-specs {
  padding: 15px 0px 0;
}
.course-specs ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.course-specs ul li {
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.course-specs ul li span {
  font-weight: 500;
}
.course-specs ul li + li {
  border-top: 1px solid #f1f1f1;
}
.course-social {
  background: var(--white-color);
  border: 1px solid #f1f1f1;
  border-radius: 3px;
  display: flex;
  justify-content: space-between;
  padding: 11px 15px;
  align-items: center;
  -moz-column-gap: 12px;
  column-gap: 12px;
}
.social-profile {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.social-profile li a {
  height: 35px;
  width: 35px;
  display: block;
  text-align: center;
  border-radius: 3px;
  line-height: 35px;
  font-size: 15px;
  transition: 0.3s ease-in-out;
  color: var(--primary-t-color);
}
.social-profile li a:hover {
  color: var(--white-color);
  background-color: var(--primary-t-color);
  transform: translateY(-5px);
}
.course-details-area, .projects-area {
  background: #f9f9fa;
  padding: 60px 0;
    z-index: 10;
    position: relative;
}
.course-descp {
  padding: 0px;
}
.mlr {
  margin-left: 175px;
  margin-right: 175px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .mlr {
    margin-left: 90px;
    margin-right: 90px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mlr {
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .mlr {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.accordion {
  margin: 15px 0;
}
.accordion .accordion-item {
  border: none;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: -1px 10px 20px #c5d0d833;
  background: var(--white-color);
  transition: height 225ms cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion .accordion-item button[aria-expanded=true] {}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 0px;
  color: var(--primary-color);
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  outline: none;
}
.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: var(--font-color);
}
.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: var(--font-color);
}
.accordion button .accordion-title {
  padding: 0;
  font-weight: 600;
  line-height: 18px;
}
.accordion button .accordion-title span {
  display: block;
  font-size: 15px;
  font-weight: 400;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 4px;
  width: 22px;
  height: 22px;
  border: 1px solid var(--font-color);
  border-radius: 22px;
  transform: translateY(-50%);
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: var(--font-color);
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: var(--font-color);
}
.accordion button[aria-expanded=true] {
  color: var(--primary-color);
}
.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 100%;
  padding: 0px;
  transition: all 200ms linear;
  will-change: opacity, padding, max-height;
  overflow: hidden;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 200ms linear;
  will-change: opacity, padding, max-height;
  background: var(--white-color);
}
.accordion .accordion-content p {
  font-size: var(--font-size);
  font-weight: 300;
  margin: 0px;
  padding: 0px;
}
.accordion .accordion-content strong, .accordion .accordion-content b {
  font-weight: 700;
}
.accordion .accordion-content ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.accordion .accordion-content ul li {
  padding: 0px 0px 4px 32px;
  position: relative;
}
.accordion .accordion-content ul li:before {
  content: "\f00c";
  font-weight: bold;
  background: var(--secondary-color);
  color: #d9fcde;
  height: 20px;
  width: 20px;
  border-radius: 20px;
  line-height: 20px;
  font-size: 11px;
  text-align: center;
  font-family: var(--font-awesome);
  position: absolute;
  left: 0px;
  top: 5px;
}
    
    