.hero-header {
    height: 300px;
    background-image: url("/img/about_hero_image.jpg");  
    background-size: cover;
  }
  .title {
    color: var(--primary);
  }
  .edit_btn {
    border: none;
    outline: none;
    background: var(--secondary);
    color: var(--primary);
    font-size: 15px;
  }
  .underline {
    width: 120px;
    height: 1px;
    background: var(--secondary);
  }
  .about_text {
    text-align: justify;
    font-size: 17px;
    line-height: 1.8em;
  }

  .golden_border {
    height: 400px;
    width: 350px;
    position: relative;
    background: linear-gradient(120deg, red, purple);
    padding: 10px;
  }
  .img_sec {
    background: #222;
    height: 100%;
  }
  .img_sec .img-container {
    height: 400px;
    width: 350px;
    position: absolute;
    top: -50px;
    right: -50px;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.5);
  }

  .img-container div{
    height: 100%;
    width: 100%;
    position: relative;
  }

  .img-container div img{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .img-container div .img_overlay{
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.6);
    transition: all 0.3s;
    opacity: 0;
  }

  .img_overlay .progress{
    height: 10px;
    display: none;
  }

  .img-container div:hover .img_overlay{
    opacity: 1;
  } 

  .img_overlay label{
    height: 100%;
    width:100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    color: #222;
    cursor: pointer;
  }

  .author_name {
    font-weight: 600;
    background: -webkit-linear-gradient(120deg, red, purple 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  #about_save,
  #author_save, #about_textarea, #about_author_textarea {
    display: none;
  }

  .loading_overlay {
    justify-content: center;
    align-items: center;
  }

  .blinking_balls_sec {
    position: static !important;
  }

  @media screen and (max-width: 820px) {
    .golden_border {
      height: 300px;
      width: 250px;
    }

    .img_sec .img-container {
      height: 300px;
      width: 250px;
      object-fit: cover;
      position: absolute;
      top: -50px;
      right: -50px;
    }
  }