.columnsCoachingContainer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 3em;
}

.container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.groupPurchaseIcon {
  filter: brightness(0) saturate(100%) invert(78%) sepia(49%) saturate(409%) hue-rotate(37deg) brightness(90%) contrast(93%);
}

.buttonLike {
  background-color: rgb(111, 86, 166);
  color: white;
  width: 50%;
  opacity: 0.9;
  cursor: pointer;
  min-width: fit-content;
  padding: 14px 20px;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  font-size: .9em;
}

.buttonLike:hover {
  opacity: 1;
  background-color: rgb(78, 191, 180);
  color: black;
}

.banner {
  width: 100%;
  background-color: rgb(126, 126, 126);
  height: 100px;
}

.boxWhiteBg {
  background-color: #fff;
  padding: 1em;
}

.boxWhiteBg .flexBox {
  gap: 1em;
  align-items: center;
  display: flex;
}

.boxWhiteBg .flexBox img {
  height: 3em;
  object-fit: contain;
}

.boxWithBorder {
  display: flex;
  flex-direction: column;
  padding: 30px 50px;
  border: solid 3px #4EBFB4;
  background-color: #fff;
  align-items: center;
}

.boxWithBorder p,
.boxWithBorder ol {
  width: 100%;
}

.gridContainer {
  display: grid;
  grid-template-rows: auto min-content;
  justify-items: center;
  background-color: #fff;
  padding: 25px;
  max-width: 30em;
}

.gridContainer .columnsCoaching {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.columnsForButtons {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  height: fit-content;
}

.gridContainer .columnsCoaching img {
  margin: 0 auto;
  height: 50px;
}

.gridContainer .columnsCoaching button {
  font-size: 1em;
  width: 100%;
  border-radius: 5px;
  background-color: #4EBFB4;
  color: #484e50;
}

.gridContainer .columnsCoaching button:hover {
  color: #ffffff;
  background-color: #6F56A6;
  filter: drop-shadow(0 0 10px #bababa);
}

.gridContainer .addOnContainer {
  background-color: #eaffea;
}

.leftText {
  width: 100%;
  text-align: left;
  color: #585858;
  padding: 40px 0;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5em;
}

.centerText {
  color: #585858;
  text-align: center;
  padding: 40px 0;
  font-size: 1em;
  font-weight: 400;
  line-height: 2em;
}

.centerText ol {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.featuresContainer {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
}

.featuresContainer .featureCard {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: center;
  gap: 0 35px;
  cursor: pointer;
  text-decoration: none;
}

.featuresContainer .featureCard:hover .featureCardLeft,
.featuresContainer .featureCard:hover .featureCardRight {
  filter: drop-shadow(2px 4px 6px #000);
}

.featuresContainer .featureCard .featureCardLeft {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border-width: 5px;
  border-style: solid;
}

.featuresContainer .featureCard .featureCardLeft img {
  object-fit: contain;
  height: 80%;
  width: 80%;
}

.featuresContainer .featureCard .featureCardRight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-width: 5px;
  border-style: solid;
  border-radius: 1vw;
  padding: 1vw 2vw;
}

.featuresContainer .featureCard .featureCardRight .featureCardTitle {
  color: #4d4d4d;
  font-family: LModernMono, Arial, system-ui, sans-serif;
  font-weight: 300;
  font-size: 1.5em;
  letter-spacing: -0.02rem;
  line-height: 2em;
}

.featuresContainer .featureCard .featureCardRight .featureCardText {
  line-height: 1.5em;
  color: #585858;
}

.featuresContainer .featureCard .dottedPath {
  width: 100%;
  object-fit: contain;
}

.featuresContainer .featureCard:nth-child(odd) .dottedPath {
  margin-left: 65px;
}

.featuresContainer .featureCard:nth-child(even) {
  margin-left: 115px;
}

.featuresContainer .featureCard:nth-child(even) .dottedPath {
  margin-left: -65px;
}

.featuresContainer .featureCard:hover .featureCardTitle {
  text-decoration: underline;
}

.featuresContainer .featureCard:first-child .featureCardLeft {
  border-color: #2ed3c5;
}

.featuresContainer .featureCard:first-child .featureCardRight {
  border-color: #2ed3c5;
  background-color: #cffcf8;
}

.featuresContainer .featureCard:first-child .dottedPath {
  filter: invert(61%) sepia(100%) saturate(311%) hue-rotate(125deg) brightness(94%) contrast(93%);
}

.featuresContainer .featureCard:first-child:hover .featureCardLeft {
  background-color: #2ed3c5;
  border-color: #cffcf8;
}

.featuresContainer .featureCard:first-child:hover .featureCardRight {
  background-color: #ffffff;
  border-color: #cffcf8;
}

.featuresContainer .featureCard:nth-child(2) .featureCardLeft {
  border-color: #a3cc62;
}

.featuresContainer .featureCard:nth-child(2) .featureCardRight {
  border-color: #a3cc62;
  background-color: #e9f3da;
}

.featuresContainer .featureCard:nth-child(2) .dottedPath {
  transform: scaleX(-1);
  filter: invert(86%) sepia(58%) saturate(415%) hue-rotate(24deg) brightness(84%) contrast(88%);
}

.featuresContainer .featureCard:nth-child(2):hover .featureCardLeft {
  background-color: #a3cd62;
  border-color: #e9f3da;
}

.featuresContainer .featureCard:nth-child(2):hover .featureCardLeft img {
  filter: brightness(0.1) invert(2);
}

.featuresContainer .featureCard:nth-child(2):hover .featureCardRight {
  background-color: #ffffff;
  border-color: #e9f3da;
}

.featuresContainer .featureCard:nth-child(3) .featureCardLeft {
  border-color: #f7cd14;
}

.featuresContainer .featureCard:nth-child(3) .featureCardRight {
  border-color: #f7cd14;
  background-color: #fef8de;
}

.featuresContainer .featureCard:nth-child(3) .dottedPath {
  filter: invert(75%) sepia(95%) saturate(434%) hue-rotate(352deg) brightness(98%) contrast(98%);
}

.featuresContainer .featureCard:nth-child(3):hover .featureCardLeft {
  background-color: #f7cd14;
  border-color: #fef8de;
}

.featuresContainer .featureCard:nth-child(3):hover .featureCardLeft img {
  filter: brightness(0.1) invert(2);
}

.featuresContainer .featureCard:nth-child(3):hover .featureCardRight {
  background-color: #ffffff;
  border-color: #fef8de;
}

.featuresContainer .featureCard:nth-child(4) .featureCardLeft {
  border-color: #2ed3c5;
}

.featuresContainer .featureCard:nth-child(4) .featureCardRight {
  border-color: #2ed3c5;
  background-color: #cffcf8;
}

.featuresContainer .featureCard:nth-child(4) .dottedPath {
  transform: scaleX(-1);
  filter: invert(61%) sepia(100%) saturate(311%) hue-rotate(125deg) brightness(94%) contrast(93%);
}

.featuresContainer .featureCard:nth-child(4):hover .featureCardLeft {
  background-color: #2d828e;
  border-color: #cffcf8;
}

.featuresContainer .featureCard:nth-child(4):hover .featureCardLeft img {
  filter: brightness(0.1) invert(2);
}

.featuresContainer .featureCard:nth-child(4):hover .featureCardRight {
  background-color: #ffffff;
  border-color: #cffcf8;
}

.featuresContainer .featureCard:nth-child(5) .featureCardLeft {
  border-color: #a3cc62;
}

.featuresContainer .featureCard:nth-child(5) .featureCardRight {
  border-color: #a3cc62;
  background-color: #e9f3da;
}

.featuresContainer .featureCard:nth-child(5):hover .featureCardLeft {
  background-color: #a3cc62;
  border-color: #e9f3da;
}

.featuresContainer .featureCard:nth-child(5):hover .featureCardLeft img {
  filter: brightness(0.1) invert(2);
}

.featuresContainer .featureCard:nth-child(5):hover .featureCardRight {
  background-color: #ffffff;
  border-color: #e9f3da;
}

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

  .featuresContainer .featureCard {
    gap: 0 20px;
  }

  .featuresContainer .featureCard .featureCardLeft {
    width: 100px;
    height: 100px;
  }

  .featuresContainer .featureCard:nth-child(odd) .dottedPath {
    margin-left: 50px;
  }

  .featuresContainer .featureCard:nth-child(even) {
    margin-left: 95px;
  }

  .featuresContainer .featureCard:nth-child(even) .dottedPath {
    margin-left: -50px;
  }
}

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

  .featuresContainer .featureCard {
    gap: 0 10px;
  }

  .featuresContainer .featureCard .featureCardLeft {
    width: 60px;
    height: 60px;
  }

  .featuresContainer .featureCard .dottedPath {
    grid-column: 1/span 2;
    height: 100px;
  }

  .featuresContainer .featureCard:nth-child(odd) .dottedPath {
    margin-left: 0;
  }

  .featuresContainer .featureCard:nth-child(even) {
    margin-left: 0;
  }

  .featuresContainer .featureCard:nth-child(even) .dottedPath {
    margin-left: 0;
  }
}

.carousel {
  position: relative;
  height: 150px;
  overflow-x: hidden;
  overflow-y: hidden;
  scrollbar-width: 0;
  scrollbar-color: rgba(255, 255, 255, 0);
}

.viewport {
  position: absolute;
  height: auto;
  display: grid;
  align-items: center;
  overflow-x: scroll;
  counter-reset: item;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  transition: 0.5s;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 600%;
}

.li {
  width: 100%;
  display: grid;
  grid-template-columns: 100px auto;
  gap: 20px;
}

.li img {
  height: 100px;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
}

.li .textRight {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.li .textRight .nameTitle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.li .textRight .nameTitle small {
  font-size: 0.7em;
}

.li .textRight .comment {
  margin-bottom: 1em;
  font-size: 1.2em;
  font-style: italic;
}

.li .textRight .comment span {
  font-size: 1.3em;
}

.navigation {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.navigation_list,
.navigation_item {
  display: inline-block;
  padding: 0;
  margin: 0;
  height: 20px;
}

.navigation_list {
  display: flex;
  gap: 0.5em;
  width: 75px;
  justify-content: space-between;
}

.navigation_list,
.navigation_item,
.navigation_button {
  user-select: none;
}

.navigation_button {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #ccc;
  background-clip: content-box;
  border: none;
  border-radius: 50%;
  font-size: 0;
  transition: transform 0.1s;
  cursor: pointer;
}

.navigation_button.selected {
  background-color: #669933;
}

.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;
  }
}