@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /*background-color: #da8b01;*/
  background-color: #243274;
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;

  font-style: normal;
}

.container {
  position: relative;
  max-width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 50px;
  /*background-color: #c48e82;*/
  /* Need to play around with z-index more with backgrounds*/
  z-index: 0;
}

.container .card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;

  margin: 100px 0 0 0;
  height: 80vh;
}

.container .card:nth-child(odd) {
  flex-direction: row;
}

.container .card:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.container .card .imgBx {
  border-radius: 25px;
  position: relative;
  left: 25px;
  width: 400px;
  height: 400px;
  background: white;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container .card:nth-child(even) .imgBx {
  left: -25px;
}

.container .card .imgBx img {
  /*position: absolute;*/
  top: 0;
  left: 0;
  width: 80%;
  /*height: 80%;*/
  object-fit: cover;
}

.container .card .contentBx {
  position: relative;
  right: 25px;
  width: 800px;
  height: 90%;
  /*background: #243274;*/
  background: #da8b01;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 60px 20px 100px;
  border-radius: 25px;
}

.container .card:nth-child(even) .contentBx {
  right: -25px;
  padding: 20px 100px 20px 60px;
}

.container .card .contentBx:before {
  content: "";
  position: absolute;
  top: -50px;
  bottom: -50px;
  left: 0;
  right: 0;
  background: #da8b01;
  border-radius: 25px;
  z-index: -1;
}

.container .card .contentBx h2 {
  font-size: 30px;
  color: #fff;
}

.container .card .contentBx p {
  margin-top: 10px;
  color: #fff;
}
.note {
  font-size: 20px;
}
.container .card .contentBx a {
  display: inline-block;
  margin-top: 15px;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  /*border: 1px solid #fff;*/
}


.promo-text{
    font-size: 30px;
    text-align: center;

}
.partner-logo {
  width: fit-content;
  margin: 25px auto;
  height: fit-content   ;
}
.partner-logo img {
  border-radius: 20px;
  height: 150px;
  border: white 5px solid;
  background: white;
}
.form {
  display: flex;
  align-content: center;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.form label {
  font-size: 40px;
  color: white;
  text-align: center;
  width: 100%;
}
.get-the-app-text{
    text-align: center;
  font-size: 20px;
}
.app-container{
    display: flex;
    justify-content: space-around;
}
.play--store,
.app--store {
  width: 13rem;
}
.form input {
  width: 80%;
  margin: 10px 0;
  padding: 10px;
  background: #243274;
  color: white;
  text-transform: uppercase;
  border: none;
  outline: none;
  border-radius: 10px;
  height: 40px;
  font-size: 20px;
  text-align: center;
}
.toast {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 40px;
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.toast p{
  font-size: 19px;
  text-align: center;
  line-height: 20px;
}
.toast.active {
    opacity: 1;
}
@media (max-width: 1000px) {
  .container .card {
    max-width: 80vw;
    flex-direction: column;
    margin: 25px 25px;
    height: auto;
  }

  .container .card .imgBx {
    /*width: 100%;*/
    height: 45vw;
    left: 0;
    /*height: 45vw;*/
    /*left: 0;*/
    margin-bottom: 5vh;
  }

  .container .card .contentBx {
    width: 100%;
    height: auto;
    right: 0;
    padding: 30px;
    text-align: center;
  }

  .container .card .contentBx:before {
    top: 0;
    bottom: 0;
  }

  .container .card:nth-child(even) .imgBx {
    left: 0;
  }

  .container .card:nth-child(even) .contentBx {
    right: 0;
    padding: 30px;
  }
  .form input{
    height: 80px;
    width: 100%;
    font-size: 50px;
  }
  .get-the-app-text{
    font-size: 40px;
  }
  .promo-text{
    font-size: 50px;
  }
  .toast p {
    font-size: 40px;
    text-align: center;
    line-height: 63px;
  }
}
