.content-section-column
{
      width: 100%;
      height: auto;
      background-color: transparent;

      font-family: TTNorms,system-ui,-apple-system,Segoe UI,roboto,Helvetica Neue,arial,Noto Sans,Liberation Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
}
.content-section-column
.column-container
{      
      width: 95%;     
      height: 60vh;      
      margin: 0 auto;      
      border-radius: 10px;      
      background-color: #f9f9f9;     
}
.content-section-column
.column-box
{          
      width: 60%;
      margin: 0 auto;
      padding: 30px 40px 40px 40px;
}
.content-section-column
.column-item
{
      width: 100%;
      display: flex;
      justify-content: space-between;
}
.content-section-column
ul
{
      margin-top: 10px;
      width: calc(100% / 5 - 10px);
}
.content-section-column
li
{
      padding: 8px 0;      
      line-height: 2;            
}
.content-section-column
.column-heading
{      
      font-size: 14px;
      color: #747474;
      font-weight: 500;     
      position: relative;
      margin-bottom: 20px;           
}
.content-section-column
.column-heading::before
{
      content: '';     
      left: 0;     
      width: 4px;
      height: 1px;
      bottom: -2px;
      position: absolute;
      background-color: #747474;
}
.content-section-column
a
{      
      font-size: 16px;
      color: #232323;
      font-weight: 500;             
      position: relative;
      
      transition: 0.5s;
}
.content-section-column
a::after 
{      
      content: "";      
      left: 0;
      top: 100%;
      width: 100%;
      height: 1px;
      position: absolute;
      background-color: #999;

      transform: scaleX(0);
      transform-origin: right;

      transition: transform 0.5s;
}
.content-section-column
a:hover::after 
{
      transform: scaleX(1);
      transform-origin: left;
}
.content-section-column
.column-address
{     
      padding-top: 50px;
}
.content-section-column
h5
{           
      font-size: 14px;
      color: #01a437;
      font-weight: 500;      
      letter-spacing: 0.8px;      
}
.content-section-column
p
{     
      font-size: 14px;
      color: #0a1326;
      font-weight: 500;       
}
.content-section-column
.column-line
{      
      border: 0;
      margin-top: 40px;
      margin-bottom: 40px;
      border-top: 0.1px solid #eaeaea;
}