@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.barlow-semi-condensed-thin {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-semi-condensed-extralight {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.barlow-semi-condensed-light {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-semi-condensed-regular {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-semi-condensed-medium {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-semi-condensed-semibold {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-semi-condensed-bold {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-semi-condensed-extrabold {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.barlow-semi-condensed-black {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-semi-condensed-thin-italic {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.barlow-semi-condensed-extralight-italic {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.barlow-semi-condensed-light-italic {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.barlow-semi-condensed-regular-italic {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-semi-condensed-medium-italic {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-semi-condensed-semibold-italic {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-semi-condensed-bold-italic {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.barlow-semi-condensed-extrabold-italic {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.barlow-semi-condensed-black-italic {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* Primary colors */
/* Neutral colors */
/* Fonts */
/* 11px */
/* 13px */
/* Spacings */
/* CSS-reset */
*, *::before, *::after {
  box-sizing: border-box;
}

h1, h2, h3, li, ul, ol, p {
  margin: 0;
  padding: 0;
}

html, body {
  min-height: 100vh;
}

body {
  margin: 0;
  padding: 6rem 0;
  display: flex;
  gap: 2rem;
  flex-direction: column;
  justify-content: center;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 0.8125rem;
  font-weight: 300;
  background-color: white;
}
body .active {
  border: 0.15rem solid hsl(263, 55%, 52%);
}
body .dark-blue {
  background-color: hsl(219, 29%, 14%);
  color: hsl(0, 0%, 81%);
}
body .grey {
  background-color: hsl(217, 19%, 35%);
  color: white;
}
body .white {
  background-color: white;
  color: hsl(217, 19%, 35%);
}
body .purple {
  background-color: hsl(263, 55%, 52%);
  color: white;
}
body .purple .active {
  border: 0.15rem solid hsl(264, 82%, 80%);
}
body .card {
  margin: 0 2rem;
  padding: 1.75rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body .card .card_header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
body .card .card_header .card_avatar {
  border-radius: 50%;
  width: 2rem;
}
body .card .card_header .card_name {
  font-weight: 400;
}
body .card .card_header .card_academics {
  font-size: 0.6875rem;
}
body .card .card_title {
  font-weight: 500;
}

@media (min-width: 750px) {
  html {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body {
    min-height: auto;
    padding: 0;
    margin: 10rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas: "area1 area1 area2 area5" "area3 area4 area4 area5";
  }
  body .area-1 {
    grid-area: area1;
  }
  body .area-2 {
    grid-area: area2;
  }
  body .area-3 {
    grid-area: area3;
  }
  body .area-4 {
    grid-area: area4;
  }
  body .area-5 {
    grid-area: area5;
  }
  body .card {
    margin: 0;
    position: relative;
  }
  body .card:after {
    content: "";
    position: absolute;
    box-shadow: 3rem 3rem 2rem hsl(0, 0%, 81%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
  }
  body .card:hover {
    transform: scale(0.99);
    cursor: pointer;
  }
  body .card:first-of-type {
    background-image: url("../images/bg-pattern-quotation.svg");
    background-repeat: no-repeat;
    background-position: top right 4rem;
  }
}/*# sourceMappingURL=style.css.map */