@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root{
  --yellow: hsl(48, 89%, 50%);
  --background-color: hsl(60, 2%, 92%);
  --optionbackgroundcolor: hsl(0, 0%, 87%);
  --fontcolor: hsl(30, 6%, 14%);
}


body{
  font-family: "lato", sans-serif;
  background-color: var(--background-color);
  /*color: var(--fontcolor);*/
}

#header{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  background-color: var(--background-color);
  max-width: 100vw;
  width: 100%;
  padding: 0px 6rem;
}

li{
  display: inline-block;
  padding: 0px 30px;
}

.nav-link{
  text-decoration: none;
  color: var(--fontcolor);
  transition: ease-in 0.5s;
}

.nav-link:hover{
  transition: ease-in-out 0.5s;
  font-size: 20px;
  color: darkcyan;
}

.card-component{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 7rem;
  z-index: -2;
  overflow: hidden;

  padding-left: 20%;
  padding-right: 20%;
}

#form{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5rem;
}

.welcome{
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 1rem;
}

#email{
  margin-bottom: 0.5rem;
  width: 15rem;
  padding: 2px 5px;
}

#submit{
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 900;
  color: var(--fontcolor);
  background-color: var(--yellow);
  border: none;
  border-radius: 2px;
}

.course{
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 5px;
}

.program-description{
  font-weight: 400;
  font-size: 17px;
  margin-bottom: 5rem;
}

.course, .program-description{
  padding-left: 10%;
  padding-right: 10%;
}

.img-icon{
  width: 60px;
  height: 60px;
  position: absolute;
  left: 18%;
  z-index: -2;
}

video{
  width:500px;
  height: 282px;
  margin-bottom: 5rem;
  box-shadow: 1px 0px 37px 7px rgba(0,0,0,0.18);
}

.pricing{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.bachelors-pricing, .masters-pricing, .phd-pricing{
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 350px;
  overflow: hidden;

  margin: 0px 10px 4rem 10px;
  border: 1.7px #141316cf solid;
}

.ph{
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0;
  /*color: var(--fontcolor);*/
}


.price-header{
  background: var(--optionbackgroundcolor);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-description{
  padding: 20px 2rem;
  font-size: 16px;
  display: flex;
  border: 1px black so;
}

footer{
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--optionbackgroundcolor);
  width: 104%;
  margin-bottom: 1rem;
  padding: 10px 0;
}
.footer-link{
  display: inline-block;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.footer-cr > a{
  text-decoration: none;
  color: var(--fontcolor);
  transition: ease-in-out 0.5s;
}
.footer-cr > a:hover{
  background-color: var(--yellow);
  color: var(--fontcolor);
  transition: ease-in-out 0.5s;
  border-radius: 2px;
  padding: 2px 5px;
}

.footer-ch > a{
  text-decoration: none;
  color: var(--fontcolor);
}

.footer-ch > a:hover{
  color: darkcyan;
  transition: ease-in-out 0.2s;
}

em{
  font-size: 13px;
  padding-right: 5px;
  margin-right: 5px;
}