/******  COURSES PAGE STYLES  **************************************/

/*  ENTIRE PAGE STYLES  */
.page-container {
  display: flex;
  min-height: 100%;
  justify-content: center;
}

a, a:visited {
  text-decoration: inherit;
  color: inherit;
  cursor: pointer;
}

.side-menu {
  /* max-width: 280px; */
  width: 30%;
  background: #EFF1F5;
  padding: 38px 30px 0 80px;
  text-align: left;
  position: sticky;
  min-height: 100vh;
}

.side-menu-title {
  color: var(--XYZ-Blue, #183B6F);
  font-family: "Trebuchet MS";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
  text-transform: uppercase;
}

.side-menu-hr {
  width: 159px;
  height: 1px;
  border: none;
  background: #000000;
}

.side-menu-ul {
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
}

.side-menu-li {
  font-family: "Trebuchet MS";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 10px 0;
  cursor: pointer;
}



/*  COURSES DISPLAY SECTION STYLES  */

.courses {
  background: var(--Gray-Gradient, linear-gradient(192deg, #EFF1F5 8.91%, #FFF 36.03%));
  width: 100%;
  text-align: center;
}

.courses-title {
  color: rgba(0, 0, 0, 0.85);
  max-width: 1000px;
  margin: 50px 0 35px 0;
  text-align: center;
  font-family: "Istok Web";
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 86.8%; /* 38.192px */
  letter-spacing: -1.76px;
}

.courses-content {
  max-width: 1000px;
  /* min-width: 100%; */
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  /* margin: auto; */
  margin-left: 4.2%;
  /* align-items: center; */
}
.course-container {
  min-width: 27%;
  margin: 0 25px 35px 25px;
  text-align: left;
}

.select-course {
  cursor: pointer;
}

.course-image {
  width: 240px;
  height: 309px;
  border-radius: 15px;
  /* background: lightgray 50% / cover no-repeat; */
  box-shadow: 5px 5px 0px 5px var(--Light-Gray, #EFF1F5);
}

.course-title {
  color: var(--XYZ-Orange, #F37021);
  font-family: "Trebuchet MS";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 25px */
  margin: 18px 0 6px 0;
  width: 240px;
}

.course-publisher {
  color: #000;
  font-family: "Trebuchet MS";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  width: 240px;
}

/*  ANIMATIONS  */
@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-in {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: .5s;
}

/*  RESPONSIVE  */

@media (max-width: 650px) {
  .page-container  {
    display: block;
  }

  .side-menu {
    max-width: 100%;
    width: 100%;
    min-height: auto;
    padding: 38px 36px;
  }

  .courses {
    background: #fff;
  }

  .side-menu-hr {
    width: 100%;
    height: 1px;
    border: none;
    background: #000000;
  }

  .side-menu-li {
    padding: 5px 0;
  }

  .courses-content {
    margin: auto;
  }

  .course-container {
    /* width: 100%; */
    margin: auto;
    margin-bottom: 50px;
    text-align: left;
  }

  /* .course-title {
    width: 100%;
  }

  .course-publisher {
    width: 100%;
  } */
}


/******  SELECTED COURSE PAGE STYLES  **************************************/

/* SIDE MENU STYLES */
.back-menu-container {
  display: flex;
  align-items: center;
}

.back-chevron {
  font-size: 80px;
  color: #F37021;
  font-weight: 100;
  font-style: normal;
  margin: 0;
  padding: 0;
}

/* SELECTED COURSE SECTION STYLES */

.selected-course {
  display: flex;
}

.course-image-section {
  padding: 50px;
  width: 36%;
  max-width: 340px;
}

.ebook-button {
  border-radius: 30px;
  background: var(--XYZ-Orange, #F37021);
  width: 240px;
  height: 51px;
  color: #FFF;
  text-align: center;
  font-family: "Trebuchet MS";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin: 36px 0;
  padding: 0;
  border: 1px solid #F37021;
}


.course-info-section {
  padding: 0 80px 57px 0;
  text-align: left;
  max-width: 1000px;
  width: 64%;
  /* width: 583px; */
}

.selected-course-publisher {
  color: var(--XYZ-Orange, #F37021);
  font-family: "Trebuchet MS";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 11px 0;
}

.selected-course-license {
  color: var(--XYZ-Blue, #183B6F);
  font-family: "Trebuchet MS";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 20px */
}

.selected-course-description {
  color: #000;
  font-family: "Trebuchet MS";
  font-size: 16px;
  /* font-style: italic; */
  font-weight: 400;
  line-height: 150%; /* 24px */
  margin: 24px 0;
}

.selected-course-preface {
  color: var(--XYZ-Blue, #183B6F);
  font-family: "Trebuchet MS";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 20px */
}

.preface-link {
  color: var(--XYZ-Blue, #183B6F);
  font-family: "Trebuchet MS";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.course-features-title {
  color: var(--XYZ-Orange, #F37021);
  font-family: "Trebuchet MS";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  margin: 0;
}

.course-features-ul {
  padding: 0;
}

.course-features-li {
  color: var(--85-Black, rgba(0, 0, 0, 0.85));
  font-family: "Trebuchet MS";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 20px */
  padding: 0;
}

/*  SELECTED COURSE RESPONSIVE  */

@media (max-width: 650px) {
  .selected-course {
    display: block;
    text-align: center;
  }
  .course-image-section  {
    max-width: 100%;
    width: 100%;
    padding: 36px 0;
    text-align: center;
  }

  .course-info-section  {
    width: 100%;
    text-align: left;
    margin: 28px;
  }

  .course-info-title {
    margin-top: 0;
  }

  .ebook-button {
    margin-bottom: 0;
  }

  .selected-course-preface {
    width: 280px;
  }
}

/*  NOTHING TO SEE STYLES ****************************  */

.nothing-to-see-page {
  display: flex;
  width: 100%;
}

.nts-title-section {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nts-title {
  color: rgba(0, 0, 0, 0.85);
  text-align: center;
  font-family: "Istok Web";
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  margin-right: 30px;
  line-height: 86.8%;
  letter-spacing: -2.16px;
}

.nts-image-section {
  width: 55%;
  display: flex;
  justify-content: flex-start;
}

.nts-image {
  width: 402px;
}

/*  NOTHING TO SEE RESPONSIVE  */

@media (max-width: 800px) {
  .nothing-to-see-page  {
    display: block;
    text-align: center;
    margin: 16px 0;
  }
  .nts-title-section {
    width: 100%;
  }
  .nts-title {
    margin: 0 0 40px 0;
  }
  .nts-image-section {
    width: 100%;
  }
  .nts-image {
    width: 90%;
    margin-bottom: 40px;
  }
}