@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
body {
  font-family: "Montserrat", sans-serif;
}

.instructor-1 {
  padding: 40px 0 80px 0;
}
.instructor-1 .instructor-about {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}
.instructor-1 .instructor-about .instructor-about-heading {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.instructor-1 .instructor-about .instructor-about-heading .pro-heading {
  display: flex;
  align-items: center;
  gap: 15px;
}
.instructor-1 .instructor-about .instructor-about-heading .pro-heading .pro-img {
  flex-shrink: 0;
}
.instructor-1 .instructor-about .instructor-about-heading .pro-heading .pro-img img {
  border: 2px solid #939393;
  box-shadow: 0 0 10px rgba(147, 147, 147, 0.2);
}
.instructor-1 .instructor-about .instructor-about-heading .pro-heading .name a h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #010051;
  margin-bottom: 5px;
  transition: color 0.2s ease;
}
.instructor-1 .instructor-about .instructor-about-heading .pro-heading .name a h4:hover {
  color: #939393;
}
.instructor-1 .instructor-about .instructor-about-heading .pro-heading .name p {
  font-size: 1rem;
  color: #56588a;
  margin: 0;
}
.instructor-1 .instructor-about .instructor-about-heading .rating h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #010051;
  margin-bottom: 5px;
}
.instructor-1 .instructor-about .instructor-about-heading .rating .rating-point {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}
.instructor-1 .instructor-about .instructor-about-heading .rating .rating-point p {
  font-size: 1rem;
  font-weight: 600;
  color: #ffb800;
  margin: 0;
}
.instructor-1 .instructor-about .instructor-about-heading .rating .rating-point i.fa-star {
  color: #ffb800;
  font-size: 1rem;
}
.instructor-1 .instructor-about .instructor-about-heading .rating .rating-point p:last-child {
  font-weight: 400;
  color: #56588a;
  font-size: 0.9rem;
}
.instructor-1 .instructor-about .about-text {
  margin-bottom: 25px;
}
.instructor-1 .instructor-about .about-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #010051;
  margin-bottom: 15px;
}
.instructor-1 .instructor-about .about-text p {
  color: #56588a;
  line-height: 1.8;
}
.instructor-1 .instructor-about .about-text.teachers ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}
.instructor-1 .instructor-about .about-text.teachers ul li a {
  display: inline-block;
  background: hsl(0, 0%, 102.6470588235%);
  color: #939393;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease;
}
.instructor-1 .instructor-about .about-text.teachers ul li a:hover {
  background: #939393;
  color: #fff;
}
.instructor-1 .instructor-about .skill {
  margin-top: 30px;
}
.instructor-1 .instructor-about .skill h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #010051;
  margin-bottom: 15px;
}
.instructor-1 .instructor-about .skill .skill-point {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}
.instructor-1 .instructor-about .skill .skill-point .skill-point-1 {
  text-align: center;
  width: 33%;
}
.instructor-1 .instructor-about .skill .skill-point .skill-point-1 h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #939393;
  margin-bottom: 5px;
}
.instructor-1 .instructor-about .skill .skill-point .skill-point-1 h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: #56588a;
  margin: 0;
}
.instructor-1 .instructor-about .courses.grid-view-body {
  padding: 40px 0 80px 0;
  background-color: #f8f9fa;
}
.instructor-1 .instructor-about .courses.grid-view-body h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #010051;
  margin-bottom: 30px;
  text-align: center;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 25px;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-card-image:hover img {
  transform: scale(1.05);
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-card-image .courses-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-card-image .courses-icon i {
  color: #56588a;
  font-size: 14px;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-card-image .courses-icon.red-heart i {
  color: #ff2600;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-card-image .courses-card-image-text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0;
  margin: 10px 0;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-card-image .courses-card-image-text h3 {
  background: #e74c3c;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 15px 5px 10px;
  margin: 0;
  line-height: 1;
  display: inline-block;
  position: relative;
  border-radius: 0 4px 0 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-card-image .courses-card-image-text h3::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgb(190.9931506849, 39.1780821918, 23.5068493151);
  clear: both;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-card-image .courses-card-image-text h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 0 0 10px;
  border-color: transparent transparent transparent #e74c3c;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-text {
  padding: 15px;
  display: flex;
  flex-direction: column;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-text h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #010051;
  margin-bottom: 5px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.8em;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-text .review-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-text .review-icon .review-icon-star {
  display: flex;
  align-items: center;
  gap: 5px;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-text .review-icon .review-icon-star p {
  margin: 0;
  font-size: 14px;
  color: #56588a;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-text .review-icon .review-icon-star i.fa-solid.fa-star {
  font-size: 14px;
  color: #ccc;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-text .review-icon .review-icon-star i.fa-solid.fa-star.filled {
  color: #ffb800;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-text .review-icon .review-btn .compare-img {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #939393;
  cursor: pointer;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-text .review-icon .review-btn .compare-img img {
  width: 14px;
  filter: none;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-text p.ellipsis-line-2 {
  font-size: 14px;
  color: #56588a;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px !important;
  min-height: 2.8em;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-text .courses-price-border {
  border-top: 1px dashed #e6e6e6;
  padding-top: 10px;
  margin-top: auto;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-text .courses-price-border .courses-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-text .courses-price-border .courses-price .courses-price-left {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-text .courses-price-border .courses-price .courses-price-left h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #e74c3c;
  margin: 0;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-text .courses-price-border .courses-price .courses-price-left p {
  font-size: 14px;
  color: #56588a;
  text-decoration: line-through;
  margin: 0;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-text .courses-price-border .courses-price .courses-price-right {
  display: flex;
  align-items: center;
  gap: 5px;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-text .courses-price-border .courses-price .courses-price-right i {
  font-size: 14px;
  color: #939393;
}
.instructor-1 .instructor-about .courses.grid-view-body .courses-card .courses-card-body .courses-text .courses-price-border .courses-price .courses-price-right p {
  font-size: 13px;
  color: #56588a;
}
.instructor-1 .instructor-right {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.instructor-1 .instructor-right .instructon-contact {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e6e6e6;
}
.instructor-1 .instructor-right .instructon-contact .instructon-icon {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}
.instructor-1 .instructor-right .instructon-contact .instructon-icon i {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: #939393;
  margin-top: 5px;
}
.instructor-1 .instructor-right .instructon-contact .instructon-icon .instructon-number h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #010051;
  margin-bottom: 2px;
}
.instructor-1 .instructor-right .instructon-contact .instructon-icon .instructon-number p {
  font-size: 0.95rem;
  color: #56588a;
  margin: 0;
  word-break: break-all;
}
.instructor-1 .instructor-right .social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
  color: #010051;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 0.8rem;
  margin: 3px 0;
  transition: all 0.2s ease;
}
.instructor-1 .instructor-right .social-btn i {
  margin-right: 5px;
}
.instructor-1 .instructor-right .social-btn:hover {
  background: #939393;
  color: #fff;
}
.instructor-1 .instructor-right .instructor-msg button.btn-primary {
  width: 100%;
  background: #010051;
  border-color: #010051;
  font-weight: 600;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: background 0.2s ease;
}
.instructor-1 .instructor-right .instructor-msg button.btn-primary:hover {
  background: rgb(0.6851851852, 0, 55.5);
  border-color: rgb(0.6851851852, 0, 55.5);
}
.instructor-1 .instructor-right a.einsBtn {
  text-decoration: none;
}
.instructor-1 .instructor-right a.einsBtn span.follow-btn {
  font-weight: 600;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.instructor-1 .instructor-right a.einsBtn span.follow-btn.btn-primary {
  background: #939393;
  border-color: #939393;
  color: #fff;
}
.instructor-1 .instructor-right a.einsBtn span.follow-btn.btn-primary:hover {
  background: rgb(134.25, 134.25, 134.25);
  border-color: rgb(134.25, 134.25, 134.25);
}
.instructor-1 .instructor-right a.einsBtn span.follow-btn.btn-fill {
  background: #f0f0f0;
  border: 1px solid #e6e6e6;
  color: #010051;
}
.instructor-1 .instructor-right a.einsBtn span.follow-btn.btn-fill:hover {
  background: #e6e6e6;
  color: #010051;
}

@media (max-width: 768px) {
  .instructor-1 .instructor-about {
    padding: 20px;
  }
  .instructor-1 .instructor-about .instructor-about-heading .pro-heading .pro-img img {
    height: 80px !important;
  }
  .instructor-1 .instructor-about .instructor-about-heading .pro-heading .name a h4 {
    font-size: 1.3rem;
  }
  .instructor-1 .instructor-about .instructor-about-heading .pro-heading .name p {
    font-size: 0.9rem;
  }
  .instructor-1 .instructor-about .instructor-about-heading .pro-heading .name .ellipsis-line-3 {
    font-size: 14px;
    color: #56588a;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px !important;
    min-height: 2.8em;
  }
  .instructor-1 .instructor-about .instructor-about-heading .rating h4 {
    font-size: 1rem;
  }
  .instructor-1 .instructor-about .instructor-about-heading .rating .rating-point p {
    font-size: 0.9rem;
  }
  .instructor-1 .instructor-about .skill .skill-point {
    flex-wrap: wrap;
  }
  .instructor-1 .instructor-about .skill .skill-point .skill-point-1 {
    width: 50%;
    margin-bottom: 15px;
  }
  .instructor-1 .instructor-about .skill .skill-point .skill-point-1:nth-child(3) {
    margin-bottom: 0;
  }
  .instructor-1 .instructor-right {
    margin-top: 25px;
  }
}

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