@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&family=Kode+Mono:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "Montserrat";
  src: url("./../fonts/Montserrat-VariableFont_wght.ttf");
}
::-webkit-scrollbar {
  width: 10px;
  position: fixed;
}

::-webkit-scrollbar-thumb {
  background-color: #ddd;
  transition: 300ms;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #ccc;
}

::selection {
  background-color: #e1e9fd;
}

html {
  min-height: 100vh;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  transition: 400ms;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: white;
}

wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 11%;
}
@media screen and (max-width: 1265px) {
  wrapper {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 880px) {
  wrapper {
    padding: 0;
  }
  wrapper section {
    padding: 0 1rem;
  }
}
wrapper .title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3em;
  letter-spacing: 0.2px;
  color: #082645;
  text-align: center;
}
wrapper .title b {
  color: #8bad7f;
}
wrapper section.header {
  width: 100%;
  height: 4rem;
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid lightgrey;
}
@media screen and (max-width: 880px) {
  wrapper section.header {
    padding: 0 0.5rem;
  }
}
wrapper section.header a.logo {
  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
  color: black;
}
wrapper section.header a.underlogo {
  all: unset;
  height: 70%;
  display: flex;
  flex-direction: column-reverse;
  cursor: pointer;
  color: #8bad7f;
  margin-left: 0.5rem;
}
wrapper section.header div.searchBar {
  width: 40%;
  display: flex;
  align-items: center;
  position: relative;
  margin-left: auto;
}
wrapper section.header div.searchBar input {
  height: 44px;
  width: 100%;
  border-radius: 10px;
  border: none;
  padding: 0 1rem;
  padding-left: 44px;
  font-size: 1rem;
  font-weight: 400;
  color: black;
  background-color: #e1e9fd;
  outline: none;
}
wrapper section.header div.searchBar input::placeholder {
  color: black;
}
wrapper section.header div.searchBar i {
  font-size: 1rem;
  position: absolute;
  width: 44px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
wrapper section.header .navLink {
  height: 70%;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: black;
  position: relative;
  text-decoration: none;
  margin-left: auto;
  background-color: #8bad7f;
  color: white;
  font-weight: 550;
  border-radius: 10px;
  font-size: 0.8rem;
}
@media screen and (max-width: 1100px) {
  wrapper section.header .navLink.hide-in-mobile {
    display: none;
  }
}
wrapper section.header .navLink .navItem:hover {
  color: white !important;
}
wrapper section.header .navLink:hover {
  color: white !important;
  background-color: #082645;
}
wrapper section.header .navLink .navItem {
  text-decoration: none;
  font-size: 1rem;
  margin: 0 1rem;
  cursor: pointer;
  letter-spacing: 0.3px;
  font-weight: 500;
}
wrapper section.header .navLink .navItem.activeNavItem {
  color: #8bad7f;
}
wrapper section.header .navLink .navItem:hover {
  color: #8bad7f !important;
}
wrapper section.header .navLink .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  aspect-ratio: 1/1;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: red;
  color: white;
  font-weight: 500;
}
wrapper section.nav {
  width: 100%;
  height: 4rem;
  display: flex;
  user-select: none;
  align-items: center;
}
wrapper section.nav .navHam {
  height: 3rem;
  display: none;
  margin-left: 0.5rem;
}
@media screen and (max-width: 1100px) {
  wrapper section.nav .navHam {
    display: block;
  }
}
wrapper section.nav .navHam .line {
  fill: #082645;
  transform-origin: center;
  transition: transform 300ms ease 0ms, opacity 0ms ease 300ms, y 300ms ease 300ms !important;
}
wrapper section.nav .navHam.active .line {
  transition: transform 300ms ease 300ms, opacity 0ms ease 300ms, y 300ms ease 0ms !important;
}
wrapper section.nav .navHam.active .top {
  transform: rotate(45deg);
  y: 22.5;
}
wrapper section.nav .navHam.active .middle {
  opacity: 0;
}
wrapper section.nav .navHam.active .bottom {
  transform: rotate(-45deg);
  y: 22.5;
}
wrapper section.nav .navLink {
  height: 70%;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: black;
  position: relative;
}
@media screen and (max-width: 1100px) {
  wrapper section.nav .navLink.hide-in-mobile {
    display: none;
  }
}
wrapper section.nav .navLink:nth-last-of-type(2) {
  margin-left: auto;
  background-color: #8bad7f;
  color: white;
  font-weight: 550;
  border-radius: 10px;
  font-size: 0.8rem;
}
wrapper section.nav .navLink:nth-last-of-type(2) .navItem:hover {
  color: white !important;
}
wrapper section.nav .navLink:nth-last-of-type(2):hover {
  color: white !important;
  background-color: #082645;
}
wrapper section.nav .navLink:nth-last-of-type(1) {
  font-weight: 700 !important;
}
wrapper section.nav .navLink .navItem {
  text-decoration: none;
  font-size: 1rem;
  margin: 0 1rem;
  cursor: pointer;
  letter-spacing: 0.3px;
  font-weight: 500;
}
wrapper section.nav .navLink .navItem.activeNavItem {
  color: #8bad7f;
}
wrapper section.nav .navLink .navItem:hover {
  color: #8bad7f !important;
}
wrapper section.nav .navLink .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  aspect-ratio: 1/1;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: red;
  color: white;
  font-weight: 500;
}
wrapper section.breadcrumb {
  width: 100%;
  height: 3.5rem;
  display: flex;
  font-size: 0.9rem;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}
wrapper section.breadcrumb i {
  color: rgba(136, 136, 136, 0.5333333333);
  font-size: 12px;
}
wrapper section.breadcrumb a.breadcrumbItem {
  text-decoration: none;
  color: black !important;
  position: relative;
}
wrapper section.breadcrumb a.breadcrumbItem::before {
  content: "";
  height: 1px;
  width: 0%;
  position: absolute;
  left: 0;
  bottom: 0px;
  background-color: rgba(128, 128, 128, 0.5);
  transition: 200ms;
}
wrapper section.breadcrumb a.breadcrumbItem:hover {
  color: #8bad7f;
}
wrapper section.breadcrumb a.breadcrumbItem:hover::before {
  width: 100%;
  background-color: #8bad7f;
}
wrapper section.breadcrumb a.breadcrumbItem:nth-last-of-type(1) {
  color: grey !important;
}
wrapper section.banner {
  user-select: none;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 880px) {
  wrapper section.banner {
    flex-direction: column;
    gap: 2rem;
    padding-top: 4.5rem;
  }
  wrapper section.banner .banner-content {
    width: 100% !important;
    text-align: center;
  }
  wrapper section.banner .banner-content .title {
    width: 100% !important;
  }
  wrapper section.banner .banner-content .description {
    width: 100% !important;
    padding: 0 10%;
  }
  wrapper section.banner .banner-content .buttonGroup {
    width: 100% !important;
  }
  wrapper section.banner .banner-content .buttonGroup a {
    width: 100% !important;
  }
  wrapper section.banner .banner-img {
    display: none;
  }
}
wrapper section.banner .banner-content {
  margin-top: -4rem;
  width: 62%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.3rem;
}
wrapper section.banner .banner-content .title {
  width: 70%;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.3em;
  letter-spacing: 0.2px;
  color: #082645;
  text-align: start;
}
wrapper section.banner .banner-content .title b {
  color: #8bad7f;
}
wrapper section.banner .banner-content .description {
  font-size: 1rem;
  color: black;
  width: 70%;
  font-weight: 400;
  line-height: 1.5rem;
}
wrapper section.banner .banner-content .buttonGroup {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
}
@media screen and (max-width: 660px) {
  wrapper section.banner .banner-content .buttonGroup {
    flex-direction: column;
    gap: 0.5rem;
  }
  wrapper section.banner .banner-content .buttonGroup a {
    width: 100% !important;
  }
}
wrapper section.banner .banner-content .buttonGroup a {
  width: 50%;
}
wrapper section.banner .banner-content .buttonGroup a button {
  width: 100%;
  height: 3rem;
  background-color: #8bad7f;
  color: white;
  font-weight: 550;
  letter-spacing: 0.1px;
  border-radius: 10px;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
}
wrapper section.banner .banner-content .buttonGroup a button:hover {
  color: white !important;
  background-color: #082645 !important;
}
wrapper section.banner .banner-content .buttonGroup a button i {
  padding-right: 0.5rem;
}
wrapper section.banner .banner-content .buttonGroup a button.button-outline {
  background-color: transparent;
  border: 1px solid #082645;
  color: #082645;
}
wrapper section.banner .banner-img {
  width: 38%;
}
wrapper section.banner .banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
wrapper section.overview {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 2rem;
  padding-bottom: 2rem;
  gap: 2.2rem;
}
wrapper section.overview .overviewTitle {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3em;
  letter-spacing: 0.2px;
  color: #082645;
  text-align: center;
}
wrapper section.overview .overviewTitle b {
  color: #8bad7f;
}
wrapper section.overview .overviewContent {
  display: flex;
  align-items: stretch;
  gap: 1.3rem;
}
@media screen and (max-width: 660px) {
  wrapper section.overview .overviewContent {
    flex-direction: column;
  }
}
wrapper section.overview .overviewContent .overviewItem {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
wrapper section.overview .overviewContent .overviewItem .overviewItemIcon {
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: #8bad7f;
}
wrapper section.overview .overviewContent .overviewItem .overviewItemIcon i {
  font-size: 2rem;
  color: white;
}
wrapper section.overview .overviewContent .overviewItem .overviewItemIcon:hover {
  background-color: #082645;
  scale: 1.1;
}
wrapper section.overview .overviewContent .overviewItem .overviewItemIcon:hover i {
  color: white;
}
wrapper section.overview .overviewContent .overviewItem .overviewItemTitle {
  font-size: 1.4rem;
  color: black;
  font-weight: 600;
  line-height: 1.5rem;
  text-align: center !important;
}
wrapper section.overview .overviewContent .overviewItem .overviewItemText {
  font-size: 1rem;
  color: black;
  width: 70%;
  font-weight: 400;
  line-height: 1.5rem;
  text-align: center;
}
wrapper section.specialists {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 5rem;
  gap: 2.2rem;
}
wrapper section.specialists .specialistsTitle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 500px) {
  wrapper section.specialists .specialistsTitle {
    flex-direction: column;
    gap: 1rem;
  }
  wrapper section.specialists .specialistsTitle a {
    padding: 0.5rem 1rem !important;
  }
}
wrapper section.specialists .specialistsTitle .title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3em;
  letter-spacing: 0.2px;
  color: #082645;
  text-align: center;
}
wrapper section.specialists .specialistsTitle .title:hover {
  color: #8bad7f !important;
}
wrapper section.specialists .specialistsTitle a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.3rem;
  padding: 1rem;
  color: black;
  font-weight: 600;
  background-color: #f5f7f8;
  border-radius: 10px;
}
wrapper section.specialists .specialistsTitle a:hover {
  background-color: #eee;
}
wrapper section.specialists .specialistsContent {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
@media screen and (max-width: 960px) {
  wrapper section.specialists .specialistsContent {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  wrapper section.specialists .specialistsContent .specialistItem {
    width: 70% !important;
    aspect-ratio: 1/1 !important;
  }
}
wrapper section.specialists .specialistsContent .specialistItem {
  aspect-ratio: 4/5;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: transparent !important;
  border-radius: 20px;
}
wrapper section.specialists .specialistsContent .specialistItem:hover .specialistPhoto {
  scale: 1.1;
  filter: brightness(100%);
}
wrapper section.specialists .specialistsContent .specialistItem .specialistPhoto {
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 20px;
  filter: brightness(80%);
  user-select: none;
}
wrapper section.specialists .specialistsContent .specialistItem .specialistName {
  width: 100%;
  text-align: center;
  position: absolute;
  color: #082645;
  font-weight: 400;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5rem;
  text-align: center;
  padding: 0.5rem;
  width: calc(100% - 20px);
  height: auto;
  left: 10px;
  bottom: calc(2rem + 25px);
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}
wrapper section.specialists .specialistsContent .specialistItem .specialistDescription {
  position: absolute;
  font-size: 1rem;
  color: white;
  font-weight: 400;
  line-height: 1.5rem;
  text-align: center;
  background-color: rgba(165, 205, 150, 0.5019607843);
  backdrop-filter: blur(10px);
  left: 10px;
  bottom: 10px;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  width: calc(100% - 20px);
}
wrapper section.testBanner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70vh;
  gap: 5rem;
  user-select: none;
}
@media screen and (max-width: 960px) {
  wrapper section.testBanner {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  wrapper section.testBanner .testBanner-image {
    display: none;
  }
  wrapper section.testBanner .testBanner-content {
    align-items: center !important;
  }
  wrapper section.testBanner .testBanner-content .testBanner-title {
    text-align: center;
    width: 100% !important;
  }
  wrapper section.testBanner .testBanner-content .testBanner-description {
    text-align: center;
    width: 100% !important;
    padding: 0 3rem !important;
  }
  wrapper section.testBanner .testBanner-content .button {
    width: 80% !important;
  }
}
wrapper section.testBanner .testBanner-image {
  width: 80%;
  height: 100%;
  object-fit: cover;
  background-position: center;
  background-size: cover;
}
wrapper section.testBanner .testBanner-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.3rem;
}
wrapper section.testBanner .testBanner-content .testBanner-title {
  width: 110%;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.3em;
  letter-spacing: 0.2px;
  color: white;
}
wrapper section.testBanner .testBanner-content .testBanner-title b {
  color: #082645;
}
wrapper section.testBanner .testBanner-content .testBanner-description {
  font-size: 1rem;
  color: white;
  width: 100%;
  font-weight: 400;
  line-height: 1.5rem;
  padding-right: 20%;
}
wrapper section.testBanner .testBanner-content .button {
  width: 50%;
  height: 3rem;
  background-color: white;
  color: black;
  font-weight: 550;
  letter-spacing: 0.1px;
  border-radius: 10px;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
wrapper section.testBanner .testBanner-content .button:hover {
  color: white !important;
  background-color: #082645 !important;
}
wrapper section.courses {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 2rem;
  gap: 2.2rem;
}
@media screen and (max-width: 500px) {
  wrapper section.courses {
    padding-top: 2.5rem;
  }
}
wrapper section.courses .coursesTitle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 500px) {
  wrapper section.courses .coursesTitle {
    flex-direction: column;
    gap: 1rem;
  }
  wrapper section.courses .coursesTitle a {
    padding: 0.5rem 1rem !important;
  }
}
wrapper section.courses .coursesTitle .title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3em;
  letter-spacing: 0.2px;
  color: #082645;
  text-align: center;
}
wrapper section.courses .coursesTitle .title:hover {
  color: #8bad7f !important;
}
wrapper section.courses .coursesTitle a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.3rem;
  padding: 1rem;
  color: black;
  font-weight: 600;
  background-color: #f5f7f8;
  border-radius: 10px;
}
wrapper section.courses .coursesTitle a:hover {
  background-color: #eee;
}
wrapper section.courses .coursesContent {
  height: 450px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
@media screen and (max-width: 960px) {
  wrapper section.courses .coursesContent {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  wrapper section.courses .coursesContent .specialistItem {
    width: 70% !important;
    aspect-ratio: 1/1 !important;
  }
}
wrapper section.courses .coursesContent .courseItem {
  height: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: transparent !important;
  border-radius: 20px;
}
@media screen and (max-width: 960px) {
  wrapper section.courses .coursesContent .courseItem {
    height: 60vh !important;
    width: 85% !important;
    aspect-ratio: 1/1 !important;
  }
}
wrapper section.courses .coursesContent .courseItem:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
wrapper section.courses .coursesContent .courseItem:hover > .courseItemText {
  bottom: 0;
}
wrapper section.courses .coursesContent .courseItem .courseItemPhoto {
  background-position: center;
  background-size: cover;
  height: 100%;
  border-radius: 20px;
}
wrapper section.courses .coursesContent .courseItem .courseItemText {
  width: 100%;
  text-align: center;
  position: absolute;
  color: #082645;
  font-weight: 400;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
  left: 0;
  bottom: calc(-20px - 2.1rem);
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
wrapper section.courses .coursesContent .courseItem .courseItemText .courseItemTextTitle {
  width: 100%;
  text-align: start;
}
wrapper section.courses .coursesContent .courseItem .courseItemText .courseItemTextButton {
  width: 100% !important;
  padding: 0.5rem;
  background-color: #8bad7f;
  color: white;
  text-decoration: none;
  border-radius: 10px;
}
wrapper section.testimonials {
  width: 100%;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
}
@media screen and (max-width: 600px) {
  wrapper section.testimonials {
    height: 70vh !important;
  }
}
wrapper section.testimonials .testimonials-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 735px) {
  wrapper section.testimonials .testimonials-title {
    flex-direction: column;
    gap: 1rem;
  }
  wrapper section.testimonials .testimonials-title a {
    padding: 0.5rem 1rem !important;
  }
}
wrapper section.testimonials .testimonials-title a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.3rem;
  padding: 1rem;
  color: black;
  font-weight: 600;
  background-color: #f5f7f8;
  border-radius: 10px;
}
wrapper section.testimonials .testimonials-title a:hover {
  background-color: #eee;
}
wrapper section.testimonials .testimonial-container {
  width: 100%;
  display: flex;
  align-items: center;
  height: 60vh !important;
  gap: 1rem;
}
wrapper section.testimonials .testimonial-container #previousButton, wrapper section.testimonials .testimonial-container #nextButton {
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid black;
}
@media screen and (max-width: 600px) {
  wrapper section.testimonials .testimonial-container #previousButton, wrapper section.testimonials .testimonial-container #nextButton {
    display: none;
  }
}
wrapper section.testimonials .testimonial-container #previousButton i, wrapper section.testimonials .testimonial-container #nextButton i {
  font-size: 1.3rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out !important;
}
wrapper section.testimonials .testimonial-container #previousButton:hover, wrapper section.testimonials .testimonial-container #nextButton:hover {
  background-color: #082645;
  color: white;
  border-color: #082645;
}
wrapper section.testimonials .testimonial-container .review-box {
  flex-grow: 1;
  height: 100%;
  width: 100%;
  position: relative;
}
wrapper section.testimonials .testimonial-container .review-box .review {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #e1e9fd !important;
  padding: 2rem 3rem;
  height: 100%;
  border-radius: calc(1rem + 30px);
  opacity: 0;
  position: absolute;
}
@media screen and (max-width: 700px) {
  wrapper section.testimonials .testimonial-container .review-box .review {
    padding: 2rem 1rem;
  }
}
@media screen and (max-width: 640px) {
  wrapper section.testimonials .testimonial-container .review-box .review svg {
    display: none;
  }
  wrapper section.testimonials .testimonial-container .review-box .review .review-user {
    display: none !important;
  }
}
wrapper section.testimonials .testimonial-container .review-box .review.active {
  opacity: 1 !important;
}
wrapper section.testimonials .testimonial-container .review-box .review .review-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 100%;
}
wrapper section.testimonials .testimonial-container .review-box .review .review-user img {
  height: 80%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
wrapper section.testimonials .testimonial-container .review-box .review .review-text {
  flex-grow: 1;
  gap: 1rem;
  height: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
wrapper section.testimonials .testimonial-container .review-box .review .review-text svg {
  filter: brightness(40%);
  width: 60px;
  height: 60px;
}
wrapper section.testimonials .testimonial-container .review-box .review .review-text .text {
  font-size: 1.3rem;
  font-weight: 500;
  color: #082645;
  line-height: 2rem;
  overflow-y: scroll;
  height: 50%;
  padding: 1rem 0;
  flex-grow: 1;
}
wrapper section.testimonials .testimonial-container .review-box .review .review-text .sender::before {
  content: "-";
}
wrapper section.testimonials .pagination {
  width: 170px;
  height: 10px;
  left: 50%;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 500;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  wrapper section.testimonials .pagination {
    width: calc(170px + 5rem + 20px);
  }
}
wrapper section.testimonials .pagination #pagination-circle {
  height: 10px !important;
  width: 50px !important;
  border-radius: 5px;
  background-color: #e1e9fd;
  transition: 1s;
}
wrapper section.testimonials .pagination .active-pagination {
  width: 20px !important;
  background-color: #8bad7f !important;
}
wrapper section.testimonials .pagination #nextButton, wrapper section.testimonials .pagination #previousButton {
  display: none;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid black;
}
@media screen and (max-width: 600px) {
  wrapper section.testimonials .pagination #nextButton, wrapper section.testimonials .pagination #previousButton {
    display: flex !important;
  }
}
wrapper section.testimonials .pagination #nextButton i, wrapper section.testimonials .pagination #previousButton i {
  font-size: 1.3rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out !important;
}
wrapper section.testimonials .pagination #nextButton:hover, wrapper section.testimonials .pagination #previousButton:hover {
  background-color: #082645;
  color: white;
  border-color: #082645;
}
wrapper section.instructorBanner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70vh;
  gap: 5rem;
  user-select: none;
}
@media screen and (max-width: 960px) {
  wrapper section.instructorBanner {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  wrapper section.instructorBanner .instructorBanner-image {
    display: none;
  }
  wrapper section.instructorBanner .instructorBanner-content {
    align-items: center !important;
  }
  wrapper section.instructorBanner .instructorBanner-content .instructorBanner-title {
    text-align: center;
    width: 100% !important;
    font-size: 2rem !important;
  }
  wrapper section.instructorBanner .instructorBanner-content .instructorBanner-description {
    text-align: center;
    width: 100% !important;
    padding: 0 3rem !important;
  }
  wrapper section.instructorBanner .instructorBanner-content .button {
    width: 80% !important;
  }
}
wrapper section.instructorBanner .instructorBanner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center;
  background-size: cover;
}
wrapper section.instructorBanner .instructorBanner-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.6rem;
}
wrapper section.instructorBanner .instructorBanner-content .instructorBanner-title {
  width: 100%;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.3em;
  letter-spacing: 0.2px;
  color: black;
}
wrapper section.instructorBanner .instructorBanner-content .instructorBanner-title b {
  color: #8bad7f;
}
wrapper section.instructorBanner .instructorBanner-content .instructorBanner-description {
  font-size: 1rem;
  color: black;
  width: 100%;
  font-weight: 400;
  line-height: 1.5rem;
  padding-right: 20%;
}
wrapper section.instructorBanner .instructorBanner-content .button {
  width: 50%;
  height: 3rem;
  background-color: #8bad7f;
  color: white;
  font-weight: 550;
  letter-spacing: 0.1px;
  border-radius: 10px;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
wrapper section.instructorBanner .instructorBanner-content .button:hover {
  color: white !important;
  background-color: #082645 !important;
}
wrapper section.footer {
  margin-top: auto;
  top: 100%;
  width: 120% !important;
  display: flex;
  min-height: fit-content;
  justify-content: space-between;
  padding: 2rem 1rem !important;
  user-select: none;
  gap: 2rem;
}
wrapper section.footer .footerLogo {
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
wrapper section.footer .footerLogo img {
  height: 2rem;
  aspect-ratio: 1/1;
}
wrapper section.footer .footerWidgets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 950px) {
  wrapper section.footer .footerWidgets {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  wrapper section.footer .footerWidgets .footerWidgetCol .footerWidgetTitle {
    font-size: 1.2rem !important;
  }
  wrapper section.footer .footerWidgets .footerWidgetCol .footerWidget {
    margin-left: 1rem;
    font-size: 1.2rem !important;
  }
}
@media screen and (max-width: 565px) {
  wrapper section.footer .footerWidgets {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    width: 100%;
  }
  wrapper section.footer .footerWidgets .footerWidgetTitle {
    margin-left: 1rem;
  }
  wrapper section.footer .footerWidgets .footerWidget {
    margin-left: 2rem;
  }
}
wrapper section.footer .footerWidgets .footerWidgetCol {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
wrapper section.footer .footerWidgets .footerWidgetCol .footerWidgetTitle {
  font-size: 0.8rem;
  font-weight: 800;
  color: black;
}
wrapper section.footer .footerWidgets .footerWidgetCol .footerWidget {
  font-size: 0.8rem;
  text-decoration: none;
  color: black;
}
wrapper section.footer .footerWidgets .footerWidgetCol .footerWidget:hover {
  text-decoration: underline;
}
@media screen and (max-width: 765px) {
  wrapper section.footer {
    justify-content: space-around;
    flex-direction: column;
  }
}
wrapper section.legalFooter {
  font-size: 1rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  position: sticky;
  top: 100%;
  text-align: center;
}
wrapper.footer-wrapper {
  margin-top: auto;
}

.offcanvas {
  transition: all 0.5s ease;
  position: fixed;
  height: 100%;
  display: flex;
  flex-direction: column;
  top: 0;
  left: 100%;
  z-index: 99;
  padding: 1rem;
  padding-top: 2rem;
  gap: 0.7rem;
  background-color: white;
  box-shadow: none;
}
.offcanvas a {
  text-decoration: none;
}
.offcanvas.show {
  box-shadow: 0 0 10000px 10000px rgba(0, 0, 0, 0.5) !important;
  left: auto !important;
  right: 0 !important;
}

wrapper-temp {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 0 11%;
}
wrapper-temp.smaller {
  padding: 0 16%;
  flex-grow: 1;
}
wrapper-temp section.titleWrapper {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  height: 6rem;
  position: relative;
}
wrapper-temp section.titleWrapper .button_group {
  position: absolute;
  top: 50%;
  right: 0px;
  display: flex;
  gap: 10px;
  height: 45px;
  transform: translateY(-50%);
}
wrapper-temp section.titleWrapper .button_group button {
  height: 45px;
  width: max-content;
  background-color: #8bad7f;
  color: white;
  font-weight: 550;
  letter-spacing: 0.1px;
  border-radius: 10px;
  border: none;
  font-size: 0.9rem;
  padding: 0 1rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
wrapper-temp section.titleWrapper .button_group button:hover {
  color: white !important;
  background-color: #082645 !important;
}
wrapper-temp section.reviewBanner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70vh;
  gap: 5rem;
  user-select: none;
  margin: 2rem 0;
}
wrapper-temp section.reviewBanner .reviewBanner-image {
  width: 80%;
  height: 100%;
  object-fit: cover;
  background-position: center;
  background-size: cover;
}
wrapper-temp section.reviewBanner .reviewBanner-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.3rem;
}
wrapper-temp section.reviewBanner .reviewBanner-content .reviewBanner-title {
  width: 110%;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.3em;
  letter-spacing: 0.2px;
}
wrapper-temp section.reviewBanner .reviewBanner-content .reviewBanner-title b {
  color: #8bad7f;
}
wrapper-temp section.reviewBanner .reviewBanner-content .reviewBanner-description {
  font-size: 1rem;
  width: 100%;
  font-weight: 400;
  line-height: 1.5rem;
  padding-right: 20%;
}
wrapper-temp section.reviewBanner .reviewBanner-content .button-group {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
}
wrapper-temp section.reviewBanner .reviewBanner-content .button-group a {
  width: 50%;
}
wrapper-temp section.reviewBanner .reviewBanner-content .button-group a button {
  width: 100%;
  height: 3rem;
  background-color: #8bad7f;
  color: white;
  font-weight: 550;
  letter-spacing: 0.1px;
  border-radius: 10px;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
}
wrapper-temp section.reviewBanner .reviewBanner-content .button-group a button:hover {
  color: white !important;
  background-color: #082645 !important;
}
wrapper-temp section.reviewBanner .reviewBanner-content .button-group a button i {
  padding-right: 0.5rem;
}
wrapper-temp section.reviewBanner .reviewBanner-content .button-group a button.button-outline {
  background-color: transparent;
  border: 1px solid #082645;
  color: #082645;
}
wrapper-temp section.reviews {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 2rem;
  padding-bottom: 2rem;
  gap: 2.2rem;
}
wrapper-temp section.reviews .reviewItem {
  width: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: url("./../src/bg.svg") rgba(0, 0, 0, 0.6666666667);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-blend-mode: multiply;
  border-radius: 20px;
  padding: 1rem;
  gap: 1rem;
  color: white;
}
wrapper-temp section.reviews .reviewItem .reviewUser {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
wrapper-temp section.reviews .reviewItem .reviewUserRating {
  width: max-content;
  background-color: white;
  padding: 0.5rem;
  border-radius: 20px;
}
wrapper-temp section.reviews .reviewItem .reviewText {
  font-size: 1.1rem;
  max-height: 6rem;
  overflow-y: scroll;
}
wrapper-temp section.reviewForm {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}
wrapper-temp section.reviewForm .reviewFormTitle {
  width: 100%;
  justify-content: space-between;
  display: flex;
  align-items: center;
  line-height: 1.3em;
  letter-spacing: 0.2px;
  color: #082645;
  text-align: center;
  gap: 1rem;
}
wrapper-temp section.reviewForm .reviewFormTitle a {
  height: 3rem;
  padding: 1rem;
  background-color: #e1e9fd;
  border-radius: 10px;
  text-decoration: none;
  color: black;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
wrapper-temp section.reviewForm .reviewFormTitle a:nth-of-type(1) {
  aspect-ratio: 1/1;
}
wrapper-temp section.reviewForm .reviewFormTitle h1 {
  font-size: 2rem;
}
wrapper-temp section.reviewForm form {
  width: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
wrapper-temp section.reviewForm form textarea {
  padding: 1rem;
  position: relative;
  width: 25rem;
  height: 15rem;
  border-radius: 10px;
  resize: none;
}
wrapper-temp section.reviewForm form input {
  padding: 0.5rem 1rem;
  width: 25rem;
  border-radius: 10px;
}
wrapper-temp section.myReviews {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
}
wrapper-temp section.myReviews .myReviewsTitle {
  width: 100%;
  justify-content: space-between;
  display: flex;
  align-items: center;
  line-height: 1.3em;
  letter-spacing: 0.2px;
  color: #082645;
  text-align: center;
  gap: 1rem;
}
wrapper-temp section.myReviews .myReviewsTitle a {
  height: 3rem;
  padding: 1rem;
  background-color: #e1e9fd;
  border-radius: 10px;
  text-decoration: none;
  color: black;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
wrapper-temp section.myReviews .myReviewsTitle a:nth-of-type(1) {
  aspect-ratio: 1/1;
}
wrapper-temp section.myReviews .myReviewsTitle h1 {
  font-size: 2rem;
}
wrapper-temp section.myReviews .myReviewsList {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  gap: 1rem;
}
wrapper-temp section.myReviews .myReviewsList .reviewItem {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 1rem;
  gap: 1rem;
}
wrapper-temp section.myReviews .myReviewsList .reviewItem:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
wrapper-temp section.myReviews .myReviewsList .reviewItem .reviewItemInfo {
  flex-grow: 1;
}
wrapper-temp section.myReviews .myReviewsList .reviewItem a.deleteReview {
  background-color: red;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: white;
}
wrapper-temp section.myReviews .myReviewsList .reviewItem a.deleteReview:hover {
  scale: 1.05;
}
wrapper-temp section.profileCols {
  width: 100%;
  display: flex;
  flex-grow: 1;
  padding: 1rem 0;
  gap: 2rem;
}
wrapper-temp section.profileCols .profileCol-userPic {
  display: flex;
  flex-direction: column;
}
wrapper-temp section.profileCols .profileCol-userPic .picFrame {
  aspect-ratio: 1/1;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.0666666667);
}
wrapper-temp section.profileCols .profileCol-userPic .picFrame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  top: 0;
  left: 0;
}
wrapper-temp section.profileCols .profileCol-userPic .picFrame img:hover {
  filter: blur(2px);
  scale: 1.05;
}
wrapper-temp section.profileCols .profileCol-userPic .picFrame img:hover::before {
  content: "Profile";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
wrapper-temp section.profileCols .profileCol-userPic .userFullname {
  margin-top: 0.3rem;
  width: 100%;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: black;
}
wrapper-temp section.profileCols .profileCol-userPic .userUsername {
  margin-top: 0.3rem;
  width: 100%;
  color: grey;
  font-size: 1rem;
  text-decoration: underline;
  font-weight: 700;
}
wrapper-temp section.profileCols .profileCol-userPic .button {
  margin-top: 0.8rem;
  width: 100%;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  background-color: #8bad7f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  gap: 0.5rem;
}
wrapper-temp section.profileCols .profileCol-userInfo {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
wrapper-temp section.profileCols .profileCol-userInfo .tabsRow {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
wrapper-temp section.profileCols .profileCol-userInfo .tabsRow .tabs {
  display: flex;
  width: 100%;
  border-bottom: 2px solid lightgrey;
}
wrapper-temp section.profileCols .profileCol-userInfo .tabsRow .tabs tab {
  padding: 0rem 1.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: black;
  cursor: pointer;
  transition: all 200ms !important;
  position: relative;
}
wrapper-temp section.profileCols .profileCol-userInfo .tabsRow .tabs tab::before {
  transition: all 400ms cubic-bezier(0.8, -1, 0.2, 1);
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 0;
  height: 2px;
  background-color: #8bad7f;
}
wrapper-temp section.profileCols .profileCol-userInfo .tabsRow .tabs tab.activeTab::before {
  width: 100%;
}
wrapper-temp section.profileCols .profileCol-userInfo .contentRow content {
  width: 100%;
  height: 100%;
  padding: 1rem 0;
  transition: 300ms;
  opacity: 0;
  display: none;
  flex-grow: 1;
}
wrapper-temp section.profileCols .profileCol-userInfo .contentRow content.show {
  opacity: 1;
  display: flex;
}
wrapper-temp section.profileCols .profileCol-userInfo .contentRow content#about {
  display: flex;
}
wrapper-temp section.profileCols .profileCol-userInfo .contentRow content#about table {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
}
wrapper-temp section.profileCols .profileCol-userInfo .contentRow content#about table tr {
  height: 2rem;
  cursor: pointer;
}
wrapper-temp section.profileCols .profileCol-userInfo .contentRow content#about table tr:hover {
  background-color: #e1e9fd;
}
wrapper-temp section.profileCols .profileCol-userInfo .contentRow content#about table tr:has(th):hover {
  background-color: white;
}
wrapper-temp section.profileCols .profileCol-userInfo .contentRow content#about table tr td:nth-of-type(1) {
  padding-left: 1rem;
  user-select: none;
}
wrapper-temp section.profileCols .profileCol-userInfo .contentRow content#about table tr td {
  width: 50%;
}
wrapper-temp section.profileCols .profileCol-userInfo .contentRow content#about table th {
  text-align: left;
}
wrapper-temp section.profileCols .profileCol-userInfo .contentRow content#about table th:nth-of-type(1) {
  padding-left: 1rem;
  user-select: none;
}
wrapper-temp section.profileCols .profileCol-userInfo .contentRow content#consultations {
  gap: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
wrapper-temp section.profileCols .profileCol-userInfo .contentRow content#consultations .consultations-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  gap: 1rem;
  height: min-content;
  box-sizing: border-box;
  overflow-y: hidden;
  position: relative;
}
wrapper-temp section.profileCols .profileCol-userInfo .contentRow content#consultations .consultations-list .consultation-item {
  height: 3rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e1e9fd;
  border-radius: 10px;
  padding: 0.5rem;
}
wrapper-temp section.profileCols .profileCol-userInfo .contentRow content#consultations .consultations-list .consultation-item .consultation-item-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: black;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
wrapper-temp section.profileCols .profileCol-userInfo .contentRow content#consultations .consultations-list .consultation-item .consultation-item-title i {
  height: 2rem;
  font-size: 2rem;
}
wrapper-temp section.profileCols .profileCol-userInfo .contentRow content#consultations .consultations-list .consultation-item .button {
  padding: 0.3rem 0.7rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: white;
  text-decoration: none;
  background-color: #8bad7f;
  gap: 0.5rem;
  cursor: pointer;
}
wrapper-temp section.profileCols .profileCol-userInfo .contentRow content#consultations .consultations-list .consultation-item .button:hover {
  background-color: #082645;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails {
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
  width: 100%;
  margin: 0 0 1rem 0;
  display: flex;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .section-title {
  width: 100%;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .section-title h1 b {
  color: orange;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content {
  width: 100%;
  display: flex;
  flex-grow: 1;
  gap: 1rem;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-members {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background-color: #f7f7ff;
  border-radius: 20px;
  overflow-y: auto;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-members .section-title {
  font-size: 1rem;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-members .consultationDetails-content-member-card {
  width: 100%;
  padding: 0.5rem;
  display: flex;
  gap: 1rem;
  height: 4rem;
  background-color: #eeeeff;
  border-radius: 20px;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-members .consultationDetails-content-member-card-image {
  aspect-ratio: 1/1;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-members .consultationDetails-content-member-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-members .consultationDetails-content-member-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-members .consultationDetails-content-member-card-content-name {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: black;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-members .consultationDetails-content-member-card-content-username {
  font-size: 1rem;
  color: black;
  font-weight: 500;
  letter-spacing: 0.2px;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #f7f7ff;
  border-radius: 20px;
  overflow-y: auto;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat .section-title {
  font-size: 1rem;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat .section-title .refresh-chat-btn {
  cursor: pointer;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat .chat-box {
  width: 100%;
  flex-grow: 1;
  overflow-y: scroll;
  height: 100px;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.5rem;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat .chat-box .msg-box {
  width: 100%;
  display: flex;
  align-items: end;
  gap: 0.5rem;
  padding: 0 1rem;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat .chat-box .msg-box .msg-userPic {
  aspect-ratio: 1/1;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat .chat-box .msg-box .msg-userPic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat .chat-box .msg-box .msg-bubble {
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
  max-width: 80%;
  background-color: #8bad7f;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  word-break: break-all;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat .chat-box .msg-box .msg-bubble-userInfo {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #082645;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat .chat-box .msg-box .msg-bubble-text {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1rem;
  line-height: 1rem;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat .chat-box #msg_deletion_modal {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 20px;
  padding: 1.5rem;
  background-color: #f7f7ff;
  box-shadow: 0 0 2px 2px rgba(111, 111, 111, 0.1);
  display: none;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat .chat-box #msg_deletion_modal .msg_deletion_modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat .chat-box #msg_deletion_modal .msg_deletion_modal-content .msg_deletion_modal-title {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: black;
  text-align: center;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat .chat-box #msg_deletion_modal .msg_deletion_modal-content .button-group {
  display: flex;
  gap: 0.5rem;
  justify-content: space-around;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat .chat-box #msg_deletion_modal .msg_deletion_modal-content .button-group a, wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat .chat-box #msg_deletion_modal .msg_deletion_modal-content .button-group button {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: white;
  text-decoration: none;
  background-color: #8bad7f;
  border: none;
  outline: none;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat .chat-box #msg_deletion_modal .msg_deletion_modal-content .button-group a:hover, wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat .chat-box #msg_deletion_modal .msg_deletion_modal-content .button-group button:hover {
  background-color: #082645;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat .chat-box #msg_deletion_modal.active {
  display: flex !important;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat form textarea {
  user-select: all;
  width: 100%;
  height: 100px;
  border-radius: 10px;
  padding: 0.5rem;
  resize: none;
  border: none;
  height: 4rem;
  font-size: 0.9rem;
  color: black;
  background-color: #e1e9fd;
  outline: none;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat form textarea::placeholder {
  color: grey;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat form button {
  padding: 0.3rem 0.7rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: white;
  text-decoration: none;
  background-color: #8bad7f;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}
wrapper-temp section.profileCols .profileCol-userInfo section.consultationDetails .consultationDetails-content-chat form button:hover {
  background-color: #082645;
}
wrapper-temp section.profileCols .profileCol-userInfo section.edit_profile_form {
  width: 100%;
  height: 100%;
  flex-grow: 1;
}
wrapper-temp section.profileCols .profileCol-userInfo section.edit_profile_form form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  padding: 0 1rem;
}
wrapper-temp section.profileCols .profileCol-userInfo section.edit_profile_form form div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}
wrapper-temp section.profileCols .profileCol-userInfo section.edit_profile_form form div label {
  font-size: 1rem;
  color: black;
  font-weight: 500;
}
wrapper-temp section.profileCols .profileCol-userInfo section.edit_profile_form form div input {
  width: 100%;
  border-radius: 20px;
  border: none;
  font-size: 1rem;
  color: black;
  background-color: #e1e9fd;
  outline: none;
  padding: 1rem;
}
wrapper-temp section.profileCols .profileCol-userInfo section.edit_profile_form form div input::placeholder {
  color: grey;
}
wrapper-temp section.profileCols .profileCol-userInfo section.edit_profile_form form button {
  padding: 0.5rem;
  border-radius: 20px;
  border: none;
  font-weight: 700;
  width: 200px;
  cursor: pointer;
}
wrapper-temp section.profileCols .profileCol-userInfo section.notifications {
  width: 100%;
  height: 100%;
}
wrapper-temp section.profileCols .profileCol-userInfo section.notifications .notifications-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
wrapper-temp section.profileCols .profileCol-userInfo section.notifications .notifications-list details {
  max-width: 100%;
}
wrapper-temp section.profileCols .profileCol-userInfo section.notifications .notifications-list details ::marker {
  color: #8bad7f;
}
wrapper-temp section.profileCols .profileCol-userInfo section.notifications .notifications-list details summary {
  padding: 0.7rem;
  border-radius: 10px;
  background-color: #e1e9fd;
  transition: none !important;
}
wrapper-temp section.profileCols .profileCol-userInfo section.notifications .notifications-list details summary p {
  color: gray;
  font-size: 0.8rem;
}
wrapper-temp section.profileCols .profileCol-userInfo section.notifications .notifications-list details summary::first-letter {
  text-transform: capitalize;
}
wrapper-temp section.profileCols .profileCol-userInfo section.notifications .notifications-list details .notification-content {
  width: 100%;
  padding: 0.7rem;
  background-color: #e1e9fd;
  border-radius: 0 0 10px 10px;
}
wrapper-temp section.profileCols .profileCol-userInfo section.notifications .notifications-list details .notification-content a {
  width: 100%;
  border-radius: 5px;
  background-color: #f7f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: black;
}
wrapper-temp section.profileCols .profileCol-userInfo section.notifications .notifications-list details .success {
  background-color: #d4edda;
  /* Light green */
  color: #155724;
  /* Dark green */
}
wrapper-temp section.profileCols .profileCol-userInfo section.notifications .notifications-list details .fail {
  background-color: #f8d7da;
  /* Light red */
  color: #721c24;
  /* Dark red */
}
wrapper-temp section.profileCols .profileCol-userInfo section.notifications .notifications-list details .info {
  background-color: #d1ecf1;
  /* Light blue */
  color: #0c5460;
  /* Dark blue */
}
wrapper-temp section.profileCols .profileCol-userInfo section.notifications .notifications-list details .warning {
  background-color: #fff3cd;
  /* Light yellow */
  color: #856404;
  /* Dark yellow */
}
wrapper-temp section.profileCols .profileCol-userInfo section.notifications .notifications-list details .reminder {
  background-color: #e2e3e5;
  /* Light grey */
  color: #6c757d;
  /* Dark grey */
}
wrapper-temp section.profileCols .profileCol-userInfo section.notifications .notifications-list details .alert {
  background-color: #f5c6cb;
  /* Light pink */
  color: #721c24;
  /* Dark red */
}
wrapper-temp section.profileCols .profileCol-userInfo section.notifications .notifications-list details[open] summary {
  border-radius: 10px 10px 0 0;
}
wrapper-temp section.specialists {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 5rem;
  gap: 2.2rem;
}
wrapper-temp section.specialists .specialistsContent {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
@media screen and (max-width: 960px) {
  wrapper-temp section.specialists .specialistsContent {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  wrapper-temp section.specialists .specialistsContent .specialistItem {
    width: 70% !important;
    aspect-ratio: 1/1 !important;
  }
}
wrapper-temp section.specialists .specialistsContent .specialistItem {
  aspect-ratio: 4/5;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: transparent !important;
  border-radius: 20px;
}
wrapper-temp section.specialists .specialistsContent .specialistItem:hover .specialistPhoto {
  scale: 1.1;
  filter: brightness(100%);
}
wrapper-temp section.specialists .specialistsContent .specialistItem .specialistPhoto {
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 20px;
  filter: brightness(80%);
  user-select: none;
}
wrapper-temp section.specialists .specialistsContent .specialistItem .specialistName {
  width: 100%;
  text-align: center;
  position: absolute;
  color: #082645;
  font-weight: 400;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5rem;
  text-align: center;
  padding: 0.5rem;
  width: calc(100% - 20px);
  height: auto;
  left: 10px;
  bottom: calc(2rem + 25px);
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}
wrapper-temp section.specialists .specialistsContent .specialistItem .specialistDescription {
  position: absolute;
  font-size: 1rem;
  color: white;
  font-weight: 400;
  line-height: 1.5rem;
  text-align: center;
  background-color: rgba(165, 205, 150, 0.5019607843);
  backdrop-filter: blur(10px);
  left: 10px;
  bottom: 10px;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  width: calc(100% - 20px);
}
wrapper-temp section.specialistProfile {
  width: 100%;
  background: linear-gradient(to bottom, #f5f7f8, #e8e8e8, #e8e8e8, #e8e8e8, #f5f7f8);
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: 3rem 4rem;
}
wrapper-temp section.specialistProfile .infoCol {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
wrapper-temp section.specialistProfile .infoCol-fullName {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 2px;
}
wrapper-temp section.specialistProfile .infoCol-specialty {
  font-size: 2rem;
  font-weight: 500;
}
wrapper-temp section.specialistProfile .infoCol-description {
  width: 90%;
  font-size: 0.9rem;
  font-weight: 550;
  margin-top: 0.6rem;
  line-height: 1.4;
}
wrapper-temp section.specialistProfile .infoCol-data {
  margin-top: 1.2rem;
  gap: 0.3rem;
  display: flex;
  flex-direction: column;
  font-weight: 550;
}
wrapper-temp section.specialistProfile .infoCol-data-location {
  display: flex;
  width: 100%;
  display: flex;
  gap: 0.7rem;
  align-items: center;
}
wrapper-temp section.specialistProfile .infoCol-data-workHours {
  display: flex;
  width: 100%;
  display: flex;
  gap: 0.7rem;
  align-items: center;
}
wrapper-temp section.specialistProfile .infoCol-data-workDays {
  display: flex;
  width: 100%;
  display: flex;
  gap: 0.7rem;
  align-items: center;
}
wrapper-temp section.specialistProfile .infoCol-data i {
  font-size: 1.7rem;
  height: 2rem;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
wrapper-temp section.specialistProfile .infoCol-buttons {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
  user-select: none;
}
wrapper-temp section.specialistProfile .infoCol-buttons-button {
  height: 2.5rem;
  padding: 0 2rem;
  border-radius: 2rem;
  background-color: #8bad7f;
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
wrapper-temp section.specialistProfile .infoCol-buttons-button a {
  text-decoration: none;
  all: unset;
}
wrapper-temp section.specialistProfile .infoCol-buttons-button-secondary {
  border: 2px solid #8bad7f;
  background-color: transparent;
  color: #8bad7f;
}
wrapper-temp section.specialistProfile .infoCol-buttons-button:hover {
  color: white !important;
  background-color: #082645 !important;
  border-color: #082645;
}
wrapper-temp section.specialistProfile .infoCol-stats {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 2rem;
  user-select: none;
}
wrapper-temp section.specialistProfile .infoCol-stats-widget {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 33%;
  align-items: baseline;
}
wrapper-temp section.specialistProfile .infoCol-stats-number {
  font-size: 3rem;
  font-weight: 200;
  font-family: "Google Sans Code", monospace;
  position: relative;
  z-index: 5;
  --size: 0;
  --rotate: 45deg;
}
wrapper-temp section.specialistProfile .infoCol-stats-number:hover {
  --size: 100%;
  --rotate: 0deg;
  color: white;
}
wrapper-temp section.specialistProfile .infoCol-stats-number::before {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%) scale(1.2) rotateX(var(--rotate));
  top: 50%;
  left: 50%;
  width: var(--size);
  height: var(--size);
  background-color: #8bad7f;
  border-radius: 1rem;
  z-index: -8;
  transition: 300ms;
}
wrapper-temp section.specialistProfile .infoCol-stats-text {
  font-size: 1.3rem;
  font-weight: 550;
}
wrapper-temp section.specialistProfile .picCol {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
wrapper-temp section.specialistProfile .picCol-image {
  width: 100%;
  position: relative;
}
wrapper-temp section.specialistProfile .picCol-image-bg {
  width: 80%;
  height: 80%;
  background-color: #8bad7f;
  position: absolute;
  bottom: 5px;
  left: 0;
  border-radius: 2rem;
}
wrapper-temp section.specialistProfile .picCol-image img {
  width: 100%;
  filter: brightness(1.2);
  border-radius: 2rem;
}
wrapper-temp section.courses {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 2rem;
  gap: 2.2rem;
}
@media screen and (max-width: 500px) {
  wrapper-temp section.courses {
    padding-top: 2.5rem;
  }
}
wrapper-temp section.courses .coursesContent {
  height: 450px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
@media screen and (max-width: 960px) {
  wrapper-temp section.courses .coursesContent {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  wrapper-temp section.courses .coursesContent .specialistItem {
    width: 70% !important;
    aspect-ratio: 1/1 !important;
  }
}
wrapper-temp section.courses .coursesContent .courseItem {
  height: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: transparent !important;
  border-radius: 20px;
}
@media screen and (max-width: 960px) {
  wrapper-temp section.courses .coursesContent .courseItem {
    height: 60vh !important;
    width: 85% !important;
    aspect-ratio: 1/1 !important;
  }
}
wrapper-temp section.courses .coursesContent .courseItem:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
wrapper-temp section.courses .coursesContent .courseItem:hover > .courseItemText {
  bottom: 0;
}
wrapper-temp section.courses .coursesContent .courseItem .courseItemPhoto {
  background-position: center;
  background-size: cover;
  height: 100%;
  border-radius: 20px;
}
wrapper-temp section.courses .coursesContent .courseItem .courseItemText {
  width: 100%;
  text-align: center;
  position: absolute;
  color: #082645;
  font-weight: 400;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
  left: 0;
  bottom: calc(-20px - 2.1rem);
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
wrapper-temp section.courses .coursesContent .courseItem .courseItemText .courseItemTextTitle {
  width: 100%;
  text-align: start;
}
wrapper-temp section.courses .coursesContent .courseItem .courseItemText .courseItemTextButton {
  width: 100% !important;
  padding: 0.5rem;
  background-color: #8bad7f;
  color: white;
  text-decoration: none;
  border-radius: 10px;
}
wrapper-temp section.courseDetails {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
}
wrapper-temp section.courseDetails .courseDetails_title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
wrapper-temp section.courseDetails .courseDetails_title .title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3em;
  letter-spacing: 0.2px;
  color: #082645;
  width: 100%;
  overflow-x: hidden;
}
wrapper-temp section.courseDetails .courseDetails_content {
  width: 100%;
  display: flex;
  gap: 1rem;
  border-radius: 2rem;
  background-color: #f7f7ff;
  padding: 1rem;
  z-index: 1;
  position: relative;
  background-position: center;
  background-attachment: fixed;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.5333333333) inset;
}
wrapper-temp section.courseDetails .courseDetails_content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(245, 247, 248, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2;
  border-radius: 2rem;
}
wrapper-temp section.courseDetails .courseDetails_content_image {
  z-index: 3;
  width: 40%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
wrapper-temp section.courseDetails .courseDetails_content_image img {
  border-radius: 1rem;
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
wrapper-temp section.courseDetails .courseDetails_content_image img:hover {
  scale: 1.2;
}
wrapper-temp section.courseDetails .courseDetails_content_info {
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 60%;
}
wrapper-temp section.courseDetails .courseDetails_content_info_properties {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 10%;
  border-bottom: 1px solid darkgrey;
}
wrapper-temp section.courseDetails .courseDetails_content_info_properties_property {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}
wrapper-temp section.courseDetails .courseDetails_content_info_properties_property_author a {
  text-decoration: none;
  color: black;
}
wrapper-temp section.courseDetails .courseDetails_content_info_description {
  height: 30vh;
  width: 90%;
  font-size: 1.2rem;
  padding-right: 0.3rem;
  text-align: right;
  margin-left: auto;
  overflow-y: scroll;
}
wrapper-temp section.courseDetails .courseDetails_content_info_prices {
  padding-right: 1rem;
  height: 5%;
  width: 100%;
  text-align: right;
  font-size: 1.2rem;
  display: flex;
  gap: 0.5rem;
  flex-direction: row-reverse;
  margin-top: auto;
}
wrapper-temp section.courseDetails .courseDetails_content_info_prices_offeredPrice {
  font-weight: bold;
}
wrapper-temp section.courseDetails .courseDetails_content_info button {
  height: 15%;
  width: 100%;
  border-radius: 1rem;
  background-color: #8bad7f;
  color: white;
  outline: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  user-select: none;
}
wrapper-temp section.courseDetails .courseDetails_content_info button:hover {
  color: white !important;
  background-color: #082645;
}
wrapper-temp section.courseDetails .courseDetails_content_info .button {
  text-decoration: none;
  height: 15%;
  width: 100%;
  border-radius: 1rem;
  background-color: #8bad7f;
  color: white;
  outline: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
wrapper-temp section.courseDetails .courseDetails_content_info .button:hover {
  color: white !important;
  background-color: #082645;
}
wrapper-temp section.courseDetails .lessons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
wrapper-temp section.courseDetails .lessons .lessons_progress {
  display: flex;
  justify-content: space-between;
  height: 3rem;
  background-color: #f3f5f7;
  padding: 0.5rem;
  border-radius: 1rem;
}
wrapper-temp section.courseDetails .lessons .lessons_progress_count {
  width: 20%;
  height: 100%;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
wrapper-temp section.courseDetails .lessons .lessons_progress_bar {
  width: 80%;
  height: 100%;
  background-color: #fff;
  border-radius: 0.5rem;
}
wrapper-temp section.courseDetails .lessons .lessons_progress_bar_fill {
  height: 100%;
  background-color: #8bad7f;
  border-radius: 0.5rem;
  min-width: 1rem !important;
  display: flex;
  padding: 0.5rem;
  color: white;
  font-size: 1rem;
  font-weight: bold;
}
wrapper-temp section.courseDetails .lessons .lessons_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
wrapper-temp section.courseDetails .lessons .lessons_content a {
  width: 100%;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  background-color: #f3f5f7;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 500;
  color: #082645;
}
wrapper-temp section.courseDetails .lessons .lessons_content a i {
  font-size: 2rem;
}
wrapper-temp section.courseDetails .lessons .lessons_content a:hover {
  scale: 1.02;
}
wrapper-temp section.courseDetails .lessons .lessons_content a.completed {
  background-color: #e1fde3;
  color: green;
}
wrapper-temp section.lessonDetails {
  width: 80%;
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  gap: 0.5rem;
}
wrapper-temp section.lessonDetails .lessonDetails_title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.3em;
  letter-spacing: 0.2px;
  color: #082645;
  width: 100%;
  overflow-x: hidden;
}
wrapper-temp section.lessonDetails .lessonDetails_description {
  width: 100%;
  font-size: 1rem;
  padding-left: 0.5rem;
  border-left: 1px solid #082645;
}
wrapper-temp section.lessonDetails .lessonDetails_video {
  width: 100%;
  position: relative;
}
wrapper-temp section.lessonDetails .lessonDetails_video video {
  border-radius: 1rem;
  width: 100%;
}
wrapper-temp section.lessonDetails .lessonDetails_video #quiz {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  background-color: rgba(8, 38, 69, 0.8);
  backdrop-filter: blur(10px);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
wrapper-temp section.lessonDetails .lessonDetails_video #quiz #question {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: white;
}
wrapper-temp section.lessonDetails .lessonDetails_video #quiz #options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
wrapper-temp section.lessonDetails .lessonDetails_video #quiz #options button {
  width: 100%;
  height: 3rem;
  background-color: #8bad7f;
  color: white;
  font-weight: 550;
  letter-spacing: 0.1px;
  border-radius: 10px;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 1rem;
}
wrapper-temp section.lessonDetails .lessonDetails_video #quiz #options button:hover {
  color: white !important;
  background-color: #082645 !important;
}
wrapper-temp section.lessonDetails .lessonDetails_source {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid lightgrey;
}
wrapper-temp section.lessonDetails .lessonDetails_source_audio {
  width: 100%;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
wrapper-temp section.lessonDetails .lessonDetails_source_audio_title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5rem;
  width: 30%;
}
wrapper-temp section.lessonDetails .lessonDetails_source_audio_src {
  background-color: #f3f5f7;
  width: 400px;
  border-radius: 0.5rem;
  height: 50px;
}
wrapper-temp section.lessonDetails .lessonDetails_source_book {
  width: 100%;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
wrapper-temp section.lessonDetails .lessonDetails_source_book_title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5rem;
  width: 30%;
}
wrapper-temp section.lessonDetails .lessonDetails_source_book_src {
  background-color: #f3f5f7;
  width: 400px;
  border-radius: 0.5rem;
  height: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
}
wrapper-temp section.lessonDetails a {
  margin: 0 0 1rem auto;
  padding: 0.5rem 1rem;
  background-color: green;
  color: white;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
}
wrapper-temp section.lessonDetails a:hover {
  background-color: green !important;
  color: white !important;
}
wrapper-temp section.tests {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 5rem;
  gap: 2.2rem;
}
wrapper-temp section.tests .testsContent {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}
@media screen and (max-width: 960px) {
  wrapper-temp section.tests .testsContent {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  wrapper-temp section.tests .testsContent .testItem {
    width: 70% !important;
    aspect-ratio: 1/1 !important;
  }
}
wrapper-temp section.tests .testsContent .testItem {
  aspect-ratio: 3/4;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}
wrapper-temp section.tests .testsContent .testItem__header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 7px;
}
wrapper-temp section.tests .testsContent .testItem__headerTitle {
  font-weight: 600;
  color: #082645;
}
wrapper-temp section.tests .testsContent .testItem__headerPrice {
  margin-left: auto;
  font-size: 0.8rem;
  border-radius: 0.8rem;
  border: #082645 1px solid;
  padding: 0.2rem 0.5rem;
}
wrapper-temp section.tests .testsContent .testItem__photo {
  width: 100%;
  aspect-ratio: 1/1;
  filter: blur(2px) brightness(0.95);
  object-fit: cover;
}
wrapper-temp section.tests .testsContent .testItem__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
wrapper-temp section.tests .testsContent .testItem__info a {
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  overflow-x: hidden;
  text-decoration: none;
  color: #082645;
  padding: 2px 5px;
}
wrapper-temp section.tests .testsContent .testItem__info .tags {
  width: 100%;
  height: 2rem;
  padding: 2px 5px;
  display: flex;
  gap: 5px;
  align-items: center;
}
wrapper-temp section.tests .testsContent .testItem__info .tags .tag {
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  padding: 5px 7px;
  border-radius: 10px;
  background-color: #e1e9fd;
}
wrapper-temp section.testInfo {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
}
wrapper-temp section.testInfo .testInfo_primary {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
wrapper-temp section.testInfo .testInfo_primary .testInfo__title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3em;
  letter-spacing: 0.2px;
  color: #082645;
}
wrapper-temp section.testInfo .testInfo_primary .testInfo__description {
  font-size: 1rem;
  color: black;
  width: 100%;
  font-weight: 400;
  line-height: 1.5rem;
  border-left: 1px solid #082645;
  padding: 0.5rem 0 0.5rem 1rem;
}
wrapper-temp section.testInfo .testInfo_secondary {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
wrapper-temp section.testInfo .testInfo_secondary .testInfo__image {
  aspect-ratio: 1/1;
  border-radius: 10px;
  object-fit: cover;
  filter: brightness(90%) blur(1px);
}
wrapper-temp section.testInfo .testInfo_secondary .testInfo__tags {
  display: flex;
  gap: 1rem;
}
wrapper-temp section.testInfo .testInfo_secondary .testInfo__tags .tag {
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  padding: 5px 7px;
  border-radius: 10px;
  background-color: #8bad7f;
  color: #fff;
}
wrapper-temp section.testUserResult {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0 1rem 0;
}
wrapper-temp section.testUserResult .testUserResult__title {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3em;
  letter-spacing: 0.2px;
  color: #082645;
}
wrapper-temp section.testUserResult .testUserResult__subtitle {
  width: 100%;
  font-size: 1rem;
  color: black;
  width: 100%;
  font-weight: 400;
  line-height: 1.5rem;
  font-size: 0.8rem;
}
wrapper-temp section.testUserResult .results {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  gap: 0.7rem;
  overflow-y: auto;
}
wrapper-temp section.testUserResult .results .result {
  display: flex;
  width: 100%;
  background-color: #eeeeff;
  padding: 0.7rem;
  border-radius: 10px;
  flex-direction: column;
  position: relative;
  transition: all 200ms;
  overflow: hidden;
}
wrapper-temp section.testUserResult .results .result-title {
  font-weight: 600;
}
wrapper-temp section.testUserResult .results .result-score .test-time {
  font-size: 0.8rem;
  font-weight: 200;
}

.consultationBookingWindow {
  position: fixed;
  width: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
  background-color: white;
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  display: none;
  background-color: #eeeeff;
}
.consultationBookingWindow-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.consultationBookingWindow-header-title {
  font-size: 1.4rem;
  font-weight: 600;
}
.consultationBookingWindow-header-close {
  height: 1.5rem;
  aspect-ratio: 1/1;
  cursor: pointer;
  border: 2px solid #8bad7f;
  border-radius: 0.2rem;
  color: #8bad7f;
  display: flex;
  justify-content: center;
  align-items: center;
}
.consultationBookingWindow-header-close i::before {
  aspect-ratio: 1/1 !important;
}
.consultationBookingWindow-header-close:hover {
  box-shadow: 0 0 0 1px #8bad7f;
}
.consultationBookingWindow-body {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.consultationBookingWindow-body-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.consultationBookingWindow-body-content#content1 {
  width: 100%;
}
.consultationBookingWindow-body-content#content1 .choice#online:checked ~ .consultationBookingWindow-body-content-choices .choiceSelected {
  left: 0;
}
.consultationBookingWindow-body-content#content1 .choice#online:checked ~ .consultationBookingWindow-body-content-choices .onlineLabel {
  color: white;
}
.consultationBookingWindow-body-content#content1 .choice#online:checked ~ .consultationBookingWindow-body-content-choices_description .consultationBookingWindow-body-content-choices_description-online {
  display: flex !important;
}
.consultationBookingWindow-body-content#content1 .choice#offline:checked ~ .consultationBookingWindow-body-content-choices .choiceSelected {
  left: 50%;
}
.consultationBookingWindow-body-content#content1 .choice#offline:checked ~ .consultationBookingWindow-body-content-choices .offlineLabel {
  color: white;
}
.consultationBookingWindow-body-content#content1 .choice#offline:checked ~ .consultationBookingWindow-body-content-choices_description .consultationBookingWindow-body-content-choices_description-offline {
  display: flex !important;
}
.consultationBookingWindow-body-content#content1 .consultationBookingWindow-body-content-choices {
  width: 100%;
  display: flex;
  height: 2rem;
  position: relative;
  border-radius: 1rem;
  background: #eeeeff;
  box-shadow: inset 5px 5px 5px #e0e0f0, inset -5px -5px 5px #fcfcff;
}
.consultationBookingWindow-body-content#content1 .consultationBookingWindow-body-content-choices label {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
}
.consultationBookingWindow-body-content#content1 .consultationBookingWindow-body-content-choices .choiceSelected {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #8bad7f;
  border-radius: 1rem;
  transition: all 300ms ease-out;
}
.consultationBookingWindow-body-content#content1 .consultationBookingWindow-body-content-choices_description {
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.consultationBookingWindow-body-content#content1 .consultationBookingWindow-body-content-choices_description-online, .consultationBookingWindow-body-content#content1 .consultationBookingWindow-body-content-choices_description-offline {
  display: none;
  flex-direction: column;
}
.consultationBookingWindow-body-content#content1 .consultationBookingWindow-body-content-choices_description-mainText {
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}
.consultationBookingWindow-body-content#content1 .consultationBookingWindow-body-content-choices_description-bulletPoints {
  list-style: disc;
  padding-left: 1.2rem;
  font-size: 0.9rem;
}
.consultationBookingWindow-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
.consultationBookingWindow-buttons-button {
  padding: 0.5rem;
  border-radius: 0.5rem;
}
.consultationBookingWindow-buttons-button-primary {
  background-color: #8bad7f;
  color: white;
  font-weight: 550;
  letter-spacing: 0.1px;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
}
.consultationBookingWindow-buttons-button-primary:hover {
  color: white !important;
  background-color: #082645 !important;
}
.consultationBookingWindow-buttons-button-secondary {
  background-color: transparent;
  border: 2px solid #8bad7f;
  color: #8bad7f;
  font-weight: 550;
  letter-spacing: 0.1px;
  font-size: 0.9rem;
  cursor: pointer;
}
.consultationBookingWindow-buttons-button-secondary:hover {
  color: white !important;
  background-color: #8bad7f !important;
}
.consultationBookingWindow-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  display: none;
}

.togglable.active {
  display: flex;
}

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