/* Get Started Section Styles */
.home-started {
  color: #fff;
  background-image: url("../img/stars.9365c308ec51.png");
  background-size: cover;
  background-color: #000;
  padding-bottom: 0 !important;
}
.home-started .items-list ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 30px;
}
.home-started .items-list li {
  width: 100%;
  max-width: 280px;
}
.home-started .items-list .image {
  background-size: cover;
  width: 100%;
  padding-bottom: 118%;
  position: relative;
  background-color: #fff;
  border-radius: 25px;
}
.home-started .items-list .title {
  position: absolute;
  font-size: 1.375rem;
  line-height: 1.5rem;
  color: #000;
  text-align: left;
  padding-left: 14px;
  top: 35px;
  left: 30px;
  margin: 0;
}
.home-started .items-list .title::before {
  content: "";
  width: 4px;
  height: 44px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #00f2ea;
  margin: auto;
}
.home-started .items-list .title span {
  display: block;
}
.home-started .items-list a {
  text-decoration: none;
  color: inherit;
  position: relative;
  display: block;
}
.home-started .items-list a::after {
  content: "";
  display: block;
  background-color: rgba(0,0,0,0.5);
  position: absolute;
  inset: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: 0.35s;
  -moz-transition: 0.35s;
  -o-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
.home-started .items-list a:hover::after {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
@media screen and (min-width: 1200px) {
  .home-started .items-list ul {
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .home-started .items-list li {
    max-width: 300px;
  }
}

/* White variant - inherits parent background */
.home-started--white {
  background-image: none;
  background-color: transparent;
  color: inherit;
}
.home-started--white .items-list .title {
  color: #000;
}
