/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.20.3
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
.header.transparent .header-wrapper {
	background-color: #00000014;
}
.timeline-wrap {
 
  gap: 28px;
  align-items: start;
 
}
@media (max-width: 980px) {
  .timeline-wrap {
    grid-template-columns: 1fr;
  }
}
.vertical-timeline {
  position: relative;
  padding-left: 40px;
}
.vertical-timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color), rgba(0, 168, 107, 0.6));
  border-radius: 6px;
}
.my_step {
  position: relative;
  margin-bottom: 28px;
  padding: 12px 14px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ece6d6;
  box-shadow: 0 10px 22px rgba(10, 12, 8, 0.03);
  cursor: pointer;
  transition: transform 0.18s;
}
.my_step:hover {
  transform: translateY(-6px);
}
.my_step.active, .my_step:hover {
  box-shadow: 0 18px 36px rgba(0, 168, 107, 0.08);
  border-color: var(--primary-color);
  background: rgba(0,168,107,0.12);
}
.my_step .num {
  position: absolute;
  left: -48px;
  top: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.my_step h3 {
	color: var(--primary-color);
  margin-bottom: 8px;
}
.my_step p {
  color: #555;
  font-size: 14px;
	margin-bottom:0px;
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}