:root {
  --blue-900: hsl(233, 54%, 16%);
  --blue-600: hsl(234, 25%, 52%);
  --pink-600: hsl(341, 92%, 62%);
  --pink-300: hsl(341, 100%, 83%);
  --grey: hsl(232, 10%, 56%);
  --white: hsl(0, 0%, 100%);
  --gradient-pink: linear-gradient(180deg, #ff6f48 0%, #f02aa6 100%);
  --gradient-purple: linear-gradient(180deg, #4851ff 0%, #f02aa6 100%);
  --primary-font-family: "Plus Jakarta Sans", sans-serif;
  --text-color: var(--grey);
  --heading-color: var(--blue-900);
  --body-bg-color: linear-gradient(180deg, #ffffff 0%, #f0f1ff 100%);
}

*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  background: var(--body-bg-color);
  background-attachment: fixed;
  font-family: var(--primary-font-family);
  color: var(--text-color);
  overflow-x: hidden !important;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 500;
  }
}

h1,
h2,
h3 {
  color: var(--heading-color);
}

h1 {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 800;
}
@media screen and (min-width: 1024px) {
  h1 {
    font-size: 5.6rem;
    line-height: 1.2;
    font-weight: 800;
  }
}

h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 800;
}
@media screen and (min-width: 1024px) {
  h2 {
    font-size: 3.2rem;
    line-height: 1.2;
    font-weight: 800;
  }
}

h3 {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 800;
}
@media screen and (min-width: 1024px) {
  h3 {
    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: 800;
  }
}

a {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--pink-600);
  text-decoration: none;
  display: block;
}

img {
  display: block;
  max-width: 100%;
}

.btn {
  padding-inline: 3.2rem;
  padding-block: 1.6rem;
  border-radius: 2.8rem;
  color: var(--white);
}
@media (min-width: 768px) {
  .btn {
    padding-inline: clamp(2.4rem, 1.486rem + 1.19vw, 3.2rem);
    padding-block: clamp(1.2rem, 0.743rem + 0.595vw, 1.6rem);
  }
}

.max-width-container {
  max-width: 128rem;
  margin-inline: auto;
  width: 100%;
  padding-inline: clamp(2rem, -0.29rem + 6.107vw, 4.4rem);
}
@media (min-width: 768px) {
  .max-width-container {
    padding-inline: clamp(4.4rem, 0.286rem + 5.357vw, 8rem);
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: clamp(1.6rem, 0.837rem + 2.036vw, 2.4rem);
  flex-grow: 0;
  flex-shrink: 0;
}

.header__logo {
  max-width: 8rem;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: clamp(8rem, 4.457rem + 4.613vw, 11.1rem);
    max-width: 100%;
  }
}

.header__cta {
  background-color: var(--blue-900);
}
.header__cta:hover {
  background-color: var(--blue-600);
}

.main {
  display: flex;
  flex-direction: column;
  margin-block-end: 8rem;
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .main {
    margin-block-end: 11.4rem;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  row-gap: 4.8rem;
  margin-block-start: 6.4rem;
}
@media screen and (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    height: 52.8rem;
    padding: 0;
    margin-block-end: 0;
    margin-block-start: 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .hero {
    max-width: 100%;
    padding: 0;
    height: 60rem;
  }
}
@media screen and (min-width: 1441px) {
  .hero {
    justify-content: center;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  row-gap: 2.4rem;
  align-items: flex-start;
  overflow: hidden;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .hero__content {
    width: 50%;
    padding-inline-start: clamp(4.4rem, 0.286rem + 5.357vw, 8rem);
    margin-block-start: 2.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .hero__content {
    max-width: 54.4rem;
    margin-inline: auto;
    margin-block-start: 10rem;
  }
}
@media screen and (min-width: 1441px) {
  .hero__content {
    margin-inline: 0;
    padding: 0;
    margin-inline: 0;
    margin-inline-start: auto;
  }
}

.hero__title {
  max-width: 16ch;
}

.hero__description {
  max-width: 50ch;
}

.hero__cta {
  margin-block-start: 1.6rem;
  background: var(--gradient-pink);
}
.hero__cta:hover {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), linear-gradient(180deg, #ff6f48 0%, #f02aa6 100%);
}

@media screen and (min-width: 768px) {
  .hero__img-wrapper {
    width: 50%;
    max-width: none;
    height: 100%;
  }
}

.hero__img {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .hero__img {
    object-fit: cover;
    position: relative;
    top: -22rem;
    left: 0rem;
    object-position: left;
    height: 130%;
    z-index: -999;
  }
}
.courses {
  margin-block-start: 6.4rem;
  display: grid;
  row-gap: 6rem;
  column-gap: 2.4rem;
}
@media screen and (min-width: 768px) {
  .courses {
    grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
    margin-block-start: 0rem;
  }
}
@media screen and (min-width: 1024px) {
  .courses {
    margin-block-start: 2.8rem;
  }
}

.courses__title {
  background: var(--gradient-pink);
  color: var(--white);
  padding: 3.2rem;
  border-radius: 1.5rem;
}
@media screen and (min-width: 768px) {
  .courses__title {
    padding-block-start: 6.4rem;
  }
}

.courses__item {
  background-color: var(--white);
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  padding-inline: 3.2rem;
  padding-block-end: 4rem;
  justify-content: space-between;
}

.item__icon {
  max-width: fit-content;
  position: relative;
  bottom: 2.8rem;
}

.item__title {
  margin-block-start: 0.8rem;
  margin-block-end: 2.4rem;
}

.item__link {
  margin-block-start: 2.4rem;
}
.item__link:hover {
  color: var(--pink-300);
}

.item__description {
  margin-block-end: auto;
}

.full-bleed {
  background-color: var(--blue-900);
  flex-grow: 0;
  flex-shrink: 0;
}

.footer {
  background-color: var(--blue-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 2.4rem;
}

.footer__logo {
  max-width: 8rem;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: clamp(8rem, 4.457rem + 4.613vw, 11.1rem);
    max-width: 100%;
  }
}

.footer__cta {
  background: var(--gradient-purple);
}
.footer__cta:hover {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), linear-gradient(180deg, #4851ff -54.32%, #f02aa6 100%);
}/*# sourceMappingURL=style.css.map */