 .about-neo__title {
     position: absolute;
     top: 0px;
     LEFT: 52%;
     font-weight: 800;
     color: var(--main-blue);
     transform: translate(0%, 0%);

     font-size: clamp(24px, 6%, 40px);
 }

 .about-neo {
     display: flex;
     gap: 32px;
     align-items: stretch;
 }

 .about-neo__image {
     position: relative;
     flex-shrink: 0;
 }

 .about-neo__svg {
     height: 370px;
     display: block;
 }

 .about-neo__content {
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 @media (max-width: 1200px) {

     .about-neo {
         display: flex;
         gap: 32px;
         align-items: stretch;
         flex-direction: column;
     }

     .about-neo__svg {
         height: 100%;

     }
 }