.referralTopContainer {
  padding: 50px 0px 80px 0px;
  width: 1600px;
  margin: auto;
}

.referralTop {
  width: 50%;
}

.referralTopTitle {
  font-size: 30px;
  margin-bottom: 20px;
}

.referralRow {
  width: 1600px;
  margin: 0px auto 50px auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.referralRowReverse {
  width: 1600px;
  margin: 0px auto 50px auto;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}

.referralContent {
  width: 45%;
}

.referralTitle {
  font-size: 26px;
  margin-bottom: 15px;
}

.referralImageContainer {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.referralImage {
  height: 150px;
  width: auto;
}

@media only screen and (max-width : 1650px) {
  .referralTopContainer {
    width: 1200px;
  }

  .referralRow {
    width: 1200px;
  }

  .referralRowReverse {
    width: 1200px;
  }
}

@media only screen and (max-width : 1250px) {
  .referralTopContainer {
    width: 900px;
  }

  .referralRow {
    width: 900px;
  }

  .referralRowReverse {
    width: 900px;
  }

  .referralImage {
    height: 120px;
    width: auto;
  }
}

@media only screen and (max-width : 992px) {
  .referralTopContainer {
    width: 300px;
    padding: 40px 0px;
  }
  
  .referralTop {
    width: 100%;
  }

  .referralTopTitle {
    text-align: center;
  }

  .referralTopText {
    text-align: justify;
  }

  .referralRow, .referralRowReverse {
    flex-direction: column-reverse;
    width: 300px;
  }

  .referralTitle {
    text-align: center;
  }

  .referralInfo {
    text-align: justify;
  }

  .referralImageContainer {
    margin: 30px 0px;
    width: 100%;
  }

  .referralImage {
    height: 90px;
    width: auto;
  }

  .referralContent {
    width: 100%;
  }
}