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

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Public Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: #9698a6;
  line-height: 1.3;
  min-height: auto;
  overflow-x: hidden;
}

@media (min-width: 40rem) {
  body {
    font-size: 1.125rem;
  }
}

body.noscroll {
  overflow: hidden;
}

h1, h2, h3 {
  font-weight: 300;
  line-height: 1.15;
  color: #2d314d;
  margin-top: 0px;
}

h1 {
  font-size: 2.31rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 64rem) {
  h1 {
    font-size: 3.25rem;
  }
}

h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5625rem;
}

@media (min-width: 64rem) {
  h2 {
    font-size: 2.25rem;
    margin-bottom: 2.25rem;
  }
}

hr.partition {
  border-top: 0.5rem dotted;
  margin-top: 7rem;
}

p {
  line-height: 1.5;
  margin-bottom: 2.25rem;
}

a, a:visited, a:hover {
  text-decoration: none;
}

.this_article {
  font-weight: bold;
}

.container {
  max-width: 69.375rem;
  margin: 0 auto;
}

.container--dashboard {
  padding-right: 7.5rem;
  padding-left: 7.5rem;
}

.container--pall {
  padding-top: 4.375rem;
  padding-right: 1.5rem;
  padding-bottom: 4.375rem;
  padding-left: 1.5rem;
}

@media (min-width: 64rem) {
  .container--pall {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.container--py {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}

@media (min-width: 64rem) {
  .container--py {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.container--px {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container--pt {
  padding-top: 4.375rem;
}

@media (min-width: 64rem) {
  .container--pt {
    padding-top: 6rem;
  }
}

.container--pr {
  padding-right: 1.5rem;
}

.container--pb {
  padding-bottom: 4.375rem;
}

.container--pl {
  padding-left: 1.5rem;
}

.container--pdes {
  max-height: 3.125rem;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

button,
.button {
  position: relative;
  display: inline-block;
  padding: 0.875rem 2.1875rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#31d35c), to(#2bb7da));
  background-image: linear-gradient(to right, #31d35c, #2bb7da);
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  color: white;
  font-weight: 400;
  font-size: 0.875rem;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
  overflow: hidden;
}

button::before,
.button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.25);
  opacity: 0;
  -webkit-transition: opacity 150ms ease-in-out;
  transition: opacity 150ms ease-in-out;
}

button:hover::before,
.button:hover::before {
  opacity: 1;
}

@media (max-width: 63.9375rem) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64rem) {
  .hide-for-desktop {
    display: none;
  }
}

.profile {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[8];
      grid-template-columns: repeat(8, 1fr);
  -ms-grid-rows: 2fr 0.1fr;
      grid-template-rows: 2fr 0.1fr;
  padding-top: 4.375rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.profile #self_id {
  -ms-grid-column: 4;
  -ms-grid-column-span: 2;
  grid-column: 4/6;
}

.profile #container_pic {
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-grid-column: 4;
  -ms-grid-column-span: 2;
  grid-column: 4/6;
  width: 9.375rem;
  height: 9.375rem;
  overflow: hidden;
  border-radius: 60%;
}

.profile img {
  width: 100%;
  height: auto;
}

.profile .name {
  text-align: center;
}

.profile .name#full {
  margin-top: 1rem;
  font-size: 1.55rem;
  font-weight: bold;
}

.profile .intro {
  font-size: 1rem;
}

.profile .intro__q {
  font-weight: bold;
  text-align: right;
}

.short_intro {
  text-align: center;
  font-size: 1rem;
}

@media (min-width: 40rem) {
  .short_intro {
    padding-right: 10rem;
    padding-left: 10rem;
  }
}

@media (min-width: 64rem) {
  .short_intro {
    padding-right: 23rem;
    padding-left: 23rem;
  }
}

.articles {
  background-color: #fafafa;
}

.article__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 1.875rem;
}

@media (min-width: 40rem) {
  .article__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .article__grid {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

.article__item {
  max-height: 24.5625rem;
  border-radius: 0.3125rem;
  overflow: hidden;
  background-color: white;
  -webkit-box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

.article__item:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.article__image {
  height: 12.5rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.article__text {
  padding: 1.875rem 1.875rem 2.5rem 1.875rem;
  color: #9698a6;
}

@media (min-width: 40rem) {
  .article__text {
    padding: 1.875rem 1.3rem;
  }
}

.article__author {
  font-size: 0.625rem;
  color: #9698a6;
  margin-bottom: 0.75rem;
}

.article__title {
  max-height: 2.3rem;
  overflow: hidden;
  font-size: 0.9rem;
  line-height: 1.3;
  color: #2d314d;
  margin-bottom: 0.5rem;
}

.article__description {
  max-height: 4.125rem;
  font-size: 0.8125rem;
  overflow: hidden;
}

.form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.4fr 1fr 2fr;
      grid-template-columns: 0.4fr 1fr 2fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  font-size: 0.875rem;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  margin-top: 15rem;
}

.form .opening {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  -ms-grid-column-align: start;
      justify-self: start;
  margin-bottom: 4.5625rem;
  max-width: 58.9rem;
  line-height: 1.5rem;
}

.form .ending {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -ms-grid-row: 13;
  -ms-grid-row-span: 1;
  grid-row: 13/14;
  -ms-grid-column-align: start;
      justify-self: start;
  margin-top: 4.5625rem;
  line-height: 1.5rem;
}

.form .stage {
  font-weight: bold;
  font-size: 1.25rem;
}

.form table {
  border-collapse: collapse;
}

.form table tbody {
  font-size: 0.75rem;
  vertical-align: top;
}

.form table#prepare_table {
  border: 2px solid #c8c8c8;
}

.form table#prepare_table td {
  border: 2px solid #c8c8c8;
}

.form table#act_table tbody {
  font-size: 0.875rem;
}

.form .partition__top {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}

.form .partition__top hr {
  border-top: 0.5rem dotted;
  margin-bottom: 4rem;
}

.form .partition__1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  grid-row: 4/5;
}

.form .partition__2 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -ms-grid-row: 6;
  -ms-grid-row-span: 1;
  grid-row: 6/7;
}

.form .partition__3 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -ms-grid-row: 8;
  -ms-grid-row-span: 1;
  grid-row: 8/9;
}

.form .partition__4 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -ms-grid-row: 10;
  -ms-grid-row-span: 1;
  grid-row: 10/11;
}

.form .partition__end {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -ms-grid-row: 14;
  -ms-grid-row-span: 1;
  grid-row: 14/15;
}

.form .capstone_pic {
  height: 35.9rem;
  width: 31.2rem;
}
/*# sourceMappingURL=style.css.map */