.coursesContainer {
  display: -moz-grid;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.buttonLook {
  background-color: #6F56A6;
  color: white;
  padding: 14px 20px;
  border: none;
  width: 50%;
  opacity: 0.9;
  border-radius: 5px;
  cursor: pointer;
  min-width: fit-content;
  text-decoration: none;
}

.buttonLook:hover {
  opacity: 1;
  background-color: #4EBFB4;
  color: black;
}

.indexContent li {
  margin-bottom: 1em;
}

.subCoursesContainer {
  position: relative;
}

.subCoursesContainer .anchor {
  position: absolute;
  top: -100px;
}

@media screen and (max-width: 1080px) {
  .coursesContainer {
    grid-template-columns: 1fr;
  }
}


.course {
  color: #ffffff;
  width: 100%;
  cursor: pointer;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.course .flipperBox {
  min-height: 400px;
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative;
}

.course .flipperBox:hover .backSide {
  transform: rotateY(0deg);
}

.course .flipperBox:hover .frontSide {
  transform: rotateY(180deg);
}

.course .flipperBox .frontSide,
.course .flipperBox .backSide {
  min-height: 400px;
  backface-visibility: hidden;
  transition: 0.6s;
  transform-style: preserve-3d;
  position: absolute;
}

.course .flipperBox .frontSide {
  z-index: 2;
  transform: rotateY(0deg);
}

.course .flipperBox .backSide {
  transform: rotateY(-180deg);
  background: #eaeaea;
  color: #000;
  text-align: center;
  line-height: 1.4em;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: solid 2px #fff;
}

.course .flipperBox .frontSide {
  width: 100%;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.course .flipperBox .frontSide .imgContainer {
  height: 0;
  overflow: visible;
  width: 100%;
}

.course .flipperBox .frontSide .imgContainer img {
  background-color: #eaeaea;
  object-fit: cover;
  width: 100%;
  min-height: 400px;
}

.course .flipperBox .frontSide .colorThemeBG {
  min-height: 400px;
  height: auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.course .flipperBox .frontSide .colorThemeBG .arrowContainer {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course .flipperBox .frontSide .colorThemeBG .arrowContainer .arrow {
  display: block;
  width: 15px;
  height: 15px;
  border-top: 4px solid #000;
  border-left: 4px solid #000;
  border-radius: 3px;
  transform: rotate(135deg);
}

.course .flipperBox .frontSide .colorThemeBG .arrowContainer .arrow::after {
  content: "";
  display: block;
  width: 4px;
  height: 18px;
  transform: rotate(-45deg) translate(5px, 0px);
  left: 0;
  top: 0;
  border-radius: 4px;
}

.course .flipperBox .frontSide .colorThemeBG .courseTitle {
  background-color: #888888;
  color: white;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  text-align: left;
  margin: 1.2em 0 0.5em 0;
}

.course .flipperBox .backSide {
  padding: 40px;
}

.course .flipperBox .backSide .courseTitle {
  color: black;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  text-align: left;
}

.course .flipperBox .backSide .courseDescription {
  font-size: 1em;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  text-align: left;
}




.mappingContainer {
  overflow: auto hidden;
  max-width: 100%;
  background-color: #6F56A6;
  padding: 5px 30px;
  white-space: nowrap;
  text-wrap: nowrap;
  color: #ffffff;
}

.mappingContainer a {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.mappingContainer a:hover {
  text-decoration: underline;
  text-shadow: 0 0 0.3em #333;
}

.mappingContainer .arrow {
  margin: 0 1em;
}

.mappingContainer .arrow::before {
  content: ">";
}

.pageContainer {
  width: 100%;
}

.pageContainer .maxWidth2 .stickyDiv {
  height: 0;
  position: sticky;
  top: 80px;
  z-index: -1;
}

.pageContainer .maxWidth2 .stickyDiv img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 34.728829686vw;
}

.titleContainer,
.titleContainer2 {
  display: flex;
}

.titleContainer .maxWidth,
.titleContainer2 .maxWidth {
  margin: auto;
  max-width: 1080px;
  width: 100%;
  padding: 100px 40px 40px 40px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.titleContainer .maxWidth .title,
.titleContainer2 .maxWidth .title {
  width: max-content;
  font-family: Raleway, Arial, system-ui, sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #ffffff;
  text-shadow: 0 0 0.15em #000, 0 0 1em #000, 0 0 0.5em #000;
  justify-content: left;
}

.titleContainer .maxWidth .title span,
.titleContainer2 .maxWidth .title span {
  overflow-wrap: break-word;
}

.titleContainer .maxWidth .title .smallTitle,
.titleContainer2 .maxWidth .title .smallTitle {
  font-size: 0.7em;
  font-weight: normal;
  margin-top: 0.4em;
}

.titleContainer .maxWidth .videoContainer,
.titleContainer2 .maxWidth .videoContainer {
  width: 40vw;
  max-width: 450px;
  min-width: 250px;
  height: 20vw;
  max-height: 225px;
  aspect-ratio: 2;
}

.titleContainer .maxWidth .videoContainer iframe,
.titleContainer2 .maxWidth .videoContainer iframe {
  border-radius: 1em;
  width: 100%;
  height: 100%;
}

.titleContainer2 {
  height: calc(80px + 34.728829686vw);
  display: flex;
  align-items: flex-end;
  align-items: end;
}

.titleContainer2 .title {
  width: max-content;
  line-height: 1em;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  margin: unset;
  padding: 0 40px 40px 40px;
  gap: 2vw;
  font-family: Raleway, Arial, system-ui, sans-serif;
  font-weight: 700;
  font-size: 32px;
  text-shadow: 0 0 0.15em #000, 0 0 1em #000, 0 0 0.5em #000;
  justify-content: left;
}

.sectionContainer,
.oneSectionContainer,
.whiteBackground {
  width: 100%;
}

.sectionContainer .maxWidth,
.oneSectionContainer .maxWidth,
.whiteBackground .maxWidth {
  max-width: 1080px;
  margin: auto;
  padding: 30px 40px;
  width: 100%;
}

.oneSectionContainer {
  padding: 10px 0 50px 0;
}

.whiteBackground {
  padding: 50px 0;
}

.whiteBackground {
  background-color: #ffffff;
}

.section0 {
  background-color: #eeeeee;
}

.section1 {
  background-color: #ffffff;
}

@media screen and (min-width: 1500px) {
  .titleContainer2 {
    height: calc(80px + 34.728829686vw);
    max-height: 85vh;
  }

  .pageContainer .maxWidth2 .stickyDiv img {
    height: 34.728829686vw;
    max-height: 85vh;
  }
}

@media screen and (max-width: 750px) {
  .titleContainer .maxWidth {
    display: flex;
    flex-direction: column;
    padding-top: 80px;
  }

  .titleContainer .maxWidth .title {
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
  }

  .titleContainer .maxWidth .videoContainer {
    width: 100%;
    max-width: none;
    height: 50%;
    max-height: none;
  }

  .pageContainer .titleContainer2 {
    height: calc(80px + 34.728829686vw);
    min-height: 237px;
  }

  .pageContainer .titleContainer2 .title {
    padding: 0 0.3em 0.3em 30px;
  }

  .sectionContainer .maxWidth,
  .oneSectionContainer .maxWidth,
  .whiteBackground .maxWidth {
    padding: 40px;
  }
}

@media screen and (max-width: 450px) {
  .pageContainer .titleContainer2 {
    min-height: 0;
  }

  .pageContainer .titleContainer2 .title {
    font-size: 32px;
  }
}

@media print {
  .pageContainer {
    min-height: unset;
    height: fit-content;
  }

  .oneSectionContainer,
  .whiteBackground {
    padding: unset;
  }

  .maxWidth {
    padding: unset;
  }
}

.pageContainer {
  display: flex;
  flex-direction: column;
  margin: auto;
}

@media only screen and (max-width: 600px) {
  .pageContainer {
    width: 100%;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .pageContainer {
    width: 100%;
  }
}