/******************************

[Table of Contents]

1. Body and some general stuff
3. NICE Timeline
3. Investment Area
4. Background Page Responsiveness

******************************/

/******************************
1. Body and some general stuff
*******************************/

/** Unordered list properties: color, font size, padding left **/
ul {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    margin-top: 0;
    margin-bottom: 1rem;
}

/** Paragraph properties: color, font size, padding left **/
p {
    display: block;
    list-style-type: decimal;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    margin-top: 0;
    margin-bottom: 1rem;
}


/** Margin 80px from the top**/
.margin_80px{
	margin-top: 80px;
}

/** Padding 80px from the top and bottom **/
.padding_80px{
  padding-top: 80px;
  padding-bottom: 80px;
}

/** Padding 40px from the top and bottom **/
.padding_40px{
  padding-top: 40px;
  padding-bottom: 40px;
}

.padding_top_40px{
padding-top: 40px;
}


/** Unordered list properties: padding space from left, line height **/
.unordered_list {
  position: relative;
  padding-left: 20px;
  line-height: 1.8em !important;

}

/** Unordered list Items properties: color, font weight, line height **/
.unordered_list li span {
    font-weight: 400;
    color: #6c6a74;
    line-height: 1.82em !important;
    font-size: 18px;
}

/** Unordered list Items properties: color, font weight, line height **/
.unordered_list li {
  position: relative;
  padding-left: 30px;
}

/** Unordered list circle properties: color, font weight, line height **/
.unordered_list li:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid #007bff;
  background: #fff;
  top: 10px;
  left: 0;
  border-radius: 50%;
}

/** Mission paragraph font color **/
.paragraph_font_color{
 color: #6c6a74;
}


/**  Light grey background **/
.light_grey{
  background: #f8f9fa;
  border-radius: 10px;
}


/******************************
2. NICE ESTABLISMENT TIMELINE
*******************************/


/* The actual timeline cards width */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

/* The Actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #eaf4ff;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -4px;
}

/* The Actual Containers holding content Properties */
.timeline_container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline Properties */
.timeline_container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  border: 4px solid #007bff;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the middle container  to the right side */
.right {
  left: 50%;
}

/* Fix the middle circle in the timeline to the left side */
.right::after {
  left: -14px;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #eaf4ff;
  border-width: 10px 10px 10px 0;
  border-color: transparent #eaf4ff transparent transparent;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #eaf4ff;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #eaf4ff;
}

/* The actual container to hold the content */

.timeline_content{
  padding: 20px 30px;
  background-color: #eaf4ff;
  position: relative;
  border-radius: 10px;
}


/******************************
3. INVESTMENTS AREA
*******************************/

/** content card corner, content padding, content background color **/
.investment_content {
   padding: 20px 30px;
   background-color: #fff;
   position: relative;
   border-radius: 6px;
   padding: 20px;
}

.investment_content p{
   line-height: 1.5
}

/** card Box shadow,border top radius, margin space from next investment card **/
.investment_card {
  position: relative;
  z-index: 1;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  background-color: #ffffff;
  margin: 10px;
 }

/** Investment Image properties: border radius from the top, full width **/
.investment_card img {
  width: 100%;
  border-radius: 6px 6px 0 0;
}

/** Investment Name header title properties **/
.investment_card .investment_content h4 {
  margin-bottom: 5px;
  color: #007bff;
}

/** Investment content information properties **/
.investment_card .investement_content p {
  font-size: 15px;
  padding-inline-start: 0px;
}

.image_size{
width: 100px;
height: 100px;
}

/******************************
4. BACKGROUND PAGE RESPONSIVENESS
*******************************/

/************
1. 767px
************/

@media only screen and (max-width: 767px)
{

/**END OF HOME PAGE - RESPONSIVENESS **/

  /** Undordered list padding from the left is decreased to match screen size margins **/
  .unordered_list{
    padding-left: 50px;
  }

  /* Place the timelime to the left */
  .timeline::after {
     left: 31px;
  }

  /* Full-width containers */
  .timeline_container {
     width: 100%;
     padding-left: 70px;
     padding-right: 25px;
  }

  /* Make sure that all arrows are pointing leftwards */
  .timeline_container::before {
     left: 60px;
     border: medium solid white;
     border-width: 10px 10px 10px 0;
     border-color: transparent #eaf4ff transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left::after,
  .right::after {
      left: 15px;
  }

  /* Make all right containers behave like the left ones */
  .right {
      left: 0%;
  }

	.timeline_content{
	  padding: 20px 10px;
	  background-color: #eaf4ff;
	  position: relative;
	  border-radius: 10px;
	}
}
