@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Space+Grotesk:wght@300..700&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}

h1, h2 {
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

h4 {
  font-weight: 600;
  margin: 1rem 0 0.25rem;
}

a {
  color: #000000;
  transition: color ease 0.3s;
}

a:hover {
  color: #266583;
}

p {
  margin: 1rem 0;
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}
h4 + p {
  margin-top: 0.25rem;
}

ul {
  list-style: disc;
}

ol {
  list-style: auto;
}

ul, ol {
  padding-left: 1.5rem;
  margin: 1rem 0;
}
ul:first-child, ol:first-child {
  margin-top: 0;
}
ul:last-child, ol:last-child {
  margin-bottom: 0;
}
h4 + ul, h4 + ol {
  margin-top: 0.25rem;
}

b, strong {
  font-weight: 700;
}

i, em {
  font-style: italic;
}

.accordion {
  interpolate-size: allow-keywords;
  border-radius: 5px;
  overflow: hidden;
}
.accordion::details-content {
  block-size: 0;
  transition: block-size 0.3s, content-visibility 0.3s;
  transition-behavior: allow-discrete;
}
.accordion[open]::details-content {
  block-size: auto;
}
.accordion[open] .accordion__title:after {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.accordion__title {
  list-style-position: outside;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 0.5rem;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background-color ease 0.3s;
}
@media screen and (min-width: 769px) {
  .accordion__title {
    padding-right: 1rem;
  }
}
.accordion__title:after {
  display: block;
  content: "";
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transition: transform ease 0.3s;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.accordion__title h3 {
  margin: 0;
}
.accordion__title:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.1);
}
.accordion__body {
  padding: 0.5rem;
}
.accordion + .accordion {
  margin-top: 0.5rem;
}

.button {
  background: #1E7AA6;
  color: #FFFFFF;
  padding: 0.25rem 0.75rem;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  width: fit-content;
  font-weight: 500;
  flex-shrink: 0;
  transition: background-color ease 0.3s;
}
.button:hover {
  background: #266583;
  color: #FFFFFF;
}

.call-to-action > h2 {
  color: #FFFFFF;
}
.call-to-action__inner {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 769px) {
  .call-to-action__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media screen and (min-width: 1000px) {
  .call-to-action__inner {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}
.call-to-action__box {
  background: #FFFFFF;
  padding: 1rem;
  display: grid;
  grid-template-rows: 1fr auto;
  border-radius: 5px;
}
.call-to-action__button {
  margin-top: 1rem;
}

.footer {
  margin-top: 3rem;
  font-size: 0.85rem;
}
.footer:before {
  display: block;
  content: "";
  width: 100%;
  height: 2rem;
  background: #5D4B89;
  background: linear-gradient(90deg, rgb(93, 75, 137) 0%, rgb(112, 73, 127) 8%, rgb(124, 78, 121) 15%, rgb(160, 83, 116) 23%, rgb(189, 86, 103) 30%, rgb(224, 101, 86) 38%, rgb(241, 116, 81) 45%, rgb(241, 135, 83) 53%, rgb(237, 179, 77) 60%, rgb(202, 190, 103) 68%, rgb(177, 208, 114) 75%, rgb(144, 213, 154) 83%, rgb(139, 206, 166) 91%, rgb(121, 206, 191) 100%);
}
.footer__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  box-sizing: border-box;
}
@media screen and (min-width: 850px) {
  .footer__container {
    padding: 2rem;
  }
}
.footer__small {
  margin-top: 1rem;
}
@media screen and (min-width: 769px) {
  .footer__small {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .footer__small p {
    margin-top: 0;
  }
}
.footer-navigation__list {
  display: flex;
  list-style: none;
  gap: 1rem;
  padding: 0;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  box-sizing: border-box;
}
@media screen and (min-width: 850px) {
  .header__container {
    padding: 2rem;
  }
}
@media screen and (min-width: 769px) {
  .header__container {
    gap: 1rem;
  }
}
@media screen and (min-width: 1000px) {
  .header__container {
    flex-direction: row;
    gap: 1rem;
  }
}
.header__logo {
  max-width: 200px;
  height: auto;
}
.header:after {
  display: block;
  content: "";
  width: 100%;
  height: 2rem;
  background: #5D4B89;
  background: linear-gradient(90deg, rgb(93, 75, 137) 0%, rgb(112, 73, 127) 8%, rgb(124, 78, 121) 15%, rgb(160, 83, 116) 23%, rgb(189, 86, 103) 30%, rgb(224, 101, 86) 38%, rgb(241, 116, 81) 45%, rgb(241, 135, 83) 53%, rgb(237, 179, 77) 60%, rgb(202, 190, 103) 68%, rgb(177, 208, 114) 75%, rgb(144, 213, 154) 83%, rgb(139, 206, 166) 91%, rgb(121, 206, 191) 100%);
}
.header .navigation {
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .header .navigation {
    flex-direction: row;
  }
}
.header .navigation__list {
  max-width: 450px;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .header .navigation__list {
    max-width: 600px;
  }
}
.header .navigation, .header .navigation__list {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .header .navigation, .header .navigation__list {
    width: auto;
    flex-direction: row;
    gap: 1.5rem;
  }
}
.header .navigation__link {
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  letter-spacing: -0.5px;
  padding: 0.5rem;
}
@media screen and (min-width: 769px) {
  .header .navigation__link {
    padding: 0;
  }
  .header .navigation__link:before {
    content: "";
    position: absolute;
    top: -3px;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #266583;
    opacity: 0%;
    transition: opacity ease 0.3s;
  }
  .header .navigation__link:hover {
    color: #000000;
  }
  .header .navigation__link:hover:before {
    opacity: 100%;
  }
}
@media screen and (min-width: 850px) {
  .header .navigation__link {
    font-size: 1.25rem;
  }
}

.hero {
  min-height: 350px;
  background-image: url("../../images/hero.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: end;
  margin-bottom: 3rem;
}
@media screen and (min-width: 769px) {
  .hero {
    min-height: 550px;
  }
}
.hero__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  box-sizing: border-box;
}
@media screen and (min-width: 850px) {
  .hero__container {
    padding: 2rem;
  }
}
.hero__content {
  background: rgba(0, 0, 0, 0.4);
  width: 600px;
  max-width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #FFFFFF;
  box-sizing: border-box;
  border-radius: 5px;
}
@media screen and (min-width: 769px) {
  .hero__content {
    padding: 2rem;
    font-size: 2rem;
  }
}
.hero__small {
  min-height: 100px;
}
.hero__small--mentorship {
  background-image: url("../../images/hero-mentorship.png");
}
.hero__small--resources {
  background-image: url("../../images/hero-resources.png");
}
.hero__small h1 {
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  padding: 1rem;
  width: fit-content;
  border-radius: 5px;
}
@media screen and (min-width: 769px) {
  .hero__small h1 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 769px) {
  .hero__small {
    min-height: 200px;
  }
}

.main__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  box-sizing: border-box;
}
.main__container + .main__container {
  margin-top: 1rem;
}
@media screen and (min-width: 850px) {
  .main__container {
    padding: 2rem;
  }
}
@media screen and (min-width: 769px) {
  .main__mentorship .call-to-action__inner {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.image-column + .image-column {
  margin-top: 1rem;
}
@media screen and (min-width: 769px) {
  .image-column + .image-column {
    margin-top: 2rem;
  }
}
.image-column__image {
  object-fit: cover;
  width: 100%;
  max-height: 300px;
}
@media screen and (min-width: 769px) {
  .image-column__image {
    width: 30%;
    max-height: 100%;
  }
}
.image-column__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 769px) {
  .image-column__right {
    flex-direction: row-reverse;
    gap: 2rem;
  }
}
.image-column__left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 769px) {
  .image-column__left {
    flex-direction: row;
    gap: 2rem;
  }
}

.rainbow {
  width: 100%;
  padding: 2rem 0;
  margin: 3rem 0;
  background: #5D4B89;
  background: linear-gradient(90deg, rgb(93, 75, 137) 0%, rgb(112, 73, 127) 8%, rgb(124, 78, 121) 15%, rgb(160, 83, 116) 23%, rgb(189, 86, 103) 30%, rgb(224, 101, 86) 38%, rgb(241, 116, 81) 45%, rgb(241, 135, 83) 53%, rgb(237, 179, 77) 60%, rgb(202, 190, 103) 68%, rgb(177, 208, 114) 75%, rgb(144, 213, 154) 83%, rgb(139, 206, 166) 91%, rgb(121, 206, 191) 100%);
}
.rainbow__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  box-sizing: border-box;
}
@media screen and (min-width: 850px) {
  .rainbow__container {
    padding: 2rem;
  }
}

table {
  background-color: rgba(0, 0, 0, 0.05);
  min-width: 500px;
}

th {
  background-color: #1E7AA6;
  color: #FFFFFF;
  font-weight: 700;
  vertical-align: middle;
  text-align: left;
}

th, td {
  border: 1px solid #FFFFFF;
  padding: 0.25rem;
}
@media screen and (min-width: 769px) {
  th, td {
    padding: 0.5rem;
  }
}

.table-wrapper {
  overflow-x: scroll;
}

/*# sourceMappingURL=styles.css.map */
