.get_started {
  color: #fff;
  min-height: 335px;
  position: relative;
}

.get_started .bg_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  background-color: rgb(98 99 98);
}

.get_started .feat_overlay {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 15px;
  z-index: 2;
  background: #000;
  background: -webkit-linear-gradient( 270deg ,#000,transparent 60%);
  background: -webkit-linear-gradient( 90deg ,#000,transparent 60%);
  background: linear-gradient( 0deg ,#000,transparent 60%);
}

.get_started:hover .feat_overlay {
  opacity: 1;
  transition: opacity .5s ease-in-out;
  -moz-transition: opacity .5s ease-in-out;
  -webkit-transition: opacity .5s ease-in-out;
}

.get_started .feat_overlay .over_content {
  position: relative;
  padding-left: 30px;
  top: auto;
  top: calc(50% - 1px);
}

.get_started .feat_overlay {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  display: block;
}

.get_started .over_content > * {
  color: #fff;
}

.get_started .over_content h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.1;
  font-size: 18px;
}

.get_started .over_content a.text_link {
  color: #bfd730;
  font-weight: 700;
}

.get_started .over_content a.text_link:after {
  content: "";
  width: 90px;
  height: 2px;
  background-color: #fff;
  display: block;
}

.get_started .over_content a {
  color: #bfd730;
}


.get_started.no-img .feat_overlay {
  opacity: 1;
}
@media(max-width:1680px){
  .get_started .feat_overlay .over_content {
    top: auto;
  } 

  .get_started .feat_overlay {
    display: flex;
  }
}

@media(max-width:767px){
  .get_started .feat_overlay .over_content {
    padding-left: 15px;
  } 
  .get_started .feat_overlay {
    opacity: 1;
  }
}


@media(max-width:330px){
  .get_started {
    min-height: 400px;
  }
}