.firm{
  
    align-items: center;
    padding-top: 1.5rem;
    --padding-inline:0;
   position: fixed;
    z-index: 1;
    justify-content: center;
  
    
}

.title{
    position:relative;
    font-weight:800;
    white-space: nowrap;
}

.title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:2px;
    background-color: var(--linear-gradient);
    animation: title__transform linear;
    animation-timeline: view();
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 250ms ease-in;
    
}
h2.title:hover{
    cursor: pointer !important;
}
.title:hover::after {
       transform: scaleX(1) !important;
        transform-origin: left !important;
        transition: transform 250ms ease-in !important;
}

.firm__block{
    background-color: #202612;
    height:100%;
    width:100%;
    border: 0;
    box-shadow: 0 0 3px 4px rgba(17, 12, 6, 0.523);
}

.title{
   
    font-size: clamp(1rem, calc(1.35rem + 1vw), 3.75rem);
}
.content{
    font-size: 15px;
    /* max-width: 600px; */
    text-align:justify;
    margin-top: 0.8rem;
    /* border: 1px solid red; */
    word-spacing: -2px;
}


.box{
    flex-direction: column ;
    align-items: center;
  
    gap: 1rem;
    height:80%; 
    width:80%;
}

.box .content>span{
    display:none;
}

.profile__body>*:where(:last-child){
    align-self: flex-end;
}


@keyframes reveal {
    0% {
      transform: translate(0);
    }
    25% {
      transform: translate(100%);
    }
  }



  @media (min-width:640px){
    .container{
        max-width:640px;
    }
    .firm{
        height:300px;
    }
    .svg{
        width:50px !important;
        height:50px !important;
    }
  }

  @media (min-width:768px){
    .content{
        font-size: 20px;
       
        margin-top: 0.8rem;
    }
  }