.textAndImage_text {
  width: 62%;
  display: flex;
  align-items: flex-end;
}
.textAndImage_text a {
  color: #34b0f0;
  font-weight: bold;
}
.textAndImage_text img {
  width: 80px;
}
.textAndImage_image {
  width: 38%;
}
.textAndImage_image img {
  width: 100%;
}
.textAndImage {
  display: flex;
  justify-content: space-between;
  margin-top: 7%;
  margin-bottom: 5%;
}
/* ============================================ *
* MAX WIDTH QUERIES
* ============================================ */
@media (max-width: 1199px) {
  .textAndImage_img {
    position: absolute;
    left: 200px;
    padding-bottom: 30px;
  }
}
@media (max-width: 979px) {
  .textAndImage_image {
    display: none;
  }
  .textAndImage_text {
    width: 100%;
    font-size: 16px;
  }
  .customContent {
    min-width: 100%;
  }
}
/* ============================================ *
 * MIN WIDTH QUERIES
 * ============================================ */
@media (min-width: 980px) {
  .customContent {
    padding: 30px;
  }
}
@media (min-width: 1200px) {
  .customContent {
    padding: 0px;
  }
  .textAndImage_img {
    position: relative;
    right: 62%;
  }
}
