.portfolio, .portfolio * {
    box-sizing: border-box;
    }
.portfolio {
   background: #f2f2f2;
    padding: 40px 10px 200px 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    position: relative;
    overflow: hidden;
   }

.project {
    max-width: 400px;
    margin: 60px 10px 40px 10px;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    align-self: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
   }

.logo-of-project {
    background: #ffffff;
    padding: 2px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* width: 90px; */
    height: 90px;
    position: relative;
    overflow: hidden;
   }

.rectangle-of-logo {
    height: inherit;
    border-radius: 1px;
    align-self: stretch;
    flex: 1;
    position: relative;
   }

.tittle-of-project {
    background: #ffffff;
    padding: 1px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    align-self: stretch;
   flex-shrink: 0;
    position: relative;
    overflow: hidden;
   }

.name-of-project {
   color: #4d4c4c;
    text-align: center;
    font: 400 30px 'Inter', sans-serif;
    position: relative;
    display: flex;
   align-items: center;
   justify-content: center}

.subtittle-of-project {
   background: #ffffff;
    padding: 1px;;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
   }

.subtittle-of-project2 {
    color: #727272;
    text-align: center;
    font: 400 18px 'Inter', sans-serif;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center}

.description-of-project {
   background: #ffffff;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.description-of-project2 {
    text-indent: 30px;
    color: #515151;
    text-align: left;
    line-height: 1.5  !important;
    font: 400 14px 'Inter', sans-serif;
    position: relative;
    align-self: stretch;
   }

.custom-hr {
      width: 50%;
      margin: 0 auto;
      border: none;
      height: 1px;
      background: linear-gradient(to right, transparent 49%, #000 49%, #000 51%, transparent 51%);
}