/* v1 css */

/************************************************************************
 * Member Org styling
 ************************************************************************/

h1 {
    font-family: Helvetica Neue;
    /* line-height: 1.2; */
    font-weight: 800;
    margin-bottom: 6rem;
/* 	text-align: center; */
	/* font-size: 3em; */
}


h2 {
	font-family: Helvetica; 
/* 	font-weight: bold; */
	font-weight: 800;
}


body {
    font-family: Helvetica;
}


* {
    box-sizing: border-box;
}

.text {
    text-align: justify; 
    /* display: block; */
	font-family: Helvetica; 
    font-size: 16px; 
    font-weight: 200;
	line-height: 28px; 
	margin-left: auto; 
	margin-right: auto; 
	width: 25em;
}



.underline {
	line-height: 1; 
	padding: 30px 20px 30px 20px; 
	text-align: left; 
	/* text-transform: uppercase; */

	background-size: 1px 1em;
	box-shadow: 
        /* inset 0 -0.7em white,  */
        inset 0 -0.7em white,
        inset 0 -1.3em #A1C1F7;
        /* inset 0 -2.0em rgb(208, 92, 62); */
        
        /* inset 0 -2.5em #92ccbf; */
        /* inset 0 -2.5em #f1d44e; */
        /* inset 0 -2.5em #CD9BD6; */
	display: inline;
}

.card {
/*     color: rgb(82, 82, 82); */
    float: left;
    /* width: calc(25% - 20px);
    height: 200px; */
    height:10em;
    width:18em;
    padding: 20px;
    border-radius: 8px;
    margin: 10px;
    margin-left: 10px;
	margin-right: 50px;
	margin-bottom: 20px;
	-webkit-box-shadow: none;
  	-moz-box-shadow: none;
  	box-shadow: none;

    
    transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;

}    

.card:hover {
    box-shadow: 0 12px 24px rgba(38, 38, 38, 0.2);
    top: -4px;
    background: white;
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out; */
    color: rgb(82, 82, 82);
    
}


.card:hover:before {
    transform: scale(2.15);
}

.card p a {
    font: 16px Helvetica Neue;
    /* color: white; */
    color:  rgb(82, 82, 82);
    text-decoration: none;
    text-transform: capitalize;
    font-weight: bold;
    text-align: center;
}


.card a:hover {
    /* color: rgb(40, 209, 138); */
    color: #6172BE;
    /* color: #506EF1; */
    /* color: #45a186; */
    
}

.container:after {
    content: "";
    display: table;
    clear: both;
    
}



ol {
    list-style: none;
    counter-reset: count;
    /* display: flex; */
    
    /* margin-top: 100px;
    margin-bottom: 100px; */
    
    width: 100%;
	margin-left: 12%;
    /* list-style-type: decimal-leading-zero; */

	  display: flex;
	  flex-wrap: wrap;
	  margin: 0;
	  margin-top: 100px;
	  margin-bottom: 100px;
	  padding: 0;
}

ol li {
    counter-increment: count;
    /* font-size: 0.5rem; */
	display: flex;
  width: 50%;
  font-size: 1.0rem;
  margin-bottom: 2.9rem;

}

ol li::before {
    content: counter(count);
    font-weight: 700;
    font-size: 4rem;
    margin-right: 0.5rem;
    font-family: Helvetica Neue;
    line-height: 1;
    
}

@media screen and (max-width: 600px) {
    .card {
        width: 100%;
    }
}



















