.text{
  position: relative;
  display: flex;
}


.paragraph-text{
  position: relative;
  z-index: 1;
  border-radius:  10px;
}

.paragraph-text-col{
  border-radius: 10px;
}

.paragraph-text-col p, .paragraph-text p{
  margin-bottom: 1em;
}


.paragraph-text ul, .paragraph-text-col ul{
  --icon-space: 1.3em;
  list-style: none;
  padding: 0;
}

.paragraph-text-col ul li, .paragraph-text ul li{
  padding-left: var(--icon-space);
}

.paragraph-text ul li:before, .paragraph-text-col ul li:before {
  content: "\f00c"; /* FontAwesome Unicode */
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  margin-left: calc( var(--icon-space) * -1 );
  width: var(--icon-space);
}

.paragraph-text p{position: relative; font-family: Montserrat,sans-serif;}

.paragraph-text p:first-child, .paragraph-text-col p:first-child{margin-top: 0;}

.paragraph-text p:last-child, .paragraph-text-col p:last-child{margin-bottom: 0;}

.paragraph-text h1:first-child, .paragraph-text h2:first-child, .paragraph-text h3:first-child, .paragraph-text h4:first-child, .paragraph-text h5:first-child, .paragraph-text h6:first-child{
  margin-top: 0;
  margin-bottom: 10px;
}

.paragraph-text-col h1, .paragraph-text-col h2, .paragraph-text-col h3, .paragraph-text-col h4, .paragraph-text-col h5, .paragraph-text-col h6{
  margin-top: 0;
  margin-bottom: 10px;
}  


@media only screen 
      and (min-width: 0px) 
      and (max-width: 768px) 
{ 

  .text-grid p{
    margin-top: 0;
  }
}

@media only screen 
      and (min-width: 769px) 
      and (max-width: 1124px) 
{ 


}