@media only screen and (min-device-width: 769px) and (max-device-width: 1920px) {
  button {
    min-width: 250px;
    margin: 1px;
    font-size: 15px;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 768px) {
  button {
    min-width: 200px;
    margin: 1px;
    font-size: 13px;
  }
}

.parallax {
background: rgb(172,156,244);
background: linear-gradient(0deg, rgba(172,156,244,1) 0%, rgba(46,42,62,1) 100%); background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.blk-overlay {
  background: rgba(250, 250, 250, 0.2);
}

.postcard-content {
  display: flex;
  justify-content: space-evenly;
}

.postcard-box {
  width: 100%;
  max-width: 360px;
  border-radius: 10px;
  border: 1px solid #cccccc;
  background-color: #fff;
  text-align: center;
  padding-bottom: 40px;
  margin: 0 auto;
}
.postcard-blk {
  border-radius: 8px 8px 0px 0px;
  -moz-border-radius: 8px 8px 0px 0px;
  -webkit-border-radius: 8px 8px 0px 0px;
  background-color: #a3c4bc;
  padding: 20px 40px 80px 40px;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
}
.video-box {
  border: 2px solid #fff;
  margin: -70px auto 30px auto;
  max-width: 280px;
  background-color: #eeeeee;
  border-radius: 8px;
  box-shadow: 1px 1px 2px #3a3a3a;
}

.card-content {
  padding: 0px 20px 0px 20px;
}

.position-bot {
  bottom: 20px;
  left: 0%;
  right: 0%;
}

@media only screen and (min-device-width: 769px) and (max-device-width: 1920px) {
  video.postcard-video {
    object-fit: cover;
    width: 100%;
    height: 200px;
  }

  .postcard {
    padding: 100px 40px 100px 40px;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .postcard section {
    width: 80%;
    color: #181818;

    /* NEEDS TO ADD EXTRA HIDDEN SPACE FOR ANCHOR LINK DUE TO STICKY HEADER */
    margin-top: -200px;
    padding-top: 200px;
    position: relative;
    z-index: 1;
  }

  .postcard-content {
    /* do styles here */
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  .postcard-box {
    /* do styles here */
    margin-bottom: 15px;
  }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 768px) {
  /*video.postcard-video {
    object-fit: cover;
    width: 100%;
    height: 180px;
  }*/

  video.postcard-video {
    object-fit: cover;
    width: 100%;
    height: 180px;
  }
  .postcard {
    padding: 100px 40px 100px 40px;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .postcard section {
    width: 100%;
  }

  .video-box {
    width: 90%;
  }
  .postcard-content {
    /* do styles here */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .postcard-box {
    /* do styles here */
    margin-bottom: 15px;
  }
}
