:root {
  --primary-color-dark: #27a74a;
  --primary-color-light: #35d85f;
  --secondary-color-dark: #3d485a;
  --secondary-color-light: #5b5b5b;
  --font-title: 32px;
  --font-regular: 16px;
  --border-radius-main: 6px;
}
* {
  margin: 0;
  padding: 0;
  font-family: "Poppins";
}
.brand-color {
  color: var(--primary-color-dark);
}
.bg-brand {
  background: var(--primary-color-dark);
}
.bg-secondary {
  background: var(--secondary-color-dark) !important;
}
.text-white {
  color: #fff;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-fluid {
  width: 100%;
  height: auto;
}
.btn:hover,
.btn:active {
  background-color: var(--primary-color-dark) !important;
  color: #fff !important;
}
input,
textarea,
select:focus-visible {
  outline: none;
}
.mobile-show {
  display: none !important;
}
.mobile-hide {
  display: block !important;
}
.p-title {
  font-size: var(--font-title);
  font-weight: bold;
  color: var(--secondary-color-dark);
}
.p-content {
  font-size: var(--font-regular);
  color: var(--secondary-color-light);
  font-weight: 400;
}
.container {
  max-width: 1200px;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.mt-grow {
  margin-top: 2.5rem !important;
}
/* Header Section */
header .container {
  max-width: 1400px;
}
.top-header nav {
  justify-content: space-between;
}
.top-header nav .navbar-brand img,
.top-footer .navbar-brand img {
  max-height: 55px;
}
.top-header .navbar-collapse {
  flex-grow: 0;
}
.top-header .navbar-nav {
  gap: 2rem;
}
.top-header nav .nav-link {
  font-size: var(--font-regular);
  color: var(--secondary-color-dark);
  font-weight: 500;
  position: relative;
  padding: 5px 15px;
}
.top-header nav .nav-link.active {
  color: var(--primary-color-dark);
}
.top-header nav .nav-link.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--primary-color-dark);
  position: absolute;
  bottom: 0;
  left: 0;
}
.top-header .btn-brand {
  color: #fff;
  background: var(--primary-color-dark);
  padding: 0.5rem 2rem;
  border-radius: var(--border-radius-main);
}
/* Banner Section*/
/* .banner-section .banner-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
} */
.banner-section .banner-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-right: 3rem;
}
.banner-section .banner-btns a {
  /* flex: 1; */
  padding: 0.5rem 2.5rem;
  border-radius: var(--border-radius-main);
}

/* Course Section */
.courses-section .course-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-main);
  margin-top: 2rem;
  position: relative;
  height: 90%;
}
.course-card .c-image {
  height: 150px;
  width: 100%;
  object-fit: cover;
  border-top-left-radius: var(--border-radius-main);
  border-top-right-radius: var(--border-radius-main);
}
.course-card .c-title {
  color: var(--secondary-color-dark);
  font-size: 18px;
  font-weight: 500;
}
.course-card .c-details {
  margin: 25px 15px;
  text-align: left;
}
.course-card .c-tag {
  font-size: 14px;
  margin-left: 8px;
  padding: 3px 10px;
  background-color: var(--primary-color-dark);
  color: #fff;
  border-radius: var(--border-radius-main);
  position: absolute;
  top: 3px;
  right: 3px;
  font-size: 10px;
}
.course-card .c-details .c-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
.c-details .c-info .c-time {
  font-weight: 500;
  font-size: 12px;
}
.c-details .c-link a {
  font-size: 12px;
}
.courses-section .c-view-wrap h3 {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 5%;
  color: var(--secondary-color-light);
}
.courses-section .c-view-wrap .btn {
  margin-top: 1rem;
  padding: 0.5rem 2rem;
}

/* Process Section*/
.process-section .process-header {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}
.process-section .process-header .p-content {
  letter-spacing: 1px;
}
.process-section .process-steps .p-title {
  font-weight: 500 !important;
}
.process-steps .p-content {
  padding: 1rem 2rem;
  border-left: 1.5px solid #bcbcbc;
  margin: 1rem 2rem;
}

/* Review Section */
.review-section .r-card {
  border: 1px solid rgb(0, 0, 0, 0.05);
  border-radius: var(--border-radius-main);
  padding: 1.5rem;
  min-height: 325px;
}
.r-card .student-info-wrap {
  display: flex;
  justify-content: space-between;
}
.r-card .rating {
  color: #ffc700;
  font-size: 10px;
}
.r-card .rating .disable {
  color: #d4d4d4;
}
.r-card .student-info-wrap .student-detail {
  display: flex;
  gap: 10px;
}
.r-card .student-detail img {
  height: 35px;
  width: 35px !important;
  border-radius: 50%;
  object-fit: cover;
}
.r-card .student-detail .student-info h3 {
  color: var(--primary-color-dark);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}
.r-card .student-detail .student-info p {
  font-size: 14px;
  color: var(--secondary-color-light);
}
#read-more {
  color: var(--primary-color-dark);
  margin-left: 5px;
  text-decoration: none;
}
/* .testimonial .owl-item {
  border-right: 1px solid rgb(0, 0, 0, 0.05);
} */
/* Enroll Section*/
.enroll-section {
  background-image: url("../images/enrool.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}
.enroll-section .e-subtitle {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}
.enroll-section .e-title {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}
.enroll-section .btn {
  padding: 0.5rem 3rem;
}

/* Sign Up Section */
.contact-section .contact-form label {
  width: 100%;
  font-size: 14px;
  color: var(--secondary-color-dark);
  margin-top: 15px;
}
.contact-section .contact-form input,
.contact-section .contact-form select,
.contact-section .contact-form textarea,
.career-section .career-form input {
  margin-top: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  font-size: 14px;
  padding: 10px 15px;
  border-radius: var(--border-radius-main);
}
.contact-section .contact-form .btn-submit,
.career-section .career-form .btn-career {
  background: var(--primary-color-dark);
  color: #fff;
  width: 100%;
  margin-top: 25px;
  padding: 10px 15px;
}

/* Footer Section*/
footer .top-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
footer .left-footer p {
  margin: 8px 0 2px;
}
footer .right-footer ul {
  flex-direction: row;
  gap: 20px;
  justify-content: right;
}
footer .bottom-footer {
  border-top: 1.5px solid #bcbcbc;
}

/* Course Page */
.course-banner .course-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.course-banner .search-course {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
  padding: 10px 15px;
  border-radius: var(--border-radius-main);
  width: 400px;
}
.course-banner .search-course input {
  border: none;
  outline: none;
}
.course-banner .btn-search {
  margin-top: 20px;
  padding: 0.5rem 2rem;
  background: var(--primary-color-dark);
  color: #fff;
}

/*Enroll Modal*/
.enroll-modal .modal-dialog {
  max-width: 700px;
}
.enroll-modal .modal-content {
  border-radius: var(--border-radius-main);
}
.enroll-modal .modal-body {
  padding: 1.5rem;
}
.enroll-modal .btn-close {
  position: absolute;
  right: -15px;
  top: -15px;
  background: #fff;
  border-radius: 50%;
  color: #000;
  padding: 10px;
  opacity: 1;
  outline: none;
  font-weight: 600;
}
.enroll-modal .enroll-form label {
  width: 100%;
  font-size: 14px;
  color: var(--secondary-color-dark);
  margin-top: 15px;
}
.enroll-modal .enroll-form input,
.enroll-modal .enroll-form select,
.enroll-modal .enroll-form textarea {
  margin-top: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  font-size: 14px;
  padding: 10px 15px;
  border-radius: var(--border-radius-main);
}
.enroll-modal .enroll-form .btn-enroll {
  background: var(--primary-color-dark);
  color: #fff;
  width: 100%;
  margin-top: 8px;
  padding: 0.5rem 2rem;
}

/*About Page*/
.about-section .about-content {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: var(--border-radius-main);
}
.about-section .about-content .about-title,
.about-section .our-services .service-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-color-dark);
}
.about-section .about-content .about-info,
.about-section .our-services .service-info p {
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary-color-light);
}
.about-section .about-image {
  width: 100%;
  height: 100%;
  padding: 0 20px;
}
.about-section .vision {
  margin-top: 2rem;
  display: flex;
  align-items: center;
}
.about-section .our-services .service-info .service-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: var(--secondary-color-light);
  margin-bottom: 0;
}
.our-services .services-list .service-card {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-main);
  margin-top: 2rem;
}
.our-services .services-list .service-card .img {
  width: 300px;
  height: 300px;
}

.career-section .career-form form {
  max-width: 500px;
}

/*Contact Banner*/
.contact-banner {
  background-image: url(../images/contact-banner.png);
}
.contact-info {
  margin: 0 2rem;
}
.contact-info .p-title {
  font-size: 24px;
}
.contact-info p {
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary-color-light);
  margin-bottom: 0;
}

/* Single Course Page*/
.single-course-banner {
  background-size: cover;
  padding: 4rem 0;
  background-image: url(../images/course.png);
}
.single-course-banner .c-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.c-content .course-btn {
  width: 250px;
}
.c-content .course-btn .btn-download {
  gap: 10px;
  width: 100%;
  color: var(--primary-color-dark);
  border-radius: var(--border-radius-main);
  border: 1px solid var(--primary-color-dark);
}
.c-content .course-btn .btn-enroll {
  width: 100%;
  margin-top: 15px;
  padding: 0.5rem 2rem;
  color: #fff;
  border-radius: var(--border-radius-main);
  background-color: var(--primary-color-dark);
}
.c-info .course-tag {
  display: flex;
  gap: 8px;
  margin-top: 1rem;
}
.c-info .course-tag .tag-list {
  background-color: var(--primary-color-dark);
  color: #fff;
  margin-bottom: 0;
  padding: 5px 10px;
  border-radius: var(--border-radius-main);
}
.single-course-banner .course-objective {
  margin-top: 1rem;
}
.single-course-banner .course-objective .objective-list {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  margin-bottom: 10px;
}
.course-overview .we-learn h3 {
  font-weight: 700;
}
.course-overview .course-objective h4 {
  font-weight: 500;
}
.course-overview .we-learn h3,
.course-overview .course-objective h4 {
  margin-bottom: 20px;
}
.course-overview .we-learn {
  margin-right: 1rem;
}
.course-details .course-objective .objective-list {
  gap: 10px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.course-details .course-info h2 {
  font-size: 20px;
  font-weight: 700;
}
.course-details .course-info h3 {
  font-size: 20px;
  font-weight: 500;
}

.course-info .nav {
  border-top: 5px solid #007921;
  padding-top: 15px;
}
.course-info .tab-content {
  margin-top: 20px;
  border: 1px dashed #b6e7c3;
  padding: 2rem;
  border-radius: var(--border-radius-main);
}
.course-info .tab-content h5 {
  font-size: 16px;
  font-weight: 700;
}
.course-info .tab-content .list-group-item {
  margin: 0;
  padding: 0;
  margin-bottom: 1rem;
  border: none;
  border-bottom: 2px solid #e2e3e3;
  border-radius: 0;
}
.course-info .tab-content ul {
  padding-left: 1rem;
  font-size: 14px;
  color: #5b5b5b;
}
.course-info ul#weekTabs li a {
  font-size: 16px;
  color: #27a74a;
  padding: 0.5rem 2rem;
  width: fit-content;
  font-weight: 700;
  margin-bottom: 10px;
  border: 1px solid #27a74a;
  border-radius: var(--border-radius-main);
  cursor: pointer;
}
.course-info ul#weekTabs li a.active {
  color: #fff;
  background-color: #27a74a;
}

/* Toaster*/
.toast {
  z-index: 1060;
}
.toast.success {
  background: var(--primary-color-dark);
  color: #fff;
  top: 0;
  right: 0;
  padding: 0.1rem 1rem;
}
.contact-result,
.enroll-result {
  background-color: red;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-main);
  margin: 0.5rem 0;
}

/* FQAs Lists*/
.faq-questions h4 {
  font-size: 20px;
  font-weight: 500;
}
.faq-questions .faq-lists .accordion-button {
  background-color: #ededed;
  color: var(--secondary-color-light);
}
.faq-questions .faq-lists .accordion-button:focus {
  outline: none;
  box-shadow: none;
}
.faq-questions .faq-lists .accordion-button:not(.collapsed) {
  border: 2px solid rgb(0, 0, 0, 0.7);
  font-weight: 500;
  color: var(--secondary-color-dark);
}

/*Partner Section*/
.partners-list .partner-slider img.partner-image {
  height: 120px !important;
  width: 150px !important;
  object-fit: contain;
}
