@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/* Banner For Discount */
/* * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
} */
* body{margin-top:3.8%;}

* p{ margin: 0 0 0;}

body { overflow-x: hidden;}

.trial-banner {
  padding-top: 2%;
  background-color: lightgrey;
  /* margin: auto 0; */
  text-transform: capitalize;
  text-align: center;
  color: white;
  letter-spacing: 0.22rem;
}

.trial-banner h4 {
  font-weight: 700;
}

.promo-link {
  color: white;
  text-decoration: underline;
}

.two-columns {
  font-family: "Poppins", sans-serif;
}

/* Full Section */
#startingSide {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(30, 140, 150, 0.7), rgba(35, 136, 192, 0.9)),
    url("../images/codemoji-trial-2.jpg") center center no-repeat;
  background-size: cover;
  background-color: rgba(83, 108, 181, 0.5);
  color: white;
}

.containertop {
  /* display: flex; The top container was added to fix the nav */
  align-items: center;
 /* justify-content: center; */
  flex-direction: column;
  text-align: center;
 /* padding: 0 30px; */
  max-width: 1300px;
  margin: 0 auto;
}

.con {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.left-col {
  flex: 1;
  margin-bottom: 60px;
}

.left-col h1 {
  color: white;
  font-size: 3rem;
  line-height: 3rem;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 900;
}

.left-col p {
  color: white;
  font-size: 1.2rem;
  line-height: 1.9rem;
}

/* Right side or Botton Side based on Mobile */
.right-col {
  flex: 1;
}

.right-col .top-boxter {
  background-color: rgb(240, 81, 47);
  color: white;
  padding: 15px 90px;
  border-radius: 15px;
  box-shadow: 0 7px;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0px 4px hsl(11, 78%, 49%);
}

.right-col .top-boxter p {
  font-size: 1.9rem;
  line-height: 2.2rem;
}

.right-col .top-boxter p span {
  font-weight: 700;
}

.right-col .form-container {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 7px hsla(249, 10%, 26%, 0.404);
}

.field-group {
  position: relative;
  margin-bottom: 25px;
}

.right-col label {
  display: none;
}

.right-col input,
.stripe-button[type="submit"] {
  width: 100%;
  height: 60px;
  margin-bottom: 5px;
  border-radius: 8px;
  border: 1.3px solid;
  padding-left: 20px;
  outline: none;
  color: hsl(250, 27%, 78%);
  font-size: 1.1rem;
  font-weight: 600;
}

.right-col input:focus {
  border: 1.5px solid hsl(249, 10%, 26%);
}
.right-col button[type="submit"] {
  border: none;
  background-color: hsl(154, 59%, 51%);
 /*  box-shadow: 0px 4px hsl(154, 56%, 44%); */
  color: white;
  font-weight: 500;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
}

/* Form PlaceHolders */
.right-col input::placeholder {
  color: hsla(249, 10%, 26%, 0.678);
  font-size: 1.1rem;
}

/* .right-col button[type="submit"]:hover {
  background-color: hsl(154, 80%, 63%);
} */

.right-col .form-footer {
  margin-top: 10px;
  color: hsl(246, 25%, 77%);
  text-align: center;
}

.right-col .form-footer span {
  margin-top: 10px;
  color: hsl(0, 100%, 60%);
  text-align: center;
  font-weight: 700;
}

/* Icons for Error Handling { */

.error-icon {
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  color: red;
}

.error-text {
  display: block;
  text-align: right;
  font-size: 0.8rem;
  color: red;
  font-weight: 500;
}

/* Emojis and Icons */
.icons {
  font-size: 100%;
}

.fab {
  padding: 8px 8px 8px 8px;
}

/* Trial Image And Text On Image */

.image-wrapper {
  position: relative;
  float: left;
  color: white;
  background-color: rgba(0, 0, 255, 0.1);
}

/* Error messaging */
.error-text,
.error-icon {
  display: none;
}

.promo-link {
  color: white;
  text-decoration: underline;
}

div .pricebox {
  height: 50px;
  margin: 7.5px;
  color: white;
  padding-top: 50px;
  padding-bottom: 50px;
}
#student-price {
  border: 1px solid seagreen;
  background-color: seagreen;
}
#parent-price {
  border: 1px solid #c2b541;
  background-color: #c2b541;
}
#teacher-price {
  border: 1px solid #2d627b;
  background-color: #2d627b;
}

footer {
  height: 2vh;
  text-align: center;
}

.pull-right {
  float: left !important;
}

/* Mobile */
@media screen and (min-device-width: 320px) and (max-device-width: 989px) {
  .left-col h1 {
    font-size: 3.5rem;
  }

  .left-col p {
    text-align: left;
    line-height: 3rem;
    font-size: 1.7rem;
  }

  .trial-banner {
    padding-top: 10%;
    background-color: lightgrey; 
  }
}

/* Trying to Fix NavBar */

.navbar-nav {
  display: flex;
  flex-direction: row;
 /* justify-content: space-between; */
}

/*Wide screens*/
/* div .pricebox {
    width: 25%;
  }
  #main-text-info {
    text-align: center;
  } */
@media screen and (min-width: 768px) {
  .con {
    flex-direction: row;
  }
  .left-col h1 {
    font-size: 3.5rem;
  }
  .left-col p {
    text-align: left;
    line-height: 3rem;
    font-size: 1.7rem;
  }
  .right-col {
    margin-left: 100px;
  }
  .trial-banner {
    padding-top: 4%;
  }
  .navbar-nav {
    float: left;
    margin: 0px;
  }
}

@media screen and (min-width: 900px) {
  .trial-banner {
    padding-top: 0%;
  }
}
