.design-section {
	background-image: url(../imgs/tree_bg.png);
	background-repeat:no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #212121;
  min-height: 100vh;
  padding: 25px 0;
  font-family: Jost;

}

h1 {
  text-align:left;
  text-align-last: none;
  color:#fff ;
  font-size:16px;
}

h7{
	font-size:15px;
 color:#858478;
}

hr{ 
  margin-top: 1rem;
  margin-bottom: 1rem;
  width:100%;fhr
  border: 2px;
  border-top: 1px solid rgba(152, 164, 27);
}

.outline{ 
  margin-top: 1rem;
  margin-bottom: 1rem;
  width:100%;fhr
  border: 1px;
  border-top: 1px solid #212121;
}

.design {
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline {
  width: 80%;
  height: auto;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.timeline-content {
  padding: 20px;
  background: #313030;
  -webkit-box-shadow: 5px 5px 10px #1a1a1a, -5px -5px 10px #242424;
          box-shadow: 5px 5px 10px #1a1a1a, -5px -5px 10px #242424;
  border-radius: 5px;
  color: white;
  padding: 1.75rem;
  transition: 0.4s ease;
  overflow-wrap: break-word !important;
  margin: 1rem;
  margin-bottom: 20px;
  border-radius: 6px;
  
}

.timeline-component {
  background-image: url(../imgs/layout_tl_01.png);
  background-repeat: no-repeat;
  margin: 0px 20px 20px 20px;
}

.timeline-component2 {
  background-image: url(../imgs/layout_tl_02.png);
  margin: 0px 20px 20px 20px;
}

.timeline-component3 {
  background-image: url(../imgs/layout_tl_03.png);
  margin: 0px 20px 20px 20px;
}

.timeline-component4{
  background-image: url(../imgs/layout_tl_04.png);
  margin: 0px 20px 20px 20px;
}

.timeline-component5{
  background-image: url(../imgs/layout_tl_05.png);
  margin: 0px 20px 20px 20px;
}

.timeline-component6{
  background-image: url(../imgs/layout_tl_06.png);
  margin: 0px 20px 20px 20px;
}

@media screen and (min-width: 768px) {
  .timeline {
    display: grid;
    grid-template-columns: 1fr 3px 1fr;
  }
  .timeline-middle {
    position: relative;
    background-image: linear-gradient(45deg, #98a41b, #98a41b, #98a41b);
    width: 3px;
    height: 100%;
  }
  
  .timeline-middle2 {
    position: relative;
    background-image: linear-gradient(45deg, #98a41b, #98a41b, #98a41b);
    width: 3px;
    height: 99%;
  }
  
  .main-middle {
    opacity: 0;
  }
  .timeline-circle {
    position: absolute;
    top: 0;
    left: 49%;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-image: linear-gradient(45deg, #98a41b , #98a41b , #98a41b );
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
    .timeline-circle2 {
    position: absolute;
    top: 0;
    left: 49%;
    width: 20px;
    height: 20px;
    background-image: linear-gradient(45deg, #98a41b , #98a41b , #98a41b );
	    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
	

  }
  
}




/* Base
----------------------------------------------------------- */
* {
  box-sizing: border-box;
}

img {
  width: 100%;
  max-width: 100%;
  margin: 2rem 0;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

p {
  line-height: 1.5;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: #858478 ;
}

/* Base [END]
----------------------------------------------------------- */
/* Hero
----------------------------------------------------------- */
.hero {
  width: 100%;
  padding-bottom: 10%;
  position: relative;
  background-image: url("../imgs/header.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.hero:before {
  content: "";
  background-color: rgba(152, 164, 27, 0.5);
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
}
.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 2rem;
  width: 100%;
}
.hero__title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}
.hero__text {
  font-size: 1.8rem;
  color: white;
}

/* Hero [END]
----------------------------------------------------------- */
/* Main Content
----------------------------------------------------------- */
.main-content {
  max-width: 100%;
  margin: -32px auto;
  padding: 1rem 0.5rem;
  background-color:#212121;
  
}
.main-content p {
	
  -moz-column-count: 2;
       column-count: 2;
}
@media only screen and (max-width: 600px) {
  .main-content p {
    -moz-column-count: 1;
         column-count: 1;
  }
}

/* Main Content [END]
----------------------------------------------------------- */