.tutos-container {
  background-color: #0b619a;
  border-radius: 8px;
  color: white;
}

.tutos {
  background-color: #e7e7e7;
  border: var(--light-grey) 1px solid;
  border-radius: 8px;
  padding: 16px;
  color: #212529;
}

.link {
  text-decoration: none;
  color: #0b619a;
  font-weight: bold;
}

.divider {
  /* minor cosmetics */
  display: table;
  font-size: 1.5rem;
  text-align: center;
  width: 75%; /* divider width */
  margin: 0.5em auto; /* spacing above/below */
}
.divider span {
  display: table-cell;
  position: relative;
}
.divider span:first-child,
.divider span:last-child {
  width: 50%;
  top: 20px; /* adjust vertical align */
  -moz-background-size: 100% 2px; /* line width */
  background-size: 100% 2px; /* line width */
  background-position: 0 0, 0 100%;
  background-repeat: no-repeat;
}
.divider span:nth-child(2) {
  color: #000;
  padding: 0px 5px;
  width: auto;
  white-space: nowrap;
}
.divider-blue span:first-child {
  /* color changes in here */
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(transparent),
    to(#0836fb)
  );
  background-image: -webkit-linear-gradient(180deg, transparent, #0836fb);
  background-image: -moz-linear-gradient(180deg, transparent, #0836fb);
  background-image: -o-linear-gradient(180deg, transparent, #0836fb);
  background-image: linear-gradient(90deg, transparent, #0836fb);
}
.divider-blue span:last-child {
  /* color changes in here */
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#0836fb),
    to(transparent)
  );
  background-image: -webkit-linear-gradient(180deg, #0836fb, transparent);
  background-image: -moz-linear-gradient(180deg, #0836fb, transparent);
  background-image: -o-linear-gradient(180deg, #0836fb, transparent);
  background-image: linear-gradient(90deg, #0836fb, transparent);
}
.divider-lightblue span:first-child {
  /* color changes in here */
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(transparent),
    to(#5a9cf4)
  );
  background-image: -webkit-linear-gradient(180deg, transparent, #5a9cf4);
  background-image: -moz-linear-gradient(180deg, transparent, #5a9cf4);
  background-image: -o-linear-gradient(180deg, transparent, #5a9cf4);
  background-image: linear-gradient(90deg, transparent, #5a9cf4);
}
.divider-lightblue span:last-child {
  /* color changes in here */
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#5a9cf4),
    to(transparent)
  );
  background-image: -webkit-linear-gradient(180deg, #5a9cf4, transparent);
  background-image: -moz-linear-gradient(180deg, #5a9cf4, transparent);
  background-image: -o-linear-gradient(180deg, #5a9cf4, transparent);
  background-image: linear-gradient(90deg, #5a9cf4, transparent);
}

.h-divider {
  margin: auto;
  margin-top: 1rem;
  width: 80%;
  position: relative;
}

.h-divider .h-shadow {
  overflow: hidden;
  height: 20px;
}

.h-divider .h-shadow:after {
  content: "";
  display: block;
  margin: -25px auto 0;
  width: 100%;
  height: 25px;
  border-radius: 125px/12px;
  box-shadow: 0 0 8px blue;
}
