/* construction style */
  .completed{
    position: absolute;
    top: 2rem;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.6rem;
  }

  .inner-percentage{
    position: absolute;
    top: 2.5rem;
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 40px;
    font-size: 1rem;
  }

  .content>div{
    display: flex;
  }

  .image_section{
    text-align: left;
    position: relative;
    background: linear-gradient(to right, #00345A 10%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 7px;
  }

  .image_section>img{
    position: relative;
    border-radius: 7px;
    width: 100%;
    z-index: -1;
  }


  .type{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-content: space-between;
  }
  .type>a{
    border: #ddd solid 2px;
    margin: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: black;
    min-height: 18rem;
    max-height: fit-content;
    transition: 0.3s;
  }

  .type>a>h2{
    margin: 5px;
  }

  .type>a>p{
    margin: 5px;
    overflow: hidden;
  }

  .type>a:hover{
    border: #00345A solid 2px;
  }
  .content>button{
    border: #ddd solid 1px;
    background-color: white;
    width: 100%;
    color: #00345A;
    margin: 15px 0px;
    transition: 0.3s;
  }

  .content>button:hover{
    border: #00345A solid 1px;
  }


