* {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  box-sizing: border-box;
  text-decoration: none;
  object-fit: cover;
}

.cover-image {
  width: 100% !important;
  height: 600px;
  object-fit: contain;
  margin: 0 auto;
}
.title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #2b1553;
}
.bg-card {
  background-color: #eee;
}
.bg-details {
  max-width: 100%;
  margin-bottom: 4rem;
  background-color: rgb(209, 244, 255);
}
.phone-details {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
}
.phone-details col {
  width: 46%;
  padding: 2%;
}

@media only screen and (max-width: 767px) {
  .phone-details {
    flex-direction: column;
  }
  .phone-details img {
    width: 90% !important;
    margin-bottom: 2rem;
  }
  .cover-image {
    height: 20%;
    width: 100% !important;
  }
  .phone-details col {
    width: 98%;
    padding: 2%;
  }
}
