How do I enrol

by Thet Hlaing

HTML

<div id="howdoienrol">
    <header><h2>How do I enrol for iGene<sup>TM</sup>?</h2></header>
       <div>
       Enquire with your obstetrician about iGene™. You can take the test after your doctor assesses your suitability. 
       </div>
       <div>
       Upon or after enrolment, blood is drawn from mother’s arm. Cell-free DNA is found in the circulating in the mother’s bloodstream.
       </div>  
       <div>
         Blood sample is analysed by a Whole Genome Sequencing approach using Next Generation Sequencing Technology. Between 5 -10 million DNA fragments from the whole genome are read and sequenced to achieve the highest accuracy. 
       </div>
       <div>
           Your doctor will receive your detailed report with a definitive result of “screen positive” or “screen negative” within 12 to 14 working days and advise you the next step. <br/>
           If the screening results come back negative, it suggests a low risk for the tested trisomies. Otherwise, women who screen positive for a particular chromosomal abnormality are advised to consult their obstetrician / doctor for further action, which may include a diagnostic confirmatory test, such as Amniocentesis or Chorionic Villus Sampling (CVS).
       </div>
    </div>

CSS

#howdoienrol div{display:inline-block; width:40%;vertical-align:top; margin-bottom:20px; padding-left:60px;}
#howdoienrol div:before{width:40px; position:absolute; margin-left:-60px;  padding:10px 0px; border-radius:20px; background-color:#3CBAC8; color:#fff; display:inline-block; text-align:center; }
#howdoienrol div:nth-child(2):before{content:"1"; }
#howdoienrol div:nth-child(3):before{content:"2"; }
#howdoienrol div:nth-child(4):before{content:"3"; }
#howdoienrol div:nth-child(5):before{content:"4"; }
@media screen and (max-width:620px){ #howdoienrol div{width:auto;}}