/* color themes
crimson: #dc143c    with    white #fff
faded blue: #5a5af4   with    


*/




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Quicksand, sans-serif;
  }
  
  /* resetting the font size for rem usage */
  html {
    font-size: 62.5%;
  }
  
  .container {
    width: 100%;
    height: 700px;
    background: #262626;
    display: grid;
    place-items: center;
    justify-content: center;
  }
  
  .card-wrapper {
    width: 50rem;
    height: 70rem;
    padding: 0 10rem;
    display: grid;
    place-items: center;
    overflow: hidden;
  }
  
  .card {
    position: relative;
    width: 30rem;
    height: 55rem;
    background: #eee;
    border-radius: 2.5rem;
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.7);
  }
  
  .card-top {
    width: 100%;
    height: 50%;
    background-color: #dc143c;
    padding: 3rem;
    border-radius: 2.5rem 2.5rem 0 0;
    transition: background 0.5s;
  }
  
  
  
  /* making the card background change when selecting options */
  
  .container.change .card-top {
    background: #5a5af4;
  }
  
  
  
  .logo {
    font-size: 48px;
    margin-bottom: 2rem;
  }
  
  .card-top-text {
  color: #fff;
  text-align: left;
  }
  
  .card-top-text h1 {
  font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1rem;
    margin-bottom: 1rem;
  }
  
  button {
    padding: 2px;
   text-align: center;
   color: black; 
   margin-top: 1rem;
   border: 1px solid black;
    border-radius: 5px;
    cursor: pointer;
  box-shadow: 0 0 0px 0px #000, 0 0 0px 0px #301934, 0 0 0px 0px purple;
    transition: .5s ease-in-out all;
  }
  
  /* making the button change when selecting options */
  
  .container.change button {
    padding: 2px;
   text-align: center;
   color: black; 
   margin-top: 1rem;
   border: 1px solid black;
    border-radius: 5px;
    cursor: pointer;
  box-shadow: 0 0 0px 0px #000, 0 0 0px 0px #301934, 0 0 0px 0px purple;
    transition: .5s ease-in-out all;
  }
  
  /* giving the button effects on hover */
  
  button:hover {
  color: white;
  background-color: black;
  box-shadow: 0 0 4px 2px #000, 0 0 6px 4px #301934, 0 0 8px 6px red;
  }
  
  /* giving the changed button effects on hover */
  
  .container.change button:hover {
  color: white;
  background-color: black;
  box-shadow: 0 0 4px 2px #000, 0 0 6px 4px #301934, 0 0 8px 6px blue;
  }
  
  
  
  
  .shirt-1 {
    width: 25rem;
    height: 25rem;
    position: absolute;
    top: -2.5rem;
    right: -10rem;
    transition: transform 1s;
  }
  
  /* translating the first shirt out of view  */
  
  .container.change .shirt-1 {
    transform: translateX(-50rem);
  }
  
  /* translating the second shirt into view */
  
  .container.change .shirt-2 {
    transform: translateX(-35rem);
  }
  
  .shirt-2 {
    width: 25rem;
    height: 25rem;
    position: absolute;
    top: -2.5rem;
    right: -45rem;
     transition: transform 1s;
  }
  
  .card-bottom {
    width: 100%;
    height: 50%;
    padding: 3rem 3rem;
  }
  
  .card-bottom h1 {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1rem;
    color: #333;
    margin-bottom: .6rem;
  }
  
  .badge {
    position: absolute;
    top: 29rem;
    right: 4rem;
    width: 3.5rem;
    height: 1.6rem;
    background: #25d390;
    color: #fff;
    display: grid;
    place-items: center;
    border-radius: .3rem;
    font-size: .9rem;
    font-weight: bold;
    letter-spacing: .1rem;
    text-transform: uppercase;
  }
  
  .card-bottom h3 {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
  }
  
  .stars {
    margin-bottom: 2rem;
  }
  
  .stars i:last-child {
    opacity: 0.4;
  }
  
  
  /* styling the length of the program title */
  
  .program-length {
    font-size: 1.5rem;
  }
  
  
  /*  styling weeks options*/
  
  
  .weeks {
    font-size: 1.5rem;
    margin-right: 2.5rem;
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    juatify-content: center;
    margin-bottom: 1rem;
    transition: .3s ease-in-out all;
  }
  
  .weeks span {
    cursor: pointer;
    color: #000;
    background-color: #dc143c;
    padding: 8px;
    border-radius: 12px;
    margin-right: 5px;
    text-align: center;
    transition: .3s ease-in-out all;
  }
  
  /* adding hover */
  .weeks span:hover {
    color: #fff;
  background-color: black;
  box-shadow: 0 0 4px 2px #dc143c;
  }
  
  /* adding the weeks changes on option 2 */
  
  .container.change .weeks span {
       color: #000;
    background: #5a5af4;
    cursor: pointer;
    padding: 8px;
    border-radius: 12px;
    margin-right: 5px;
    text-align: center;
    transition: .3s ease-in-out all;
  }
  
  /* adding hover */
  .container.change .weeks span:hover {
     color: #5a5af4;
    background: #fff;
    box-shadow: 0 0 4px 2px #5a5af4;
  }
  
  /* styling the options */
  
  .option-icon {
    font-size: 2rem;
  }
  
  
  
  .option h4 {
    font-size: 1.2rem;
    letter-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 1rem;
  }
  
  .options {
    display: flex;
  
  }
  
  .option-1,
  .option-2 {
    padding: .5rem;
    width: 3rem;
    height: 3rem;
    background: purple;
    border-radius: 50%;
    cursor: pointer;
  text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .option-1 {
    background: #dc143c;
    margin-right: 1.5rem;
    transition: .3s ease-in-out all;
  }
  
  /* giving option 1 hover effects */
  .option-1:hover {
  color: #fff;
  background-color: black;
  box-shadow: 0 0 4px 2px #dc143c;
  }
  
  .option-2 {
   color: #000;
    background: #dc143c;
     transition: .3s ease-in-out all;
  }
  
  .option-2:hover {
  color: #fff;
  background-color: black;
  box-shadow: 0 0 4px 2px #dc143c;
  }
  
  /* styling the options on change */
  
  .container.change .option-1, .container.change .option-2 {
     color: #000;
    background: #5a5af4;
     transition: .3s ease-in-out all;
  }
  
  .container.change .option-1:hover, .container.change .option-2:hover {
     color: #5a5af4;
    background: #fff;
    box-shadow: 0 0 4px 2px #5a5af4;
  }
  
  
  /* styling the price */
  
  .price {
    width: 16rem;
    height: 4rem;
    background: #dc143c;
    color: white;
    border-radius: 0.5rem;
    position: absolute;
    right: -4rem;
    bottom: 3rem;
    box-shadow: 0 1rem 2rem #000;
    display: flex;
    justify-content: center;
    align-items: center;
  transition: .5s ease-in-out all;
  }
  
  .container.change .price {
    color: #fff;
    background: #5a5af4;
    box-shadow: 0 1rem 2rem #4b0082;
     transition: .5s ease-in-out all;
  }
  
  .price span {
    font-size: 2rem;
  }
  
  .price span:first-child {
    font-weight: 300;
    text-transform: uppercase;
    margin-right: 1rem;
  }
  
  .price span:last-child {
    font-weight: bold;
  }