/*
0 - 600px:              Phone
600px - 900px:          Tablet portrait
900px - 1200px:         Tablet landscape
1200px- 1800px:         Normal desktop
1800px + :              Large desktop

$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop
*/
* {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  font-size: 2rem;
  line-height: 1.63;
  font-family: "Roboto", sans-serif;
  position: relative;
}

img {
  display: block;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
}

form {
  width: 100%;
}

input {
  font-family: inherit;
  box-sizing: border-box;
  width: 100%;
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  padding: 1.4rem 1rem;
  display: block;
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  color: #5e5e5e;
}
input:focus {
  outline: none;
  box-shadow: 4px 7px 20px rgba(89, 59, 134, 0.1);
  border: 1px solid transparent;
}

body {
  font-family: "Roboto", sans-serif;
  color: #515151;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.55;
}

h3 {
  font-size: 3.2rem;
  color: #4b4b4b;
}

h4 {
  font-size: 3rem;
  color: #5e5e5e;
}

@media only screen and (max-width: 37.5em) {
  .header-hero p,
  .header-hero__left h1 {
    text-align: center;
  }
}
.header-hero__left h1 {
  color: white;
  font-weight: 800;
  font-size: 4.3rem;
}
@media only screen and (max-width: 900px) {
  .header-hero__left h1 {
    display: none;
    font-size: 3.4rem;
  }
}

.header-hero__right h1 {
  color: white;
  font-weight: 800;
  display: none;
}
@media only screen and (max-width: 900px) {
  .header-hero__right h1 {
    display: block;
    text-align: center;
    font-size: 2.4rem;
  }
}

.header-hero p {
  color: #e6d6ff;
}

p {
  line-height: 1.6;
  margin-top: 2.4rem;
}

.form__container {
  flex: 1 1 50%;
  margin-left: 9rem;
}
@media only screen and (max-width: 56.25em) {
  .form__container {
    margin: 8vh 0 0 0;
  }
}
.form__register {
  margin-top: 3.6rem;
}
.form__register label {
  display: block;
  color: #1381c6;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  margin: 2.2rem 0 0.5rem 0;
}

.nav-top {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  position: relative;
  display: flex;
}
.nav-top__logo {
  padding: 1.6rem 0;
}
.nav-top__right-side {
  transition: all 0.6s cubic-bezier(0, 0.99, 0.29, 0.99);
  display: flex;
  justify-content: space-around;
  width: 100%;
}
@media only screen and (max-width: 75em) {
  .nav-top__right-side {
    display: none;
    visibility: hidden;
    opacity: 0;
    flex-direction: column;
    width: auto;
    background-color: #f8f8f8;
    border-radius: 1rem;
    width: 100%;
    max-width: 50rem;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 3;
    transform: translateX(100%);
  }
}
.nav-top__right-side.active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0%);
}
.nav-top__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 2rem 0;
  margin: 0 auto;
}
@media only screen and (max-width: 75em) {
  .nav-top__list {
    order: 1;
    background-color: #f8f8f8;
    border-radius: 1rem;
  }
}
.nav-top__links {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .nav-top__links {
    display: block;
    text-align: center;
  }
}
.nav-top__links a:link,
.nav-top__links a:visited {
  padding: 0 2.4rem;
  color: white;
  text-decoration: none;
  transition: transform 0.3s;
}
@media only screen and (max-width: 75em) {
  .nav-top__links a:link,
  .nav-top__links a:visited {
    display: block;
    color: #593b86;
    padding: 2.6rem 4rem;
  }
}
.nav-top__links a:hover,
.nav-top__links a:active {
  transform: translateY(-2px);
}
@media only screen and (max-width: 75em) {
  .nav-top__links a:hover,
  .nav-top__links a:active {
    transform: translateX(2px);
  }
}
.nav-top__right {
  display: flex;
  align-items: center;
}
.nav-top__right a:not(:last-child) {
  margin-right: 3rem;
}
@media only screen and (max-width: 75em) {
  .nav-top__right {
    justify-content: space-between;
    order: 0;
    border-radius: 1rem;
    background-color: white;
    padding: 2rem;
  }
}

.ham-menu {
  display: none;
  width: 5rem;
  height: 5rem;
  transform: translateY(-50%);
  background-color: white;
  border-radius: 50%;
  z-index: 4;
  transition: transform 0.6s cubic-bezier(0, 0.99, 0.29, 0.99);
  position: absolute;
  top: 4rem;
  right: 0;
  transform: translateX(-50%);
}
.ham-menu.active {
  transform: translateX(-50%) rotate(90deg);
}
@media only screen and (max-width: 75em) {
  .ham-menu {
    display: block;
  }
}
.ham-menu span {
  display: block;
  width: 2.2rem;
  height: 2px;
  background-color: #593b86;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ham-menu span::before,
.ham-menu span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #593b86;
  height: 2px;
  width: 100%;
  border-radius: 2px;
}
.ham-menu span::before {
  margin-top: 8px;
}
.ham-menu span::after {
  margin-top: -8px;
}

.overlay {
  display: none;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.6s;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.overlay.active {
  visibility: visible;
  opacity: 1;
}
@media only screen and (max-width: 75em) {
  .overlay {
    display: block;
  }
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0.05rem;
  transition: all 0.7s cubic-bezier(0, 1.07, 0.42, 1.22);
  text-shadow: 0px 0px 1.5rem rgba(0, 0, 0, 0.15);
  text-decoration: none;
  font-size: 2rem;
  font-weight: 400;
  border-radius: 5rem;
  padding: 0.9rem 3.4rem;
}
.button:hover,
.button:active {
  transform: scale(1.03);
  box-shadow: 0.5rem 0.8rem 2rem rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 56.25em) {
  .button:hover:hover.btn__ham,
  .button:hover:active.btn__ham,
  .button:active:hover.btn__ham,
  .button:active:active.btn__ham {
    box-shadow: none;
    transform: none;
  }
}
.button__round--light {
  /* this is the search button on the navbar */
  background-color: white;
  width: 5rem;
  height: 5rem;
  padding: 0;
  border-radius: 50%;
}
@media only screen and (max-width: 75em) {
  .button__round--light {
    background-color: #593b86;
    color: white;
  }
}
.button__orange {
  color: white;
  background: linear-gradient(
      126.25deg,
      #ff6b00 17.31%,
      rgba(255, 107, 0, 0) 91.83%
    ),
    #ff9100;
}
.button--cta {
  padding: 1.5rem 4rem;
}
@media only screen and (max-width: 900px) {
  .button--cta {
    padding: 1.3 3.4rem;
  }
  .button--cta__box {
    text-align: center;
  }
}
.button--ctab {
  padding: 1.5rem 4rem;
}
@media only screen and (max-width: 900px) {
  .button--ctab {
    padding: 1.3 3.4rem;
  }
  .button--ctab__box {
    text-align: center;
  }
}
.button__blue {
  background: linear-gradient(117deg, #1381c6 19.73%, #54aed5 96.25%), #1381c6;
  color: white;
}
.button__blue.form__button {
  padding: 1.4rem 5rem;
}
@media only screen and (max-width: 37.5em) {
  .button__blue.form__button {
    display: inline-block;
    width: 100%;
  }
}

.icon {
  fill: currentColor;
}
.icon--search {
  width: 1.9rem;
  height: 1.9rem;
}
.icon--info {
  width: 8.5rem;
  height: 8.5rem;
  display: block;
}
@media only screen and (max-width: 46.85em) {
  .icon--info {
    margin: 0 auto;
  }
}
.icon--login {
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}
.icon--learn {
  width: 2.2rem;
  height: 2.2rem;
  margin-right: 1rem;
}

.section--top {
  background: radial-gradient(
      30rem 30rem at 11.39% 48.88%,
      rgba(0, 56, 255, 0.2) 0%,
      rgba(0, 56, 255, 0) 100%
    ),
    radial-gradient(
      44rem 33rem at 31.04% 36.97%,
      rgba(255, 0, 161, 0.11) 0%,
      rgba(0, 255, 25, 0) 100%
    ),
    linear-gradient(
      120.03deg,
      rgba(143, 195, 255, 0.2) -3.7%,
      rgba(34, 7, 75, 0.2) 22.26%,
      rgba(34, 7, 75, 0.2) 56.55%,
      rgba(13, 162, 255, 0.2) 88.06%
    ),
    linear-gradient(
      276.88deg,
      rgba(13, 162, 255, 0.2) -1.09%,
      rgba(13, 162, 255, 0) 31.04%
    ),
    url("../img/header_bg.svg") top 0 right 0 no-repeat, #22074b;
}
.section--bottom {
  background-color: #f8f8f8;
  padding: 10vh 4rem;
}
@media only screen and (max-width: 75em) {
  .section--bottom {
    padding: 8vh 0;
  }
}
@media only screen and (min-width: 112.5em) {
  .section--bottom {
    padding: 12rem 0;
  }
}

.container {
  max-width: 140rem;
  margin: 0 auto;
  padding: 0 4rem;
}
@media only screen and (max-width: 75em) {
  .container {
    padding: 0 4vw;
  }
}
.container--bottom {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 56.25em) {
  .container--bottom {
    flex-direction: column;
  }
}

.header-hero {
  display: flex;
  padding: 7vh 0 10vh 0;
}
@media only screen and (max-width: 900px) {
  .header-hero {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media only screen and (min-width: 112.5em) {
  .header-hero {
    padding: 8rem 0 12rem 0;
  }
}
.header-hero__left {
  flex: 1 1 56%;
  padding-right: 4rem;
}
@media only screen and (max-width: 56.25em) {
  .header-hero__left {
    padding-right: 0;
  }
}
.header-hero__right {
  flex: 1 1 44%;
}
.header-hero__video {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0.5rem 0.8rem 3.2rem rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 900px) {
  .header-hero__video {
    margin-top: 1.5rem;
  }
}

.card__info {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 4px 7px 20px rgba(89, 59, 134, 0.1);
  padding: 7rem;
  flex: 1 1 36%;
}
@media only screen and (max-width: 75em) {
  .card__info {
    padding: 5vw;
  }
}

.u-mt-1r {
  margin-top: 1rem !important;
}

.u-mt-2r {
  margin-top: 1rem !important;
}

.u-mt-3r {
  margin-top: 3rem !important;
}

.u-mt-4r {
  margin-top: 4rem !important;
}

.u-mt-5r {
  margin-top: 5rem !important;
}

.social-media {
  font-size: 47px;
  margin-bottom: -24px;
}

.social-media__link {
  padding-right: 10px;
  text-decoration: none;
}

.social-media__icon {
  color: white;
}

.social-media {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  font-size: 47px;
  margin-bottom: -24px;
  display: flex;
}

@media only screen and (max-width: 900px) {
  .social-media {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 22px;
    display: none;
  }
}

.social-media-mobile {
  display: none;
}

@media only screen and (max-width: 900px) {
  .social-media-mobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 22px;
  }

  .social-media__link {
    padding-right: 22px;
    text-decoration: none;
  }
}
