/* Sidebar styles */
.atc-sidebar {
    background-color: #e6eaf0;
    padding: 15px 15px 20px 30px;
}

/* hr Styles */
.atc-red-line {
	margin-top: 15px;
	margin-bottom: 20px;
	width: 20%;
	border: 2px solid #b5121b;
}
/* Heading Styles */
.atc-heading01 {
	font-size: 36px;
	font-weight: 700;
	text-transform: uppercase;
}

/* Call to Action design 01 - 3 Column Flexbox*/
.atc-cta01-container{
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: space-around;
}

.atc-cta01-item {
  	background-color: #cee2f5;
  	border-radius: 8px;
  	width: 30%;
 	margin: 15px;
  	box-sizing: border-box;
}
.atc-cta01 {
  	color: #414f60;
  	list-style-type: none;
  	margin: 0px;
  	padding: 10px;
    text-align: center;
}
.atc-cta01 button {
  margin: 15px 0px;
}
.atc-cta01-headline {
  font-size: 30px;
	font-weight: 400;
	text-transform: uppercase;
}
.atc-cta01 i {
  font-size: 4em;
}
.atc-cta01 hr {
	margin-top: 10px;
	margin-bottom: 15px;
	width: 50%;
	border: 1px solid white;
}
@media only screen and (max-width: 768px) {
  .atc-cta01-container{
  	display: flex;
    Flex-direction: column;
  	flex-wrap: nowrap;
  	justify-content: space-around;
}
  
  .atc-cta01-item {
    width: 100%;
  }
}

/* List Styles */
 #atc-orderlist01 ol {
	list-style: none; 
  counter-reset: num;
}

#atc-orderlist01 ol li{
  padding: 7px;
  counter-increment: num;
}

#atc-orderlist01 ol li::before {
  	content: counter(num);
 	color: white;
    display: block;
  	float: left;
  	width: 1.5em; 
  	height: 1.5em;
  	background-color: black;
  	margin-left: -2em;
    margin-right: 1em; 
  	text-align: center; 
	border-radius: 50%;
}

 #atc-orderlist01 span {
 	display:block;
   	padding: 7px 7px 7px 35px;
}

/* 5 Column flexbox */

.atc-5col-container{
  	background-color: #d5d8dc;
  	border-radius: 8px;
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: space-around;
}
.atc-5col-item {
  	width: 15%;
 	margin: 10px 5px;
  	box-sizing: border-box;
  	text-align: center;
}
.atc-5col-header {
 	background-color: #68717d;
  	border-radius: 8px;
  	color: white;
  	width: 100%;
  	box-sizing: border-box;
	text-align: center;
}
/* Tables */
.atc-table01 {
    background-color: aliceblue;
    border: 0px;
}
.atc-table01 thead {
    background-color: dodgerblue;
    border-style: none;
    color: white;
}
.atc-table01 * {
  border-style: none; 
}

/*Flex Box Equal Height*/
.row.display-flex {
  display: flex;
  flex-wrap: wrap;
}
.row.display-flex > [class*='col-'] {
  flex-grow: 1;
}

/*Price Box*/
.price-box{
  border: 1px solid #a9a9a9; border-radius: 5px;
  padding: 10px;
}
/*Steps for Program Entry Grid Container*/
.steps-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  column-gap: 20px;
}
.steps-flbx-card, .steps-flbx-hilight {
	display: flex; 
  flex-direction: column;
  padding: 1em;
	width: 100%;
  border: 1px solid #f0f0f0;
}
.steps-flbx-card p, .steps-flbx-hilight p {
	flex: 1 0 auto;
}
  .steps-flbx-card h3, .steps-flbx-hilight h3 {
    height: 4em; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    flex-direction: column;
    margin: 0px;
    border-radius: 10px;
  }
.steps-flbx-card h3 {
    background-color: #414f60; 
    color: #fff; 
  }
.steps-flbx-hilight h3 {
    background-color: #cee2f5; 
    color: #414f60; 
  }
  .steps-flbx-card small {
    color: #fff;
    padding-top: 8px;
  }
.steps-flbx-hilight small {
    color: #414f60;
    padding-top: 8px;
  }
  
  @media screen and (max-width: 1023px) {
	.steps-grid-container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
    }
} 
  
  @media screen and (max-width: 767px) {
	.steps-grid-container {
    grid-template-columns: 1fr;
      row-gap: 20px;
    }
}