.cards-group-wrapper {
  display: inline-flex;
  gap: 20px;
  margin-bottom: 80px;
  height: 180px;
}

.verizon-card {
  width: 50%;
}

.verizon-card-content-wrapper {
  width: 100%;
  height: calc(100% + 40px);
  border: 1px solid #d9dee5;
  padding: 1vw;
  position: relative;
}

.verizon-card-info {
  line-height: 18px;
  color: black;
  margin-bottom: 0px;
}

.links-wrapper {
  position: absolute;
  bottom: 20px;
  left: 1vw;
  display: flex;
  justify-content: space-between;
  width: 50%;
}

.links {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.links:hover {
  cursor: pointer;
  text-decoration: none;
  text-decoration-color: black;
}

.black-bar {
  height: 10px;
  background-color: black;
}

@media only screen and (max-width: 1450px) {
  .cards-group-wrapper {
    height: 200px;
  }
}

@media only screen and (max-width: 1300px) {
  .cards-group-wrapper {
    height: 230px;
  }

  .links-wrapper {
    bottom: 15px;
    width: 55%;
  }
}

@media only screen and (max-width: 1175px) {
  .cards-group-wrapper {
    height: 240px;
  }

  .links-wrapper {
    bottom: 12px;
    width: 60%;
  }
}

@media only screen and (max-width: 1125px) {
  .cards-group-wrapper {
    height: 250px;
  }

  .links-wrapper {
    bottom: 10px;
    width: 65%;
  }
}

@media only screen and (max-width: 1100px) {
  .cards-group-wrapper {
    height: 265px;
  }

  .links-wrapper {
    bottom: 8px;
    width: 70%;
  }
}

@media only screen and (max-width: 1050px) {
  .cards-group-wrapper {
    height: 265px;
  }

  .links-wrapper {
    bottom: 5px;
    width: 70%;
  }
}

@media only screen and (max-width: 990px) {
  .cards-group-wrapper {
    height: 180px;
  }

  .links-wrapper {
    bottom: 20px;
    width: 50%;
  }
}

@media only screen and (max-width: 850px) {
  .cards-group-wrapper {
    display: block;
    margin-bottom: 30px;
    height: auto;
  }

  .verizon-card {
    width: 100%;
    margin-bottom: 30px;
    height: auto;
  }

  .verizon-card-info {
    margin-bottom: 15px;
  }

  .links-wrapper {
    position: static;
    bottom: auto;
    left: auto;
  }
}