.tech_wrapper {
   width: 100%;
   height: 70px;
   display: flex;
   flex-flow: row nowrap;
   align-items: center;
   justify-content: left;
   background-color: var(--bg-color);
   border-radius: 5px;
   position: relative;
   overflow: clip;
}

.tech_wrapper.tech_highlight::after {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 100%;
   /* background-color: red; */
   box-shadow: inset 0 0 20px 0 var(--3-color);
   pointer-events: none;
}

.tech_wrapper img {
   height: 50px;
   margin: 0 10px;
}

.tech_wrapper p {
   color: var(--text-color);
   font-size: 22px;
}
