
.wrapper{
  max-width: 1080px;
  padding: 50px 20px;
  position: relative;
}
.wrapper .center-line{
  position: absolute;
  height: 100%;
  width: 4px;
  background: #cac9c9;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}
.wrapper .rows{
  display: flex;
}
.wrapper .rows:nth-child(even){
  justify-content: flex-start;
}
.wrapper .rows:nth-child(odd){
  justify-content: flex-end;
}
.wrapper .rows section{
  background: #fff;
  border-radius: 5px;
  width: calc(50% - 40px);
  position: relative;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
  border:1px solid #ccc;
}
.wrapper .rows section::before{
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background: #fff;
  top: 28px;
  z-index: -1;
  transform: rotate(45deg);
}
.rows:nth-child(even) section::before{
  right: -7px;
}
.rows:nth-child(odd) section::before{
  left: -7px;
}
.rows section .icon,
.center-line .scroll-icon{
  position: absolute;
  background: var(--color2);
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 17px;
  box-shadow: 0 0 0 4px #fff, inset 0 2px 0 rgba(0,0,0,0.08), 0 3px 0 4px rgba(0,0,0,0.05);
}
.center-line .scroll-icon{
  bottom: 0px;
  left: 50%;
  font-size: 25px;
  transform: translateX(-50%);
}
.rows:nth-child(even) section .icon{
  top: 15px;
  right: -60px;
}
.rows:nth-child(odd) section .icon{
  top: 15px;
  left: -60px;
}

.rows section .padding-box
{
	padding:8px 15px 15px;
}

.rows section .details,
.rows section .bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rows section .details .title{
  font-size: 22px;
  font-weight: 300;
}
.rows section p{
  margin: 5px 0 17px 0;
  font-weight:500;
  font-size:16px;
}
.rows section .bottom a{
  text-decoration: none;
  background: var(--color2);
  color: #fff;
  padding: 7px 15px;
  border-radius: 5px;
  /* font-size: 17px; */
  font-weight: 600;
  transition: all 0.3s ease;
}
.rows section .bottom a:hover{
  transform: scale(0.97);
}
@media(max-width: 790px){
  .wrapper .center-line{
    left: 40px;
  }
  .wrapper .rows{
    margin: 30px 0 3px 60px;
  }
  .wrapper .rows section{
    width: 100%;
  }
  .row:nth-child(even) section::before{
    left: -7px;
  }
  .row:nth-child(even) section .icon{
    left: -60px;
  }
}
@media(max-width: 440px){
  .wrapper .center-line,
  .rows section::before,
  .rows section .icon{
    display: none;
  }
  .wrapper .rows{
    margin: 10px 0;
  }
}


.wrapper .rows section .details
{
	background-color:var(--color2);
	color:var(--bs-white);
	padding:8px 15px;
	border-radius: 5px 5px 0 0;
}

span.date
{
	font-weight:600;
}