.divider-note-container {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 60px;
  margin-top: 5px;
}

.divider-note-background {
  width: 100%;
  background-color: #cfcfcf;
  height: 5px;
}

.divider-note-color-line {
  width: 100%;
  background-color: var(--main-color);
  position: relative;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.divider-note-title {
  margin-bottom: 0;
  margin-top: 70px;
  line-height: normal;
  color: var(--main-color);
}

.divider-note {
 border-radius: 50%;
width: 45px;
height: 45px;
display: flex;
flex-direction: column;
justify-content: center;
align-content: center;
align-items: center;
background-color: var(--main-color);;
color: white;
font-weight: bold;
font-size: 22px;
font-family: var(--default-title-font);
}

@media only screen and (max-width: 650px) { 
  .divider-note-container {
    margin-bottom: 35px;
  }

  .divider-note {
    width: 35px;
    height: 35px;
    top: -12.5px;
    font-size: 23px;
  }

  .divider-note-title {
    margin-top: 35px;
  }
}