.android-automotive {
  /*  background-color: red; */
  display: flex;
  flex-direction: column;
}
.concept {
  display: flex;
  border-radius: 20px;
  margin-bottom: 30px;
  background-color: #f6f7f8;
  box-shadow: 0px 0px 15px #00000029;

  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.concept:hover .concept-text,
.concept:active .concept-text,
.concept:focus .concept-text {
  background-color: #7b6c93;
}
.concept:hover .concept-text h2,
.concept:hover .concept-text p,
.concept:active .concept-text h2,
.concept:active .concept-text p,
.concept:focus .concept-text h2,
.concept:focus .concept-text p {
  color: #fefefe;
}

.concept:hover .concept-read-more a,
.concept:active .concept-read-more a,
.concept:focus .concept-read-more a {
  background-color: #f6f7f8;
  border: 2px solid #7b6c9300;
  padding: 8px 23px;
}
.concept-image {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;

  flex: 1;
}
.concept-image img {
  max-width: 90px;
  height: auto;
  display: inline-block;
  margin-left: 20%;
}

.concept-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px 30px 30px;
  border-radius: 0 20px 20px 0;
  transition: all 0.3s ease-in-out;

  flex: 4;
}
.concept-text h2 {
  font-size: 28px;
  line-height: 34px;
  font-weight: 600;
  color: #44546a;
  margin-top: 0px;
  margin-bottom: 0px;
}
.concept-text p {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #44546a;
}
.concept-text-left {
  flex: 4;
  padding-right: 15%;
}
.concept-read-more {
  flex: 1;
  text-align: right;
}
.concept-read-more a {
  font-size: 16px;
  padding: 10px 25px;
  border: 2px solid #7b6c93;
  border-radius: 30px;
  transition: 0.2s;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .concept {
    flex-direction: column;
  }
  .concept-image {
    padding: 30px 30px 20px 30px;
  }
  .concept-image img {
    margin-left: 0;
  }

  .concept-text {
    flex-direction: column;
    border-radius: 0 0 20px 20px;
    align-items: flex-start;
    padding: 20px 30px 35px 30px;
  }
  .concept-read-more {
    flex: 1;
    text-align: left !important;
  }
  .concept-text-left {
    margin-bottom: 40px;
    padding-right: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .concept-image img {
    max-width: 80px;
    margin-left: 10%;
  }
  .concept-text {
    padding: 30px;
  }
  .concept-text-left {
    padding-right: 20px;
    flex: 3;
  }
  .concept-read-more {
    flex: 2;
  }
}
@media screen and (min-width: 992px) and (max-width: 1454px) {
  .concept-text-left {
    padding-right: 20px;
    flex: 4;
  }
  .concept-read-more {
    flex: 2;
  }
}
