.content-section-line {
  text-align: center;
  margin-bottom: 2rem;

  span {
    background-color: var(--highlight-color);
    border-top: 1px solid var(--highlight-color);
    border-bottom: 1px solid var(--highlight-color);
    display: inline-block;
    width: 95%;
    height: 2px;
    margin-bottom: 15px;
    /*border-bottom: 1px solid rgba(0, 0, 0, 0.1);*/
    /*border-top: 1px solid rgba(0, 0, 0, 0.1);*/
    /*display: inline-block;*/
    /*width: 200px;*/
    /*height: 4px;*/
  }
}

/***********
** Splash
**********/
.splash-container {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 56vh;

  .overlay {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 49, 88, 0.88);
  }

  .content {
    position: relative;
    z-index: 2;
  }

  .content h1 {
    font-size: 3em;
    color: #f2f2f2;
    font-style: italic;
    margin: 0;
    margin-bottom: 8px;
  }

  .content p {
    font-size: 1.2em;
    color: #f2f2f2;
    font-style: italic;
    margin: 10px 0 30px;
  }

  .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0 20px;
  }

  /*.buttons a {*/
  /*  padding: 10px 20px;*/
  /*  background-color: white;*/
  /*  color: black;*/
  /*  text-decoration: none;*/
  /*  border-radius: 5px;*/
  /*  font-size: 1em;*/
  /*  transition: background-color 0.3s, color 0.3s;*/
  /*}*/
}


/***********
** Why OCMS
**********/
.why-ocms {
  .why-inner-cont {
    width: 70%;
    margin: 0 auto;
  }

  .flex-block-rev {
    .left {
      order: 1;
    }

    .right {
      order: 0;
    }
  }

  .why-block {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-flow: row nowrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: center;

    .left,
    .right {
      display: flex;
      flex-flow: column nowrap;
      align-items: center;

      p {
        text-align: justify;
        hyphens: auto;
      }
    }


    .graphic {
      display: flex;

      >img {
        width: 64px;
      }
    }
  }
}


/***********
** Learn to Play
**********/
.learn-to-play {

  .content {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;

    >div {
      display: flex;
      flex-flow: column nowrap;
      flex: 0 0 30%;
      align-items: center;
      margin: 15px 25px;

      >img {
        border-radius: 5px;
        border: 1px solid black;
        margin-bottom: 15px;
        max-width: 420px;
        max-height: 280px;
      }
    }
  }
}

/***********
** Testimonials
**********/
.testimonials {

  >span {
    display: block;
    margin-bottom: -10px;
    font-style: italic;
    text-align: center;
  }

  .testimonials-top {
    padding: 100px 60px;
    background-color: #3498db;
    text-align: center;
    color: white;
    font-size: 20px;

    >span,
    >div {
      color: white;
    }

    >div.person {
      padding-top: 15px;
    }
  }
}

.testimonials-bottom {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 20px 0px;

  .testimonial-block {
    font-size: 1.2rem;
    line-height: 28px;
    font-style: italic;
    padding: 32px 25px 35px 25px;
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    margin-right: 15px;
    vertical-align: top;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.025);
    display: flex;
    flex-flow: column nowrap;
    flex: 0 0 40%;

    >span {
      flex-grow: 1;
    }

    .person {
      font-style: initial;
      text-align: center;
      margin-top: 15px;
      font-weight: bold;
    }
  }
}


/***********
** Our Team
**********/
.our-team {

  .teachers {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    margin: 15px 0px;

    >.teacher-card {
      display: flex;
      flex-flow: column nowrap;
      border: 1px solid black;
      border-radius: 5px;
      margin-bottom: 15px;
      height: 300px;
      text-decoration: none;

      >.img-cont {
        height: 100%;
        width: 200px;

        img {
          height: 265px;
          width: 100%;
          object-fit: cover;
          border-bottom: 1px solid black;
        }
      }

      >.name-cont {
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-around;
        align-items: center;
        height: 50px;
        font-weight: bold;
        font-style: italic;
      }
    }
  }
}

@media (max-width: 780px) {
  @media (max-width: 100vw) {
    div.why-block {
      flex-flow: column nowrap !important;

      p {
        margin-top: unset;
      }
    }

    .vid-container {

      iframe {
        width: 98%;
      }
    }

    .learn-to-play {
      img {
        max-width: 350px !important;
      }

      .content {

        >div {
          margin: 1rem;
          flex: 0 0 48%;
        }
      }
    }

    .testimonials-bottom {
      & .testimonial-block {
        position: unset;
        margin-bottom: 40px;
        margin-top: 15px;
        flex: 0 0 78%;
      }
    }

    .flex-block-rev {
      .left {
        order: 0 !important;
      }

      .right {
        order: 1 !important;
      }
    }
  }
}
